blob: 31094548ae740a0cf30a33140050dec634f4eb3f [file] [log] [blame]
Harald Welte52b1f982008-12-23 20:25:15 +00001/* GSM Radio Signalling Link messages on the A-bis interface
2 * 3GPP TS 08.58 version 8.6.0 Release 1999 / ETSI TS 100 596 V8.6.0 */
3
4/* (C) 2008 by Harald Welte <laforge@gnumonks.org>
5 * All Rights Reserved
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 */
22
23#ifndef _RSL_H
24#define _RSL_H
25
26struct abis_rsl_common_hdr {
27 u_int8_t msg_discr;
28 u_int8_t msg_type;
29 u_int8_t data[0];
30} __attribute__ ((packed));
31
32/* Chapter 8.3 */
33struct abis_rsl_rll_hdr {
34 struct abis_rsl_common_hdr c;
35 u_int8_t ie_chan;
36 u_int8_t chan_nr;
37 u_int8_t ie_link_id;
38 u_int8_t link_id;
39 u_int8_t data[0];
40} __attribute__ ((packed));
41
42/* Chapter 8.3 and 8.4 */
43struct abis_rsl_dchan_hdr {
44 struct abis_rsl_common_hdr c;
45 u_int8_t ie_chan;
46 u_int8_t chan_nr;
47 u_int8_t data[0];
48} __attribute__ ((packed));
49
50
51/* Chapter 9.1 */
52#define ABIS_RSL_MDISC_RLL 0x02
53#define ABIS_RSL_MDISC_DED_CHAN 0x08
54#define ABIS_RSL_MDISC_COM_CHAN 0x0c
55#define ABIS_RSL_MDISC_TRX 0x10
56#define ABIS_RSL_MDISC_LOC 0x20
Harald Welte75099262009-02-16 21:12:08 +000057#define ABIS_RSL_MDISC_IPACCESS 0x7e
Harald Welte52b1f982008-12-23 20:25:15 +000058
59#define ABIS_RSL_MDISC_IS_TRANSP(x) (x & 0x01)
60
Holger Freyther590d66a2008-12-30 19:13:13 +000061/* Chapter 9.1 */
Harald Welte52b1f982008-12-23 20:25:15 +000062enum abis_rsl_msgtype {
63 /* Radio Link Layer Management */
64 RSL_MT_DATA_REQ = 0x01,
65 RSL_MT_DATA_IND,
66 RSL_MT_ERROR_IND,
67 RSL_MT_EST_REQ,
68 RSL_MT_EST_CONF,
69 RSL_MT_EST_IND,
70 RSL_MT_REL_REQ,
71 RSL_MT_REL_CONF,
72 RSL_MT_REL_IND,
73 RSL_MT_UNIT_DATA_REQ,
74 RSL_MT_UNIT_DATA_IND, /* 0x0b */
75
76 /* Common Channel Management / TRX Management */
77 RSL_MT_BCCH_INFO = 0x11,
78 RSL_MT_CCCH_LOAD_IND,
79 RSL_MT_CHAN_RQD,
80 RSL_MT_DELETE_IND,
81 RSL_MT_PAGING_CMD,
82 RSL_MT_IMMEDIATE_ASSIGN_CMD,
83 RSL_MT_SMS_BC_REQ,
84 /* empty */
85 RSL_MT_RF_RES_IND = 0x19,
86 RSL_MT_SACCH_FILL,
87 RSL_MT_OVERLOAD,
88 RSL_MT_ERROR_REPORT,
89 RSL_MT_SMS_BC_CMD,
90 RSL_MT_CBCH_LOAD_IND,
91 RSL_MT_NOT_CMD, /* 0x1f */
92
93 /* Dedicate Channel Management */
94 RSL_MT_CHAN_ACTIV = 0x21,
95 RSL_MT_CHAN_ACTIV_ACK,
96 RSL_MT_CHAN_ACTIV_NACK,
97 RSL_MT_CONN_FAIL,
98 RSL_MT_DEACTIVATE_SACCH,
99 RSL_MT_ENCR_CMD,
100 RSL_MT_HANDO_DET,
101 RSL_MT_MEAS_RES,
102 RSL_MT_MODE_MODIFY_REQ,
103 RSL_MT_MODE_MODIFY_ACK,
104 RSL_MT_MODE_MODIFY_NACK,
105 RSL_MT_PHY_CONTEXT_REQ,
106 RSL_MT_PHY_CONTEXT_CONF,
107 RSL_MT_RF_CHAN_REL,
108 RSL_MT_MS_POWER_CONTROL,
Harald Welte8470bf22008-12-25 23:28:35 +0000109 RSL_MT_BS_POWER_CONTROL, /* 0x30 */
Harald Welte52b1f982008-12-23 20:25:15 +0000110 RSL_MT_PREPROC_CONFIG,
111 RSL_MT_PREPROC_MEAS_RES,
112 RSL_MT_RF_CHAN_REL_ACK,
113 RSL_MT_SACCH_INFO_MODIFY,
114 RSL_MT_TALKER_DET,
115 RSL_MT_LISTENER_DET,
116 RSL_MT_REMOTE_CODEC_CONF_REP,
117 RSL_MT_RTD_REP,
118 RSL_MT_PRE_HANDO_NOTIF,
119 RSL_MT_MR_CODEC_MOD_REQ,
120 RSL_MT_MR_CODEC_MOD_ACK,
121 RSL_MT_MR_CODEC_MOD_NACK,
122 RSL_MT_MR_CODEC_MOD_PER,
123 RSL_MT_TFO_REP,
124 RSL_MT_TFO_MOD_REQ, /* 0x3f */
Harald Welte75099262009-02-16 21:12:08 +0000125
126 /* ip.access specific RSL message types */
127 RSL_MT_IPAC_BIND = 0x70, /* Bind to local BTS RTP port */
128 RSL_MT_IPAC_BIND_ACK,
129 RSL_MT_IPAC_BIND_NACK,
130 RSL_MT_IPAC_CONNECT = 0x73,
131 RSL_MT_IPAC_CONNECT_ACK,
132 RSL_MT_IPAC_CONNECT_NACK,
133 RSL_MT_IPAC_DISCONNECT_IND = 0x76,
134
Harald Welte52b1f982008-12-23 20:25:15 +0000135};
136
137/* Chapter 9.3 */
138enum abis_rsl_ie {
139 RSL_IE_CHAN_NR = 0x01,
140 RSL_IE_LINK_IDENT,
141 RSL_IE_ACT_TYPE,
142 RSL_IE_BS_POWER,
143 RSL_IE_CHAN_IDENT,
144 RSL_IE_CHAN_MODE,
145 RSL_IE_ENCR_INFO,
146 RSL_IE_FRAME_NUMBER,
147 RSL_IE_HANDO_REF,
148 RSL_IE_L1_INFO,
149 RSL_IE_L3_INFO,
150 RSL_IE_MS_IDENTITY,
151 RSL_IE_MS_POWER,
152 RSL_IE_PAGING_GROUP,
153 RSL_IE_PAGING_LOAD,
154 RSL_IE_PYHS_CONTEXT = 0x10,
155 RSL_IE_ACCESS_DELAY,
156 RSL_IE_RACH_LOAD,
157 RSL_IE_REQ_REFERENCE,
158 RSL_IE_RELEASE_MODE,
159 RSL_IE_RESOURCE_INFO,
160 RSL_IE_RLM_CAUSE,
161 RSL_IE_STARTNG_TIME,
162 RSL_IE_TIMING_ADVANCE,
163 RSL_IE_UPLINK_MEAS,
164 RSL_IE_CAUSE,
165 RSL_IE_MEAS_RES_NR,
166 RSL_IE_MSG_ID,
167 /* reserved */
168 RSL_IE_SYSINFO_TYPE = 0x1e,
169 RSL_IE_MS_POWER_PARAM,
170 RSL_IE_BS_POWER_PARAM,
171 RSL_IE_PREPROC_PARAM,
172 RSL_IE_PREPROC_MEAS,
173 RSL_IE_IMM_ASS_INFO, /* Phase 1 (3.6.0), later Full below */
174 RSL_IE_SMSCB_INFO = 0x24,
175 RSL_IE_MS_TIMING_OFFSET,
176 RSL_IE_ERR_MSG,
177 RSL_IE_FULL_BCCH_INFO,
178 RSL_IE_CHAN_NEEDED,
179 RSL_IE_CB_CMD_TYPE,
180 RSL_IE_SMSCB_MSG,
181 RSL_IE_FULL_IMM_ASS_INFO,
182 RSL_IE_SACCH_INFO,
183 RSL_IE_CBCH_LOAD_INFO,
184 RSL_IE_SMSCB_CHAN_INDICATOR,
185 RSL_IE_GROUP_CALL_REF,
186 RSL_IE_CHAN_DESC,
187 RSL_IE_NCH_DRX_INFO,
188 RSL_IE_CMD_INDICATOR,
189 RSL_IE_EMLPP_PRIO,
190 RSL_IE_UIC,
191 RSL_IE_MAIN_CHAN_REF,
192 RSL_IE_MR_CONFIG,
193 RSL_IE_MR_CONTROL,
194 RSL_IE_SUP_CODEC_TYPES,
195 RSL_IE_CODEC_CONFIG,
196 RSL_IE_RTD,
197 RSL_IE_TFO_STATUS,
198 RSL_IE_LLP_APDU,
Harald Welte75099262009-02-16 21:12:08 +0000199
200 RSL_IE_IPAC_REMOTE_IP = 0xf0,
201 RSL_IE_IPAC_REMOTE_PORT = 0xf1,
202 RSL_IE_IPAC_LOCAL_PORT = 0xf3,
203 RSL_IE_IPAC_LOCAL_IP = 0xf5,
Harald Welte52b1f982008-12-23 20:25:15 +0000204};
205
206/* Chapter 9.3.1 */
207#define RSL_CHAN_NR_MASK 0xf8
208#define RSL_CHAN_Bm_ACCHs 0x08
209#define RSL_CHAN_Lm_ACCHs 0x10 /* .. 0x18 */
210#define RSL_CHAN_SDCCH4_ACCH 0x20 /* .. 0x38 */
211#define RSL_CHAN_SDCCH8_ACCH 0x40 /* ...0x78 */
212#define RSL_CHAN_BCCH 0x80
213#define RSL_CHAN_RACH 0x88
214#define RSL_CHAN_PCH_AGCH 0x90
215
216/* Chapter 9.3.3 */
217#define RSL_ACT_TYPE_INITIAL 0x00
218#define RSL_ACT_TYPE_REACT 0x80
219#define RSL_ACT_INTRA_IMM_ASS 0x00
220#define RSL_ACT_INTRA_NORM_ASS 0x01
221#define RSL_ACT_INTER_ASYNC 0x02
222#define RSL_ACT_INTER_SYNC 0x03
223#define RSL_ACT_SECOND_ADD 0x04
224#define RSL_ACT_SECOND_MULTI 0x05
225
226/* Chapter 9.3.6 */
227struct rsl_ie_chan_mode {
228 u_int8_t dtx_dtu;
229 u_int8_t spd_ind;
230 u_int8_t chan_rt;
231 u_int8_t chan_rate;
232} __attribute__ ((packed));
233#define RSL_CMOD_DTXu 0x01 /* uplink */
234#define RSL_CMOD_DTXd 0x02 /* downlink */
235#define RSL_CMOD_SPD_SPEECH 0x01
236#define RSL_CMOD_SPD_DATA 0x02
237#define RSL_CMOD_SPD_SIGN 0x03
238#define RSL_CMOD_CRT_SDCCH 0x01
239#define RSL_CMOD_CRT_TCH_Bm 0x08 /* full-rate */
240#define RSL_CMOD_CRT_TCH_Lm 0x09 /* half-rate */
241/* FIXME: More CRT types */
242#define RSL_CMOD_SP_GSM1 0x01
243#define RSL_CMOD_SP_GSM2 0x11
244#define RSL_CMOD_SP_GSM3 0x21
245
246/* Chapter 9.3.5 */
247struct rsl_ie_chan_ident {
248 /* GSM 04.08 10.5.2.5 */
249 struct {
250 u_int8_t iei;
251 u_int8_t chan_nr; /* enc_chan_nr */
252 u_int8_t oct3;
253 u_int8_t oct4;
254 } chan_desc;
255#if 0 /* spec says we need this but Abissim doesn't use it */
256 struct {
257 u_int8_t tag;
258 u_int8_t len;
259 } mobile_alloc;
260#endif
261} __attribute__ ((packed));
262
Harald Welte4b634542008-12-27 01:55:51 +0000263/* Chapter 9.3.22 */
264#define RLL_CAUSE_T200_EXPIRED 0x01
265#define RLL_CAUSE_REEST_REQ 0x02
266#define RLL_CAUSE_UNSOL_UA_RESP 0x03
267#define RLL_CAUSE_UNSOL_DM_RESP 0x04
268#define RLL_CAUSE_UNSOL_DM_RESP_MF 0x05
269#define RLL_CAUSE_UNSOL_SPRV_RESP 0x06
270#define RLL_CAUSE_SEQ_ERR 0x07
271#define RLL_CAUSE_UFRM_INC_PARAM 0x08
272#define RLL_CAUSE_SFRM_INC_PARAM 0x09
273#define RLL_CAUSE_IFRM_INC_MBITS 0x0a
274#define RLL_CAUSE_IFRM_INC_LEN 0x0b
275#define RLL_CAUSE_FRM_UNIMPL 0x0c
276#define RLL_CAUSE_SABM_MF 0x0d
277#define RLL_CAUSE_SABM_INFO_NOTALL 0x0e
278
Harald Welte702d8702008-12-26 20:25:35 +0000279/* Chapter 9.3.26 */
280#define RSL_ERRCLS_NORMAL 0x00
281#define RSL_ERRCLS_RESOURCE_UNAVAIL 0x20
282#define RSL_ERRCLS_SERVICE_UNAVAIL 0x30
283#define RSL_ERRCLS_SERVICE_UNIMPL 0x40
284#define RSL_ERRCLS_INVAL_MSG 0x50
285#define RSL_ERRCLS_PROTO_ERROR 0x60
286#define RSL_ERRCLS_INTERWORKING 0x70
287
288#define RSL_ERR_RADIO_IF_FAIL 0x00
289#define RSL_ERR_RADIO_LINK_FAIL 0x01
290#define RSL_ERR_HANDOVER_ACC_FAIL 0x02
291#define RSL_ERR_TALKER_ACC_FAIL 0x03
292#define RSL_ERR_OM_INTERVENTION 0x07
293#define RSL_ERR_EQUIPMENT_FAIL 0x20
294#define RSL_ERR_RR_UNAVAIL 0x21
295#define RSL_ERR_TERR_CH_FAIL 0x22
296#define RSL_ERR_CCCH_OVERLOAD 0x23
297#define RSL_ERR_ACCH_OVERLOAD 0x24
298#define RSL_ERR_PROCESSOR_OVERLOAD 0x25
299#define RSL_ERR_RES_UNAVAIL 0x2f
300#define RSL_ERR_TRANSC_UNAVAIL 0x30
301#define RSL_ERR_SERV_OPT_UNAVAIL 0x3f
302#define RSL_ERR_ENCR_UNIMPL 0x40
303#define RSL_ERR_SEV_OPT_UNIMPL 0x4f
304#define RSL_ERR_RCH_ALR_ACTV_ALLOC 0x50
305#define RSL_ERR_INVALID_MESSAGE 0x5f
306#define RSL_ERR_MSG_DISCR 0x60
307#define RSL_ERR_MSG_TYPE 0x61
308#define RSL_ERR_MSG_SEQA 0x62
309#define RSL_ERR_IE_ERROR 0x63
310#define RSL_ERR_MAND_IE_ERROR 0x64
311#define RSL_ERR_OPT_IE_ERROR 0x65
312#define RSL_ERR_IE_NONEXIST 0x66
313#define RSL_ERR_IE_LENGTH 0x67
314#define RSL_ERR_IE_CONTENT 0x68
315#define RSL_ERR_PROTO 0x6f
316#define RSL_ERR_INTERWORKING 0x7f
317
Harald Welte52b1f982008-12-23 20:25:15 +0000318/* Chapter 9.3.30 */
319#define RSL_SYSTEM_INFO_8 0x00
320#define RSL_SYSTEM_INFO_1 0x01
321#define RSL_SYSTEM_INFO_2 0x02
322#define RSL_SYSTEM_INFO_3 0x03
323#define RSL_SYSTEM_INFO_4 0x04
324#define RSL_SYSTEM_INFO_5 0x05
325#define RSL_SYSTEM_INFO_6 0x06
326#define RSL_SYSTEM_INFO_7 0x07
327#define RSL_SYSTEM_INFO_16 0x08
328#define RSL_SYSTEM_INFO_17 0x09
329#define RSL_SYSTEM_INFO_2bis 0x0a
330#define RSL_SYSTEM_INFO_2ter 0x0b
331#define RSL_SYSTEM_INFO_5bis 0x0d
332#define RSL_SYSTEM_INFO_5ter 0x0e
333#define RSL_SYSTEM_INFO_10 0x0f
334#define REL_EXT_MEAS_ORDER 0x47
335#define RSL_MEAS_INFO 0x48
336#define RSL_SYSTEM_INFO_13 0x28
337#define RSL_SYSTEM_INFO_2quater 0x29
338#define RSL_SYSTEM_INFO_9 0x2a
339#define RSL_SYSTEM_INFO_18 0x2b
340#define RSL_SYSTEM_INFO_19 0x2c
341#define RSL_SYSTEM_INFO_20 0x2d
342
343/* Chapter 9.3.40 */
344#define RSL_CHANNEED_ANY 0x00
345#define RSL_CHANNEED_SDCCH 0x01
346#define RSL_CHANNEED_TCH_F 0x02
347#define RSL_CHANNEED_TCH_ForH 0x03
348
Holger Freytherb0155442009-02-03 23:24:04 +0000349/* Chapter 3.3.2.3 Brocast control channel */
350/* CCCH-CONF, NC is not combined */
351#define RSL_BCCH_CCCH_CONF_1_NC 0x00
352#define RSL_BCCH_CCCH_CONF_1_C 0x01
353#define RSL_BCCH_CCCH_CONF_2_NC 0x02
354#define RSL_BCCH_CCCH_CONF_3_NC 0x04
355#define RSL_BCCH_CCCH_CONF_4_NC 0x06
356
357/* BS-PA-MFRMS */
358#define RSL_BS_PA_MFRMS_2 0x00
359#define RSL_BS_PA_MFRMS_3 0x01
360#define RSL_BS_PA_MFRMS_4 0x02
361#define RSL_BS_PA_MFRMS_5 0x03
362#define RSL_BS_PA_MFRMS_6 0x04
363#define RSL_BS_PA_MFRMS_7 0x05
364#define RSL_BS_PA_MFRMS_8 0x06
365#define RSL_BS_PA_MFRMS_9 0x07
366
Harald Welte52b1f982008-12-23 20:25:15 +0000367
368#include "msgb.h"
369
Harald Weltee79769b2009-02-07 00:48:17 +0000370int rsl_bcch_info(struct gsm_bts_trx *trx, u_int8_t type,
Harald Welte52b1f982008-12-23 20:25:15 +0000371 const u_int8_t *data, int len);
Harald Weltee79769b2009-02-07 00:48:17 +0000372int rsl_sacch_filling(struct gsm_bts_trx *trx, u_int8_t type,
Harald Welte52b1f982008-12-23 20:25:15 +0000373 const u_int8_t *data, int len);
Harald Weltee79769b2009-02-07 00:48:17 +0000374int rsl_chan_activate(struct gsm_bts_trx *trx, u_int8_t chan_nr,
Harald Welte52b1f982008-12-23 20:25:15 +0000375 u_int8_t act_type,
376 struct rsl_ie_chan_mode *chan_mode,
377 struct rsl_ie_chan_ident *chan_ident,
378 u_int8_t bs_power, u_int8_t ms_power,
379 u_int8_t ta);
Harald Welteda783762009-02-18 03:29:53 +0000380int rsl_chan_activate_lchan(struct gsm_lchan *lchan, u_int8_t act_type,
381 u_int8_t ta);
382int rsl_chan_mode_modify_req(struct gsm_lchan *ts);
Harald Welte52b1f982008-12-23 20:25:15 +0000383int rsl_paging_cmd(struct gsm_bts *bts, u_int8_t paging_group, u_int8_t len,
384 u_int8_t *ms_ident, u_int8_t chan_needed);
Holger Freyther7448a532009-01-04 20:18:23 +0000385int rsl_paging_cmd_subscr(struct gsm_bts *bts, u_int8_t chan_needed,
386 struct gsm_subscriber *subscr);
Harald Welte52b1f982008-12-23 20:25:15 +0000387int rsl_imm_assign_cmd(struct gsm_bts *bts, u_int8_t len, u_int8_t *val);
Harald Welte52b1f982008-12-23 20:25:15 +0000388
Harald Welte8470bf22008-12-25 23:28:35 +0000389int rsl_data_request(struct msgb *msg, u_int8_t link_id);
390
Harald Welte75099262009-02-16 21:12:08 +0000391/* ip.access specfic RSL extensions */
392int rsl_ipacc_bind(struct gsm_lchan *lchan);
393int rsl_ipacc_connect(struct gsm_lchan *lchan, u_int32_t ip,
394 u_int16_t port, u_int16_t f8, u_int8_t fc);
395
Harald Welte8470bf22008-12-25 23:28:35 +0000396int abis_rsl_rcvmsg(struct msgb *msg);
397
Holger Freyther2976c402009-02-04 01:09:20 +0000398unsigned int get_paging_group(u_int64_t imsi, unsigned int bs_cc_chans,
399 int n_pag_blocks);
400unsigned int n_pag_blocks(int bs_ccch_sdcch_comb, unsigned int bs_ag_blks_res);
Holger Freyther3aa8d6c2009-02-04 02:14:45 +0000401u_int64_t str_to_imsi(const char *imsi_str);
Harald Welte45f83a12009-02-11 11:43:19 +0000402u_int8_t lchan2chan_nr(struct gsm_lchan *lchan);
Holger Freyther2976c402009-02-04 01:09:20 +0000403
Harald Welte8470bf22008-12-25 23:28:35 +0000404/* to be provided by external code */
405int abis_rsl_sendmsg(struct msgb *msg);
Holger Freyther67b4b9a2009-01-01 03:46:11 +0000406int rsl_chan_release(struct gsm_lchan *lchan);
Harald Welte52b1f982008-12-23 20:25:15 +0000407
Holger Freytherb0155442009-02-03 23:24:04 +0000408/* BCCH related code */
409int rsl_ccch_conf_to_bs_cc_chans(int ccch_conf);
410int rsl_ccch_conf_to_bs_ccch_sdcch_comb(int ccch_conf);
411int rsl_number_of_paging_subchannels(struct gsm_bts *bts);
412
Harald Welte52b1f982008-12-23 20:25:15 +0000413#endif /* RSL_MT_H */
414