blob: a4a3f23bf7f830110cf7c3e80bb980bde641c9be [file] [log] [blame]
Harald Welte2a0a9632011-02-12 12:33:06 +01001/* Ericsson RBS 2xxx GSM O&M (OM2000) messages on the A-bis interface
2 * implemented based on protocol trace analysis, no formal documentation */
3
4/* (C) 2010-2011 by Harald Welte <laforge@gnumonks.org>
5 *
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 Affero General Public License as published by
10 * the Free Software Foundation; either version 3 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 Affero General Public License for more details.
17 *
18 * You should have received a copy of the GNU Affero General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 *
21 */
22
23
24#include <errno.h>
25#include <unistd.h>
26#include <stdio.h>
27#include <stdlib.h>
28#include <time.h>
29#include <stdint.h>
30
31#include <arpa/inet.h>
32
Pablo Neira Ayusodd5fff42011-03-22 16:47:59 +010033#include <osmocom/core/msgb.h>
34#include <osmocom/gsm/tlv.h>
35#include <osmocom/core/talloc.h>
36#include <osmocom/core/utils.h>
Harald Welte2a0a9632011-02-12 12:33:06 +010037
38#include <openbsc/gsm_data.h>
39#include <openbsc/debug.h>
40#include <openbsc/abis_nm.h>
Harald Welte4f3644b2011-02-12 13:44:14 +010041#include <openbsc/abis_om2000.h>
Harald Welte2a0a9632011-02-12 12:33:06 +010042#include <openbsc/signal.h>
Harald Weltec5845042011-02-14 15:26:13 +010043#include <openbsc/e1_input.h>
Harald Welte2a0a9632011-02-12 12:33:06 +010044
45#define OM_ALLOC_SIZE 1024
46#define OM_HEADROOM_SIZE 128
47
48/* use following functions from abis_nm.c:
49 * om2k_msgb_alloc()
Harald Welte8f909d52011-02-12 13:09:38 +010050 * abis_om2k_sendmsg()
Harald Welte2a0a9632011-02-12 12:33:06 +010051 */
52
Harald Welte2a0a9632011-02-12 12:33:06 +010053struct abis_om2k_hdr {
54 struct abis_om_hdr om;
55 uint16_t msg_type;
56 struct abis_om2k_mo mo;
57 uint8_t data[0];
58} __attribute__ ((packed));
59
60enum abis_om2k_msgtype {
61 OM2K_MSGT_ABORT_SP_CMD = 0x0000,
62 OM2K_MSGT_ABORT_SP_COMPL = 0x0002,
63 OM2K_MSGT_ALARM_REP_ACK = 0x0004,
64 OM2K_MSGT_ALARM_REP_NACK = 0x0005,
65 OM2K_MSGT_ALARM_REP = 0x0006,
66 OM2K_MSGT_ALARM_STATUS_REQ = 0x0008,
67 OM2K_MSGT_ALARM_STATUS_REQ_ACK = 0x000a,
68 OM2K_MSGT_ALARM_STATUS_REQ_REJ = 0x000b,
69 OM2K_MSGT_ALARM_STATUS_RES_ACK = 0x000c,
70 OM2K_MSGT_ALARM_STATUS_RES_NACK = 0x000d,
71 OM2K_MSGT_ALARM_STATUS_RES = 0x000e,
72 OM2K_MSGT_CAL_TIME_RESP = 0x0010,
73 OM2K_MSGT_CAL_TIME_REJ = 0x0011,
74 OM2K_MSGT_CAL_TIME_REQ = 0x0012,
75
Harald Weltef5dbc3c2011-02-14 15:31:43 +010076 OM2K_MSGT_CON_CONF_REQ = 0x0014,
77 OM2K_MSGT_CON_CONF_REQ_ACK = 0x0016,
78 OM2K_MSGT_CON_CONF_REQ_REJ = 0x0017,
79 OM2K_MSGT_CON_CONF_RES_ACK = 0x0018,
80 OM2K_MSGT_CON_CONF_RES_NACK = 0x0019,
81 OM2K_MSGT_CON_CONF_RES = 0x001a,
82
Harald Welte2a0a9632011-02-12 12:33:06 +010083 OM2K_MSGT_CONNECT_CMD = 0x001c,
84 OM2K_MSGT_CONNECT_COMPL = 0x001e,
85 OM2K_MSGT_CONNECT_REJ = 0x001f,
86
Harald Welte6d5a0392011-02-12 18:48:53 +010087 OM2K_MSGT_DISABLE_REQ = 0x0028,
88 OM2K_MSGT_DISABLE_REQ_ACK = 0x002a,
89 OM2K_MSGT_DISABLE_REQ_REJ = 0x002b,
90 OM2K_MSGT_DISABLE_RES_ACK = 0x002c,
91 OM2K_MSGT_DISABLE_RES_NACK = 0x002d,
92 OM2K_MSGT_DISABLE_RES = 0x002e,
Harald Welte9bf8e9e2011-02-12 14:57:17 +010093 OM2K_MSGT_DISCONNECT_CMD = 0x0030,
94 OM2K_MSGT_DISCONNECT_COMPL = 0x0032,
95 OM2K_MSGT_DISCONNECT_REJ = 0x0033,
Harald Welte6d5a0392011-02-12 18:48:53 +010096 OM2K_MSGT_ENABLE_REQ = 0x0034,
97 OM2K_MSGT_ENABLE_REQ_ACK = 0x0036,
98 OM2K_MSGT_ENABLE_REQ_REJ = 0x0037,
99 OM2K_MSGT_ENABLE_RES_ACK = 0x0038,
100 OM2K_MSGT_ENABLE_RES_NACK = 0x0039,
101 OM2K_MSGT_ENABLE_RES = 0x003a,
Harald Welte9bf8e9e2011-02-12 14:57:17 +0100102
Harald Welte2a0a9632011-02-12 12:33:06 +0100103 OM2K_MSGT_FAULT_REP_ACK = 0x0040,
104 OM2K_MSGT_FAULT_REP_NACK = 0x0041,
105 OM2K_MSGT_FAULT_REP = 0x0042,
106
107 OM2K_MSGT_IS_CONF_REQ = 0x0060,
108 OM2K_MSGT_IS_CONF_REQ_ACK = 0x0062,
109 OM2K_MSGT_IS_CONF_REQ_REJ = 0x0063,
110 OM2K_MSGT_IS_CONF_RES_ACK = 0x0064,
111 OM2K_MSGT_IS_CONF_RES_NACK = 0x0065,
112 OM2K_MSGT_IS_CONF_RES = 0x0066,
113
114 OM2K_MSGT_OP_INFO = 0x0074,
115 OM2K_MSGT_OP_INFO_ACK = 0x0076,
116 OM2K_MSGT_OP_INFO_REJ = 0x0077,
117 OM2K_MSGT_RESET_CMD = 0x0078,
118 OM2K_MSGT_RESET_COMPL = 0x007a,
119 OM2K_MSGT_RESET_REJ = 0x007b,
Harald Welte00585d92011-03-05 14:13:14 +0100120 OM2K_MSGT_RX_CONF_REQ = 0x007c,
121 OM2K_MSGT_RX_CONF_REQ_ACK = 0x007e,
122 OM2K_MSGT_RX_CONF_REQ_REJ = 0x007f,
123 OM2K_MSGT_RX_CONF_RES_ACK = 0x0080,
124 OM2K_MSGT_RX_CONF_RES_NACK = 0x0081,
125 OM2K_MSGT_RX_CONF_RES = 0x0082,
Harald Welte2a0a9632011-02-12 12:33:06 +0100126 OM2K_MSGT_START_REQ = 0x0084,
127 OM2K_MSGT_START_REQ_ACK = 0x0086,
128 OM2K_MSGT_START_REQ_REJ = 0x0087,
129 OM2K_MSGT_START_RES_ACK = 0x0088,
130 OM2K_MSGT_START_RES_NACK = 0x0089,
131 OM2K_MSGT_START_RES = 0x008a,
Harald Welte1d5a2062011-02-12 14:42:59 +0100132 OM2K_MSGT_STATUS_REQ = 0x008c,
133 OM2K_MSGT_STATUS_RESP = 0x008e,
134 OM2K_MSGT_STATUS_REJ = 0x008f,
Harald Welte2a0a9632011-02-12 12:33:06 +0100135
Harald Welte40ad3b32011-02-12 15:07:30 +0100136 OM2K_MSGT_TEST_REQ = 0x0094,
137 OM2K_MSGT_TEST_REQ_ACK = 0x0096,
138 OM2K_MSGT_TEST_REQ_REJ = 0x0097,
139 OM2K_MSGT_TEST_RES_ACK = 0x0098,
140 OM2K_MSGT_TEST_RES_NACK = 0x0099,
141 OM2K_MSGT_TEST_RES = 0x009a,
142
Harald Welte429bed02011-03-05 14:36:47 +0100143 OM2K_MSGT_TF_CONF_REQ = 0x00a0,
144 OM2K_MSGT_TF_CONF_REQ_ACK = 0x00a2,
145 OM2K_MSGT_TF_CONF_REQ_REJ = 0x00a3,
146 OM2K_MSGT_TF_CONF_RES_ACK = 0x00a4,
147 OM2K_MSGT_TF_CONF_RES_NACK = 0x00a5,
148 OM2K_MSGT_TF_CONF_RES = 0x00a6,
Harald Welte00585d92011-03-05 14:13:14 +0100149 OM2K_MSGT_TS_CONF_REQ = 0x00a8,
150 OM2K_MSGT_TS_CONF_REQ_ACK = 0x00aa,
151 OM2K_MSGT_TS_CONF_REQ_REJ = 0x00ab,
152 OM2K_MSGT_TS_CONF_RES_ACK = 0x00ac,
153 OM2K_MSGT_TS_CONF_RES_NACK = 0x00ad,
154 OM2K_MSGT_TS_CONF_RES = 0x00ae,
155 OM2K_MSGT_TX_CONF_REQ = 0x00b0,
156 OM2K_MSGT_TX_CONF_REQ_ACK = 0x00b2,
157 OM2K_MSGT_TX_CONF_REQ_REJ = 0x00b3,
158 OM2K_MSGT_TX_CONF_RES_ACK = 0x00b4,
159 OM2K_MSGT_TX_CONF_RES_NACK = 0x00b5,
160 OM2K_MSGT_TX_CONF_RES = 0x00b6,
161
Harald Welte2a0a9632011-02-12 12:33:06 +0100162 OM2K_MSGT_NEGOT_REQ_ACK = 0x0104,
163 OM2K_MSGT_NEGOT_REQ_NACK = 0x0105,
164 OM2K_MSGT_NEGOT_REQ = 0x0106,
165};
166
167enum abis_om2k_dei {
Harald Welte02da3182011-03-06 19:26:11 +0100168 OM2K_DEI_ACCORDANCE_IND = 0x00,
Harald Welte00585d92011-03-05 14:13:14 +0100169 OM2K_DEI_BCC = 0x06,
Harald Welte884e7e52011-03-05 19:21:26 +0100170 OM2K_DEI_BS_AG_BKS_RES = 0x07,
Harald Welte00585d92011-03-05 14:13:14 +0100171 OM2K_DEI_BSIC = 0x09,
Harald Welte884e7e52011-03-05 19:21:26 +0100172 OM2K_DEI_BA_PA_MFRMS = 0x0a,
173 OM2K_DEI_CBCH_INDICATOR = 0x0b,
174 OM2K_DEI_CCCH_OPTIONS = 0x0c,
Harald Welte2a0a9632011-02-12 12:33:06 +0100175 OM2K_DEI_CAL_TIME = 0x0d,
Harald Welte00585d92011-03-05 14:13:14 +0100176 OM2K_DEI_COMBINATION = 0x0f,
Harald Weltef5dbc3c2011-02-14 15:31:43 +0100177 OM2K_DEI_CON_CONN_LIST = 0x10,
Harald Welte884e7e52011-03-05 19:21:26 +0100178 OM2K_DEI_DRX_DEV_MAX = 0x12,
Harald Welte4a8f22e2011-02-12 20:23:40 +0100179 OM2K_DEI_END_LIST_NR = 0x13,
Harald Welte271e9612011-03-05 20:13:52 +0100180 OM2K_DEI_EXT_COND_MAP_1 = 0x14,
181 OM2K_DEI_EXT_COND_MAP_2 = 0x15,
Harald Welte00585d92011-03-05 14:13:14 +0100182 OM2K_DEI_FILLING_MARKER = 0x1c,
183 OM2K_DEI_FN_OFFSET = 0x1d,
184 OM2K_DEI_FREQ_LIST = 0x1e,
185 OM2K_DEI_FREQ_SPEC_RX = 0x1f,
186 OM2K_DEI_FREQ_SPEC_TX = 0x20,
187 OM2K_DEI_HSN = 0x21,
Harald Welte884e7e52011-03-05 19:21:26 +0100188 OM2K_DEI_ICM_INDICATOR = 0x22,
Harald Welte271e9612011-03-05 20:13:52 +0100189 OM2K_DEI_INT_FAULT_MAP_1A = 0x23,
190 OM2K_DEI_INT_FAULT_MAP_1B = 0x24,
191 OM2K_DEI_INT_FAULT_MAP_2A = 0x25,
192 OM2K_DEI_INT_FAULT_MAP_2A_EXT = 0x26,
Harald Welte4a8f22e2011-02-12 20:23:40 +0100193 OM2K_DEI_IS_CONN_LIST = 0x27,
194 OM2K_DEI_LIST_NR = 0x28,
Harald Welte271e9612011-03-05 20:13:52 +0100195 OM2K_DEI_LOCAL_ACCESS = 0x2a,
Harald Welte00585d92011-03-05 14:13:14 +0100196 OM2K_DEI_MAIO = 0x2b,
Harald Welte271e9612011-03-05 20:13:52 +0100197 OM2K_DEI_MO_STATE = 0x2c,
Harald Welte884e7e52011-03-05 19:21:26 +0100198 OM2K_DEI_NY1 = 0x2d,
Harald Welte2a0a9632011-02-12 12:33:06 +0100199 OM2K_DEI_OP_INFO = 0x2e,
Harald Welte00585d92011-03-05 14:13:14 +0100200 OM2K_DEI_POWER = 0x2f,
Harald Weltee1f8de42011-03-05 17:52:09 +0100201 OM2K_DEI_REASON_CODE = 0x32,
Harald Welte00585d92011-03-05 14:13:14 +0100202 OM2K_DEI_RX_DIVERSITY = 0x33,
Harald Weltee1f8de42011-03-05 17:52:09 +0100203 OM2K_DEI_RESULT_CODE = 0x35,
Harald Welte884e7e52011-03-05 19:21:26 +0100204 OM2K_DEI_T3105 = 0x38,
Harald Welte429bed02011-03-05 14:36:47 +0100205 OM2K_DEI_TF_MODE = 0x3a,
Harald Welte00585d92011-03-05 14:13:14 +0100206 OM2K_DEI_TS_NR = 0x3c,
Harald Welte884e7e52011-03-05 19:21:26 +0100207 OM2K_DEI_TSC = 0x3d,
Harald Welte271e9612011-03-05 20:13:52 +0100208 OM2K_DEI_BTS_VERSION = 0x40,
209 OM2K_DEI_OML_IWD_VERSION = 0x41,
210 OM2K_DEI_RSL_IWD_VERSION = 0x42,
211 OM2K_DEI_OML_FUNC_MAP_1 = 0x43,
212 OM2K_DEI_OML_FUNC_MAP_2 = 0x44,
213 OM2K_DEI_RSL_FUNC_MAP_1 = 0x45,
214 OM2K_DEI_RSL_FUNC_MAP_2 = 0x46,
Harald Welte00585d92011-03-05 14:13:14 +0100215 OM2K_DEI_EXT_RANGE = 0x47,
Harald Welte271e9612011-03-05 20:13:52 +0100216 OM2K_DEI_REQ_IND = 0x48,
217 OM2K_DEI_REPL_UNIT_MAP = 0x50,
Harald Welte933c8212011-03-05 20:38:35 +0100218 OM2K_DEI_ICM_BOUND_PARAMS = 0x74,
Harald Welte884e7e52011-03-05 19:21:26 +0100219 OM2K_DEI_LSC = 0x79,
220 OM2K_DEI_LSC_FILT_TIME = 0x7a,
221 OM2K_DEI_CALL_SUPV_TIME = 0x7b,
Harald Welte933c8212011-03-05 20:38:35 +0100222 OM2K_DEI_ICM_CHAN_RATE = 0x7e,
Harald Welte271e9612011-03-05 20:13:52 +0100223 OM2K_DEI_HW_INFO_SIG = 0x84,
Harald Welte83492f02011-03-06 19:01:16 +0100224 OM2K_DEI_TF_SYNC_SRC = 0x86,
Harald Welte884e7e52011-03-05 19:21:26 +0100225 OM2K_DEI_TTA = 0x87,
Harald Welte271e9612011-03-05 20:13:52 +0100226 OM2K_DEI_CAPA_SIG = 0x8a,
Harald Welte4f3644b2011-02-12 13:44:14 +0100227 OM2K_DEI_NEGOT_REC1 = 0x90,
228 OM2K_DEI_NEGOT_REC2 = 0x91,
Harald Welte884e7e52011-03-05 19:21:26 +0100229 OM2K_DEI_ENCR_ALG = 0x92,
230 OM2K_DEI_INTERF_REJ_COMB = 0x94,
Harald Welte429bed02011-03-05 14:36:47 +0100231 OM2K_DEI_FS_OFFSET = 0x98,
Harald Welte271e9612011-03-05 20:13:52 +0100232 OM2K_DEI_EXT_COND_MAP_2_EXT = 0x9c,
Harald Welte2a0a9632011-02-12 12:33:06 +0100233};
234
Harald Weltee1f8de42011-03-05 17:52:09 +0100235const struct tlv_definition om2k_att_tlvdef = {
236 .def = {
Harald Welte02da3182011-03-06 19:26:11 +0100237 [OM2K_DEI_ACCORDANCE_IND] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100238 [OM2K_DEI_BCC] = { TLV_TYPE_TV },
Harald Welte884e7e52011-03-05 19:21:26 +0100239 [OM2K_DEI_BS_AG_BKS_RES] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100240 [OM2K_DEI_BSIC] = { TLV_TYPE_TV },
Harald Welte884e7e52011-03-05 19:21:26 +0100241 [OM2K_DEI_BA_PA_MFRMS] = { TLV_TYPE_TV },
242 [OM2K_DEI_CBCH_INDICATOR] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100243 [OM2K_DEI_INT_FAULT_MAP_1A] = { TLV_TYPE_FIXED, 6 },
244 [OM2K_DEI_INT_FAULT_MAP_1B] = { TLV_TYPE_FIXED, 6 },
245 [OM2K_DEI_INT_FAULT_MAP_2A] = { TLV_TYPE_FIXED, 6 },
246 [OM2K_DEI_INT_FAULT_MAP_2A_EXT]={ TLV_TYPE_FIXED, 6 },
Harald Welte884e7e52011-03-05 19:21:26 +0100247 [OM2K_DEI_CCCH_OPTIONS] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100248 [OM2K_DEI_CAL_TIME] = { TLV_TYPE_FIXED, 6 },
249 [OM2K_DEI_COMBINATION] = { TLV_TYPE_TV },
250 [OM2K_DEI_CON_CONN_LIST] = { TLV_TYPE_TLV },
Harald Welte884e7e52011-03-05 19:21:26 +0100251 [OM2K_DEI_DRX_DEV_MAX] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100252 [OM2K_DEI_END_LIST_NR] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100253 [OM2K_DEI_EXT_COND_MAP_1] = { TLV_TYPE_FIXED, 2 },
254 [OM2K_DEI_EXT_COND_MAP_2] = { TLV_TYPE_FIXED, 2 },
Harald Weltee1f8de42011-03-05 17:52:09 +0100255 [OM2K_DEI_FILLING_MARKER] = { TLV_TYPE_TV },
256 [OM2K_DEI_FN_OFFSET] = { TLV_TYPE_FIXED, 2 },
257 [OM2K_DEI_FREQ_LIST] = { TLV_TYPE_TLV },
258 [OM2K_DEI_FREQ_SPEC_RX] = { TLV_TYPE_FIXED, 2 },
259 [OM2K_DEI_FREQ_SPEC_TX] = { TLV_TYPE_FIXED, 2 },
260 [OM2K_DEI_HSN] = { TLV_TYPE_TV },
Harald Welte884e7e52011-03-05 19:21:26 +0100261 [OM2K_DEI_ICM_INDICATOR] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100262 [OM2K_DEI_IS_CONN_LIST] = { TLV_TYPE_TLV },
263 [OM2K_DEI_LIST_NR] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100264 [OM2K_DEI_LOCAL_ACCESS] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100265 [OM2K_DEI_MAIO] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100266 [OM2K_DEI_MO_STATE] = { TLV_TYPE_TV },
Harald Welte884e7e52011-03-05 19:21:26 +0100267 [OM2K_DEI_NY1] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100268 [OM2K_DEI_OP_INFO] = { TLV_TYPE_TV },
269 [OM2K_DEI_POWER] = { TLV_TYPE_TV },
270 [OM2K_DEI_REASON_CODE] = { TLV_TYPE_TV },
271 [OM2K_DEI_RX_DIVERSITY] = { TLV_TYPE_TV },
272 [OM2K_DEI_RESULT_CODE] = { TLV_TYPE_TV },
Harald Welte884e7e52011-03-05 19:21:26 +0100273 [OM2K_DEI_T3105] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100274 [OM2K_DEI_TF_MODE] = { TLV_TYPE_TV },
275 [OM2K_DEI_TS_NR] = { TLV_TYPE_TV },
Harald Welte884e7e52011-03-05 19:21:26 +0100276 [OM2K_DEI_TSC] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100277 [OM2K_DEI_BTS_VERSION] = { TLV_TYPE_FIXED, 12 },
278 [OM2K_DEI_OML_IWD_VERSION] = { TLV_TYPE_FIXED, 6 },
279 [OM2K_DEI_RSL_IWD_VERSION] = { TLV_TYPE_FIXED, 6 },
280 [OM2K_DEI_OML_FUNC_MAP_1] = { TLV_TYPE_TLV },
281 [OM2K_DEI_OML_FUNC_MAP_2] = { TLV_TYPE_TLV },
282 [OM2K_DEI_RSL_FUNC_MAP_1] = { TLV_TYPE_TLV },
283 [OM2K_DEI_RSL_FUNC_MAP_2] = { TLV_TYPE_TLV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100284 [OM2K_DEI_EXT_RANGE] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100285 [OM2K_DEI_REQ_IND] = { TLV_TYPE_TV },
286 [OM2K_DEI_REPL_UNIT_MAP] = { TLV_TYPE_FIXED, 6 },
Harald Welte933c8212011-03-05 20:38:35 +0100287 [OM2K_DEI_ICM_BOUND_PARAMS] = { TLV_TYPE_FIXED, 5 },
Harald Welte884e7e52011-03-05 19:21:26 +0100288 [OM2K_DEI_LSC] = { TLV_TYPE_TV },
289 [OM2K_DEI_LSC_FILT_TIME] = { TLV_TYPE_TV },
290 [OM2K_DEI_CALL_SUPV_TIME] = { TLV_TYPE_TV },
Harald Welte933c8212011-03-05 20:38:35 +0100291 [OM2K_DEI_ICM_CHAN_RATE] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100292 [OM2K_DEI_HW_INFO_SIG] = { TLV_TYPE_FIXED, 2 },
Harald Welte83492f02011-03-06 19:01:16 +0100293 [OM2K_DEI_TF_SYNC_SRC] = { TLV_TYPE_TV },
Harald Welte884e7e52011-03-05 19:21:26 +0100294 [OM2K_DEI_TTA] = { TLV_TYPE_TV },
Harald Welte271e9612011-03-05 20:13:52 +0100295 [OM2K_DEI_CAPA_SIG] = { TLV_TYPE_FIXED, 2 },
Harald Weltee1f8de42011-03-05 17:52:09 +0100296 [OM2K_DEI_NEGOT_REC1] = { TLV_TYPE_TLV },
297 [OM2K_DEI_NEGOT_REC2] = { TLV_TYPE_TLV },
Harald Welte884e7e52011-03-05 19:21:26 +0100298 [OM2K_DEI_ENCR_ALG] = { TLV_TYPE_TV },
299 [OM2K_DEI_INTERF_REJ_COMB] = { TLV_TYPE_TV },
Harald Weltee1f8de42011-03-05 17:52:09 +0100300 [OM2K_DEI_FS_OFFSET] = { TLV_TYPE_FIXED, 5 },
Harald Welte271e9612011-03-05 20:13:52 +0100301 [OM2K_DEI_EXT_COND_MAP_2_EXT] = { TLV_TYPE_FIXED, 4 },
Harald Weltee1f8de42011-03-05 17:52:09 +0100302 },
303};
304
Harald Welte2a0a9632011-02-12 12:33:06 +0100305static const struct value_string om2k_msgcode_vals[] = {
306 { 0x0000, "Abort SP Command" },
307 { 0x0002, "Abort SP Complete" },
308 { 0x0004, "Alarm Report ACK" },
309 { 0x0005, "Alarm Report NACK" },
310 { 0x0006, "Alarm Report" },
311 { 0x0008, "Alarm Status Request" },
312 { 0x000a, "Alarm Status Request Accept" },
313 { 0x000b, "Alarm Status Request Reject" },
314 { 0x000c, "Alarm Status Result ACK" },
315 { 0x000d, "Alarm Status Result NACK" },
316 { 0x000e, "Alarm Status Result" },
317 { 0x0010, "Calendar Time Response" },
318 { 0x0011, "Calendar Time Reject" },
319 { 0x0012, "Calendar Time Request" },
320 { 0x0014, "CON Configuration Request" },
321 { 0x0016, "CON Configuration Request Accept" },
322 { 0x0017, "CON Configuration Request Reject" },
323 { 0x0018, "CON Configuration Result ACK" },
324 { 0x0019, "CON Configuration Result NACK" },
325 { 0x001a, "CON Configuration Result" },
326 { 0x001c, "Connect Command" },
327 { 0x001e, "Connect Complete" },
Harald Welteaf92c402011-03-05 17:58:13 +0100328 { 0x001f, "Connect Reject" },
Harald Welte2a0a9632011-02-12 12:33:06 +0100329 { 0x0028, "Disable Request" },
330 { 0x002a, "Disable Request Accept" },
331 { 0x002b, "Disable Request Reject" },
332 { 0x002c, "Disable Result ACK" },
333 { 0x002d, "Disable Result NACK" },
334 { 0x002e, "Disable Result" },
335 { 0x0030, "Disconnect Command" },
336 { 0x0032, "Disconnect Complete" },
337 { 0x0033, "Disconnect Reject" },
338 { 0x0034, "Enable Request" },
339 { 0x0036, "Enable Request Accept" },
340 { 0x0037, "Enable Request Reject" },
341 { 0x0038, "Enable Result ACK" },
342 { 0x0039, "Enable Result NACK" },
343 { 0x003a, "Enable Result" },
344 { 0x003c, "Escape Downlink Normal" },
345 { 0x003d, "Escape Downlink NACK" },
346 { 0x003e, "Escape Uplink Normal" },
347 { 0x003f, "Escape Uplink NACK" },
348 { 0x0040, "Fault Report ACK" },
349 { 0x0041, "Fault Report NACK" },
350 { 0x0042, "Fault Report" },
351 { 0x0044, "File Package End Command" },
352 { 0x0046, "File Package End Result" },
353 { 0x0047, "File Package End Reject" },
354 { 0x0048, "File Relation Request" },
355 { 0x004a, "File Relation Response" },
356 { 0x004b, "File Relation Request Reject" },
357 { 0x004c, "File Segment Transfer" },
358 { 0x004e, "File Segment Transfer Complete" },
359 { 0x004f, "File Segment Transfer Reject" },
360 { 0x0050, "HW Information Request" },
361 { 0x0052, "HW Information Request Accept" },
362 { 0x0053, "HW Information Request Reject" },
363 { 0x0054, "HW Information Result ACK" },
364 { 0x0055, "HW Information Result NACK" },
365 { 0x0056, "HW Information Result" },
366 { 0x0060, "IS Configuration Request" },
367 { 0x0062, "IS Configuration Request Accept" },
368 { 0x0063, "IS Configuration Request Reject" },
369 { 0x0064, "IS Configuration Result ACK" },
370 { 0x0065, "IS Configuration Result NACK" },
371 { 0x0066, "IS Configuration Result" },
372 { 0x0068, "Load Data End" },
373 { 0x006a, "Load Data End Result" },
374 { 0x006b, "Load Data End Reject" },
375 { 0x006c, "Load Data Init" },
376 { 0x006e, "Load Data Init Accept" },
377 { 0x006f, "Load Data Init Reject" },
378 { 0x0070, "Loop Control Command" },
379 { 0x0072, "Loop Control Complete" },
380 { 0x0073, "Loop Control Reject" },
381 { 0x0074, "Operational Information" },
382 { 0x0076, "Operational Information Accept" },
383 { 0x0077, "Operational Information Reject" },
384 { 0x0078, "Reset Command" },
385 { 0x007a, "Reset Complete" },
386 { 0x007b, "Reset Reject" },
387 { 0x007c, "RX Configuration Request" },
388 { 0x007e, "RX Configuration Request Accept" },
389 { 0x007f, "RX Configuration Request Reject" },
390 { 0x0080, "RX Configuration Result ACK" },
391 { 0x0081, "RX Configuration Result NACK" },
392 { 0x0082, "RX Configuration Result" },
393 { 0x0084, "Start Request" },
394 { 0x0086, "Start Request Accept" },
395 { 0x0087, "Start Request Reject" },
396 { 0x0088, "Start Result ACK" },
397 { 0x0089, "Start Result NACK" },
398 { 0x008a, "Start Result" },
399 { 0x008c, "Status Request" },
400 { 0x008e, "Status Response" },
401 { 0x008f, "Status Reject" },
402 { 0x0094, "Test Request" },
403 { 0x0096, "Test Request Accept" },
404 { 0x0097, "Test Request Reject" },
405 { 0x0098, "Test Result ACK" },
406 { 0x0099, "Test Result NACK" },
407 { 0x009a, "Test Result" },
408 { 0x00a0, "TF Configuration Request" },
409 { 0x00a2, "TF Configuration Request Accept" },
410 { 0x00a3, "TF Configuration Request Reject" },
411 { 0x00a4, "TF Configuration Result ACK" },
412 { 0x00a5, "TF Configuration Result NACK" },
413 { 0x00a6, "TF Configuration Result" },
414 { 0x00a8, "TS Configuration Request" },
415 { 0x00aa, "TS Configuration Request Accept" },
416 { 0x00ab, "TS Configuration Request Reject" },
417 { 0x00ac, "TS Configuration Result ACK" },
418 { 0x00ad, "TS Configuration Result NACK" },
419 { 0x00ae, "TS Configuration Result" },
420 { 0x00b0, "TX Configuration Request" },
421 { 0x00b2, "TX Configuration Request Accept" },
422 { 0x00b3, "TX Configuration Request Reject" },
423 { 0x00b4, "TX Configuration Result ACK" },
424 { 0x00b5, "TX Configuration Result NACK" },
425 { 0x00b6, "TX Configuration Result" },
426 { 0x00bc, "DIP Alarm Report ACK" },
427 { 0x00bd, "DIP Alarm Report NACK" },
428 { 0x00be, "DIP Alarm Report" },
429 { 0x00c0, "DIP Alarm Status Request" },
430 { 0x00c2, "DIP Alarm Status Response" },
431 { 0x00c3, "DIP Alarm Status Reject" },
432 { 0x00c4, "DIP Quality Report I ACK" },
433 { 0x00c5, "DIP Quality Report I NACK" },
434 { 0x00c6, "DIP Quality Report I" },
435 { 0x00c8, "DIP Quality Report II ACK" },
436 { 0x00c9, "DIP Quality Report II NACK" },
437 { 0x00ca, "DIP Quality Report II" },
438 { 0x00dc, "DP Configuration Request" },
439 { 0x00de, "DP Configuration Request Accept" },
440 { 0x00df, "DP Configuration Request Reject" },
441 { 0x00e0, "DP Configuration Result ACK" },
442 { 0x00e1, "DP Configuration Result NACK" },
443 { 0x00e2, "DP Configuration Result" },
444 { 0x00e4, "Capabilities HW Info Report ACK" },
445 { 0x00e5, "Capabilities HW Info Report NACK" },
446 { 0x00e6, "Capabilities HW Info Report" },
447 { 0x00e8, "Capabilities Request" },
448 { 0x00ea, "Capabilities Request Accept" },
449 { 0x00eb, "Capabilities Request Reject" },
450 { 0x00ec, "Capabilities Result ACK" },
451 { 0x00ed, "Capabilities Result NACK" },
452 { 0x00ee, "Capabilities Result" },
453 { 0x00f0, "FM Configuration Request" },
454 { 0x00f2, "FM Configuration Request Accept" },
455 { 0x00f3, "FM Configuration Request Reject" },
456 { 0x00f4, "FM Configuration Result ACK" },
457 { 0x00f5, "FM Configuration Result NACK" },
458 { 0x00f6, "FM Configuration Result" },
459 { 0x00f8, "FM Report Request" },
460 { 0x00fa, "FM Report Response" },
461 { 0x00fb, "FM Report Reject" },
462 { 0x00fc, "FM Start Command" },
463 { 0x00fe, "FM Start Complete" },
464 { 0x00ff, "FM Start Reject" },
465 { 0x0100, "FM Stop Command" },
466 { 0x0102, "FM Stop Complete" },
467 { 0x0103, "FM Stop Reject" },
468 { 0x0104, "Negotiation Request ACK" },
469 { 0x0105, "Negotiation Request NACK" },
470 { 0x0106, "Negotiation Request" },
471 { 0x0108, "BTS Initiated Request ACK" },
472 { 0x0109, "BTS Initiated Request NACK" },
473 { 0x010a, "BTS Initiated Request" },
474 { 0x010c, "Radio Channels Release Command" },
475 { 0x010e, "Radio Channels Release Complete" },
476 { 0x010f, "Radio Channels Release Reject" },
477 { 0x0118, "Feature Control Command" },
478 { 0x011a, "Feature Control Complete" },
479 { 0x011b, "Feature Control Reject" },
480
481 { 0, NULL }
482};
483
484/* TS 12.21 Section 9.4: Attributes */
485static const struct value_string om2k_attr_vals[] = {
486 { 0x00, "Accordance indication" },
487 { 0x01, "Alarm Id" },
488 { 0x02, "Alarm Data" },
489 { 0x03, "Alarm Severity" },
490 { 0x04, "Alarm Status" },
491 { 0x05, "Alarm Status Type" },
492 { 0x06, "BCC" },
493 { 0x07, "BS_AG_BKS_RES" },
494 { 0x09, "BSIC" },
495 { 0x0a, "BA_PA_MFRMS" },
496 { 0x0b, "CBCH Indicator" },
497 { 0x0c, "CCCH Options" },
498 { 0x0d, "Calendar Time" },
499 { 0x0f, "Channel Combination" },
500 { 0x10, "CON Connection List" },
501 { 0x11, "Data End Indication" },
502 { 0x12, "DRX_DEV_MAX" },
503 { 0x13, "End List Number" },
504 { 0x14, "External Condition Map Class 1" },
505 { 0x15, "External Condition Map Class 2" },
506 { 0x16, "File Relation Indication" },
507 { 0x17, "File Revision" },
508 { 0x18, "File Segment Data" },
509 { 0x19, "File Segment Length" },
510 { 0x1a, "File Segment Sequence Number" },
511 { 0x1b, "File Size" },
512 { 0x1c, "Filling Marker" },
513 { 0x1d, "FN Offset" },
514 { 0x1e, "Frequency List" },
515 { 0x1f, "Frequency Specifier RX" },
516 { 0x20, "Frequency Specifier TX" },
517 { 0x21, "HSN" },
518 { 0x22, "ICM Indicator" },
519 { 0x23, "Internal Fault Map Class 1A" },
520 { 0x24, "Internal Fault Map Class 1B" },
521 { 0x25, "Internal Fault Map Class 2A" },
522 { 0x26, "Internal Fault Map Class 2A Extension" },
523 { 0x27, "IS Connection List" },
524 { 0x28, "List Number" },
525 { 0x29, "File Package State Indication" },
526 { 0x2a, "Local Access State" },
527 { 0x2b, "MAIO" },
528 { 0x2c, "MO State" },
529 { 0x2d, "Ny1" },
530 { 0x2e, "Operational Information" },
531 { 0x2f, "Power" },
532 { 0x30, "RU Position Data" },
533 { 0x31, "Protocol Error" },
534 { 0x32, "Reason Code" },
535 { 0x33, "Receiver Diversity" },
536 { 0x34, "Replacement Unit Map" },
537 { 0x35, "Result Code" },
538 { 0x36, "RU Revision Data" },
539 { 0x38, "T3105" },
540 { 0x39, "Test Loop Setting" },
541 { 0x3a, "TF Mode" },
542 { 0x3b, "TF Compensation Value" },
543 { 0x3c, "Time Slot Number" },
544 { 0x3d, "TSC" },
545 { 0x3e, "RU Logical Id" },
546 { 0x3f, "RU Serial Number Data" },
547 { 0x40, "BTS Version" },
548 { 0x41, "OML IWD Version" },
549 { 0x42, "RWL IWD Version" },
550 { 0x43, "OML Function Map 1" },
551 { 0x44, "OML Function Map 2" },
552 { 0x45, "RSL Function Map 1" },
553 { 0x46, "RSL Function Map 2" },
554 { 0x47, "Extended Range Indicator" },
555 { 0x48, "Request Indicators" },
556 { 0x49, "DIP Alarm Condition Map" },
557 { 0x4a, "ES Incoming" },
558 { 0x4b, "ES Outgoing" },
559 { 0x4e, "SES Incoming" },
560 { 0x4f, "SES Outgoing" },
561 { 0x50, "Replacement Unit Map Extension" },
562 { 0x52, "UAS Incoming" },
563 { 0x53, "UAS Outgoing" },
564 { 0x58, "DF Incoming" },
565 { 0x5a, "DF Outgoing" },
566 { 0x5c, "SF" },
567 { 0x60, "S Bits Setting" },
568 { 0x61, "CRC-4 Use Option" },
569 { 0x62, "T Parameter" },
570 { 0x63, "N Parameter" },
571 { 0x64, "N1 Parameter" },
572 { 0x65, "N3 Parameter" },
573 { 0x66, "N4 Parameter" },
574 { 0x67, "P Parameter" },
575 { 0x68, "Q Parameter" },
576 { 0x69, "BI_Q1" },
577 { 0x6a, "BI_Q2" },
578 { 0x74, "ICM Boundary Parameters" },
579 { 0x77, "AFT" },
580 { 0x78, "AFT RAI" },
581 { 0x79, "Link Supervision Control" },
582 { 0x7a, "Link Supervision Filtering Time" },
583 { 0x7b, "Call Supervision Time" },
584 { 0x7c, "Interval Length UAS Incoming" },
585 { 0x7d, "Interval Length UAS Outgoing" },
586 { 0x7e, "ICM Channel Rate" },
587 { 0x7f, "Attribute Identifier" },
588 { 0x80, "FM Frequency List" },
589 { 0x81, "FM Frequency Report" },
590 { 0x82, "FM Percentile" },
591 { 0x83, "FM Clear Indication" },
592 { 0x84, "HW Info Signature" },
593 { 0x85, "MO Record" },
594 { 0x86, "TF Synchronisation Source" },
595 { 0x87, "TTA" },
596 { 0x88, "End Segment Number" },
597 { 0x89, "Segment Number" },
598 { 0x8a, "Capabilities Signature" },
599 { 0x8c, "File Relation List" },
600 { 0x90, "Negotiation Record I" },
601 { 0x91, "Negotiation Record II" },
602 { 0x92, "Encryption Algorithm" },
603 { 0x94, "Interference Rejection Combining" },
604 { 0x95, "Dedication Information" },
605 { 0x97, "Feature Code" },
606 { 0x98, "FS Offset" },
607 { 0x99, "ESB Timeslot" },
608 { 0x9a, "Master TG Instance" },
609 { 0x9b, "Master TX Chain Delay" },
610 { 0x9c, "External Condition Class 2 Extension" },
611 { 0x9d, "TSs MO State" },
612 { 0, NULL }
613};
614
Harald Welte1d5a2062011-02-12 14:42:59 +0100615const struct value_string om2k_mo_class_short_vals[] = {
Harald Welte2a0a9632011-02-12 12:33:06 +0100616 { 0x01, "TRXC" },
617 { 0x03, "TS" },
618 { 0x04, "TF" },
619 { 0x05, "IS" },
620 { 0x06, "CON" },
621 { 0x07, "DP" },
622 { 0x0a, "CF" },
623 { 0x0b, "TX" },
624 { 0x0c, "RX" },
625 { 0, NULL }
626};
627
628static struct msgb *om2k_msgb_alloc(void)
629{
630 return msgb_alloc_headroom(OM_ALLOC_SIZE, OM_HEADROOM_SIZE,
631 "OM2000");
632}
633
Holger Hans Peter Freyther7eb8a9a2011-04-18 17:04:00 +0200634static int abis_om2k_tlv_parse(struct tlv_parsed *tp, const uint8_t *buf, int len)
Harald Weltee1f8de42011-03-05 17:52:09 +0100635{
636 return tlv_parse(tp, &om2k_att_tlvdef, buf, len, 0, 0);
637}
638
Harald Welte02da3182011-03-06 19:26:11 +0100639static int abis_om2k_msg_tlv_parse(struct tlv_parsed *tp, struct abis_om2k_hdr *oh)
640{
641 return abis_om2k_tlv_parse(tp, oh->data, oh->om.length - 6);
642}
643
Harald Weltec5845042011-02-14 15:26:13 +0100644static char *om2k_mo_name(const struct abis_om2k_mo *mo)
645{
646 static char mo_buf[64];
647
648 memset(mo_buf, 0, sizeof(mo_buf));
649 snprintf(mo_buf, sizeof(mo_buf), "%s/%02x/%02x/%02x",
650 get_value_string(om2k_mo_class_short_vals, mo->class),
651 mo->bts, mo->assoc_so, mo->inst);
652 return mo_buf;
653}
654
Harald Weltea348c082011-03-06 21:20:38 +0100655/* resolve the gsm_nm_state data structure for a given MO */
656static struct gsm_nm_state *
657mo2nm_state(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
658{
659 struct gsm_bts_trx *trx;
660 struct gsm_nm_state *nm_state = NULL;
661
662 switch (mo->class) {
663 case OM2K_MO_CLS_TRXC:
664 trx = gsm_bts_trx_num(bts, mo->assoc_so);
665 if (!trx)
666 return NULL;
Harald Welte69f6f812011-05-30 12:07:53 +0200667 nm_state = &trx->mo.nm_state;
Harald Weltea348c082011-03-06 21:20:38 +0100668 break;
669 case OM2K_MO_CLS_TS:
670 trx = gsm_bts_trx_num(bts, mo->assoc_so);
671 if (!trx)
672 return NULL;
673 if (mo->inst >= ARRAY_SIZE(trx->ts))
674 return NULL;
Harald Welte69f6f812011-05-30 12:07:53 +0200675 nm_state = &trx->ts[mo->inst].mo.nm_state;
Harald Weltea348c082011-03-06 21:20:38 +0100676 break;
677 case OM2K_MO_CLS_TF:
Harald Welte69f6f812011-05-30 12:07:53 +0200678 nm_state = &bts->rbs2000.tf.mo.nm_state;
Harald Weltea348c082011-03-06 21:20:38 +0100679 break;
680 case OM2K_MO_CLS_IS:
Harald Welte69f6f812011-05-30 12:07:53 +0200681 nm_state = &bts->rbs2000.is.mo.nm_state;
Harald Weltea348c082011-03-06 21:20:38 +0100682 break;
683 case OM2K_MO_CLS_CON:
Harald Welte69f6f812011-05-30 12:07:53 +0200684 nm_state = &bts->rbs2000.con.mo.nm_state;
Harald Weltea348c082011-03-06 21:20:38 +0100685 break;
686 case OM2K_MO_CLS_DP:
Harald Welte69f6f812011-05-30 12:07:53 +0200687 nm_state = &bts->rbs2000.con.mo.nm_state;
Harald Weltea348c082011-03-06 21:20:38 +0100688 break;
689 case OM2K_MO_CLS_CF:
Harald Welte69f6f812011-05-30 12:07:53 +0200690 nm_state = &bts->mo.nm_state;
Harald Weltea348c082011-03-06 21:20:38 +0100691 break;
692 case OM2K_MO_CLS_TX:
693 trx = gsm_bts_trx_num(bts, mo->assoc_so);
694 if (!trx)
695 return NULL;
696 break;
697 case OM2K_MO_CLS_RX:
698 trx = gsm_bts_trx_num(bts, mo->assoc_so);
699 if (!trx)
700 return NULL;
701 break;
702 }
703
704 return nm_state;
705}
706
707static void *mo2obj(struct gsm_bts *bts, struct abis_om2k_mo *mo)
708{
709 struct gsm_bts_trx *trx;
710
711 switch (mo->class) {
712 case OM2K_MO_CLS_TX:
713 case OM2K_MO_CLS_RX:
714 case OM2K_MO_CLS_TRXC:
715 return gsm_bts_trx_num(bts, mo->assoc_so);
716 case OM2K_MO_CLS_TS:
717 trx = gsm_bts_trx_num(bts, mo->assoc_so);
718 if (!trx)
719 return NULL;
720 if (mo->inst >= ARRAY_SIZE(trx->ts))
721 return NULL;
722 return &trx->ts[mo->inst];
723 case OM2K_MO_CLS_TF:
724 case OM2K_MO_CLS_IS:
725 case OM2K_MO_CLS_CON:
726 case OM2K_MO_CLS_DP:
727 case OM2K_MO_CLS_CF:
728 return bts;
729 }
730
731 return NULL;
732}
733
734static void update_mo_state(struct gsm_bts *bts, struct abis_om2k_mo *mo,
735 uint8_t mo_state)
736{
737 struct gsm_nm_state *nm_state = mo2nm_state(bts, mo);
738 struct gsm_nm_state new_state;
739 struct nm_statechg_signal_data nsd;
740
741 if (!nm_state)
742 return;
743
744 new_state = *nm_state;
745 /* NOTICE: 12.21 Availability state values != OM2000 */
746 new_state.availability = mo_state;
747
748 memset(&nsd, 0, sizeof(nsd));
749
Harald Welteb66af002011-03-06 23:00:32 +0100750 nsd.bts = bts;
Harald Weltea348c082011-03-06 21:20:38 +0100751 nsd.obj = mo2obj(bts, mo);
752 nsd.old_state = nm_state;
753 nsd.new_state = &new_state;
754 nsd.om2k_mo = mo;
755
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200756 osmo_signal_dispatch(SS_NM, S_NM_STATECHG_ADM, &nsd);
Harald Weltea348c082011-03-06 21:20:38 +0100757
758 nm_state->availability = new_state.availability;
759}
760
761static void update_op_state(struct gsm_bts *bts, const struct abis_om2k_mo *mo,
762 uint8_t op_state)
763{
764 struct gsm_nm_state *nm_state = mo2nm_state(bts, mo);
765 struct gsm_nm_state new_state;
766
767 if (!nm_state)
768 return;
769
770 new_state = *nm_state;
771 switch (op_state) {
772 case 1:
773 new_state.operational = NM_OPSTATE_ENABLED;
774 break;
775 case 0:
776 new_state.operational = NM_OPSTATE_DISABLED;
777 break;
778 default:
779 new_state.operational = NM_OPSTATE_NULL;
780 break;
781 }
782
783 nm_state->operational = new_state.operational;
784}
785
786static void signal_op_state(struct gsm_bts *bts, struct abis_om2k_mo *mo)
787{
788 struct gsm_nm_state *nm_state = mo2nm_state(bts, mo);
789 struct nm_statechg_signal_data nsd;
790
Harald Welteb66af002011-03-06 23:00:32 +0100791 nsd.bts = bts;
Harald Weltea348c082011-03-06 21:20:38 +0100792 nsd.obj = mo2obj(bts, mo);
793 nsd.old_state = nm_state;
794 nsd.new_state = nm_state;
795 nsd.om2k_mo = mo;
796
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +0200797 osmo_signal_dispatch(SS_NM, S_NM_STATECHG_OPER, &nsd);
Harald Weltea348c082011-03-06 21:20:38 +0100798}
799
Harald Welte8f909d52011-02-12 13:09:38 +0100800static int abis_om2k_sendmsg(struct gsm_bts *bts, struct msgb *msg)
801{
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +0200802 struct e1inp_sign_link *sign_link = (struct e1inp_sign_link *)msg;
Harald Weltec5845042011-02-14 15:26:13 +0100803 struct abis_om2k_hdr *o2h;
804 int to_trx_oml;
Harald Welte8f909d52011-02-12 13:09:38 +0100805
Harald Weltec5845042011-02-14 15:26:13 +0100806 msg->l2h = msg->data;
807 o2h = (struct abis_om2k_hdr *) msg->l2h;
808
Harald Welte884e7e52011-03-05 19:21:26 +0100809 /* Compute the length in the OML header */
810 o2h->om.length = 6 + msgb_l2len(msg)-sizeof(*o2h);
811
Harald Weltec5845042011-02-14 15:26:13 +0100812 switch (o2h->mo.class) {
813 case OM2K_MO_CLS_TRXC:
814 case OM2K_MO_CLS_TX:
815 case OM2K_MO_CLS_RX:
Harald Weltec5845042011-02-14 15:26:13 +0100816 /* Route through per-TRX OML Link to the appropriate TRX */
817 to_trx_oml = 1;
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +0200818 sign_link->trx = gsm_bts_trx_by_nr(bts, o2h->mo.inst);
819 if (!sign_link->trx) {
Harald Weltec5845042011-02-14 15:26:13 +0100820 LOGP(DNM, LOGL_ERROR, "MO=%s Tx Dropping msg to "
821 "non-existing TRX\n", om2k_mo_name(&o2h->mo));
822 return -ENODEV;
823 }
824 break;
Harald Welteec814dd2011-03-05 20:15:09 +0100825 case OM2K_MO_CLS_TS:
826 /* Route through per-TRX OML Link to the appropriate TRX */
827 to_trx_oml = 1;
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +0200828 sign_link->trx = gsm_bts_trx_by_nr(bts, o2h->mo.assoc_so);
829 if (!sign_link->trx) {
Harald Welteec814dd2011-03-05 20:15:09 +0100830 LOGP(DNM, LOGL_ERROR, "MO=%s Tx Dropping msg to "
831 "non-existing TRX\n", om2k_mo_name(&o2h->mo));
832 return -ENODEV;
833 }
834 break;
Harald Weltec5845042011-02-14 15:26:13 +0100835 default:
836 /* Route through the IXU/DXU OML Link */
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +0200837 sign_link->trx = bts->c0;
Harald Weltec5845042011-02-14 15:26:13 +0100838 to_trx_oml = 0;
839 break;
840 }
841
842 return _abis_nm_sendmsg(msg, to_trx_oml);
Harald Welte8f909d52011-02-12 13:09:38 +0100843}
844
Harald Welte2a0a9632011-02-12 12:33:06 +0100845static void fill_om2k_hdr(struct abis_om2k_hdr *o2h, const struct abis_om2k_mo *mo,
Harald Welte884e7e52011-03-05 19:21:26 +0100846 uint16_t msg_type)
Harald Welte2a0a9632011-02-12 12:33:06 +0100847{
848 o2h->om.mdisc = ABIS_OM_MDISC_FOM;
849 o2h->om.placement = ABIS_OM_PLACEMENT_ONLY;
850 o2h->om.sequence = 0;
Harald Welte884e7e52011-03-05 19:21:26 +0100851 /* We fill o2h->om.length later during om2k_sendmsg() */
Harald Welte2a0a9632011-02-12 12:33:06 +0100852 o2h->msg_type = htons(msg_type);
853 memcpy(&o2h->mo, mo, sizeof(o2h->mo));
854}
855
Harald Welte4f3644b2011-02-12 13:44:14 +0100856const struct abis_om2k_mo om2k_mo_cf = { OM2K_MO_CLS_CF, 0, 0xFF, 0 };
Harald Welte4a8f22e2011-02-12 20:23:40 +0100857const struct abis_om2k_mo om2k_mo_is = { OM2K_MO_CLS_IS, 0, 0xFF, 0 };
Harald Weltef5dbc3c2011-02-14 15:31:43 +0100858const struct abis_om2k_mo om2k_mo_con = { OM2K_MO_CLS_CON, 0, 0xFF, 0 };
Harald Welte429bed02011-03-05 14:36:47 +0100859const struct abis_om2k_mo om2k_mo_tf = { OM2K_MO_CLS_TF, 0, 0xFF, 0 };
Harald Welte2a0a9632011-02-12 12:33:06 +0100860
861static int abis_om2k_cal_time_resp(struct gsm_bts *bts)
862{
863 struct msgb *msg = om2k_msgb_alloc();
864 struct abis_om2k_hdr *o2k;
865 time_t tm_t;
866 struct tm *tm;
867
868 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +0100869 fill_om2k_hdr(o2k, &om2k_mo_cf, OM2K_MSGT_CAL_TIME_RESP);
Harald Welte2a0a9632011-02-12 12:33:06 +0100870
871 tm_t = time(NULL);
872 tm = localtime(&tm_t);
873
874 msgb_put_u8(msg, OM2K_DEI_CAL_TIME);
875 msgb_put_u8(msg, tm->tm_year % 100);
876 msgb_put_u8(msg, tm->tm_mon + 1);
877 msgb_put_u8(msg, tm->tm_mday);
878 msgb_put_u8(msg, tm->tm_hour);
879 msgb_put_u8(msg, tm->tm_min);
880 msgb_put_u8(msg, tm->tm_sec);
881
Harald Welte8f909d52011-02-12 13:09:38 +0100882 return abis_om2k_sendmsg(bts, msg);
Harald Welte2a0a9632011-02-12 12:33:06 +0100883}
884
Harald Welte9bf8e9e2011-02-12 14:57:17 +0100885static int abis_om2k_tx_simple(struct gsm_bts *bts, const struct abis_om2k_mo *mo,
Harald Welte2a0a9632011-02-12 12:33:06 +0100886 uint8_t msg_type)
887{
888 struct msgb *msg = om2k_msgb_alloc();
889 struct abis_om2k_hdr *o2k;
890
891 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +0100892 fill_om2k_hdr(o2k, mo, msg_type);
Harald Welte2a0a9632011-02-12 12:33:06 +0100893
Harald Welte4f3644b2011-02-12 13:44:14 +0100894 DEBUGP(DNM, "Tx MO=%s %s\n", om2k_mo_name(mo),
895 get_value_string(om2k_msgcode_vals, msg_type));
896
Harald Welte8f909d52011-02-12 13:09:38 +0100897 return abis_om2k_sendmsg(bts, msg);
Harald Welte2a0a9632011-02-12 12:33:06 +0100898}
899
Harald Welte9bf8e9e2011-02-12 14:57:17 +0100900int abis_om2k_tx_reset_cmd(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
Harald Welte4f3644b2011-02-12 13:44:14 +0100901{
902 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_RESET_CMD);
903}
904
Harald Welte9bf8e9e2011-02-12 14:57:17 +0100905int abis_om2k_tx_start_req(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
Harald Welte4f3644b2011-02-12 13:44:14 +0100906{
907 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_START_REQ);
908}
909
Harald Welte9bf8e9e2011-02-12 14:57:17 +0100910int abis_om2k_tx_status_req(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
Harald Welte1d5a2062011-02-12 14:42:59 +0100911{
912 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_STATUS_REQ);
913}
914
Harald Welte9bf8e9e2011-02-12 14:57:17 +0100915int abis_om2k_tx_connect_cmd(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
916{
917 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_CONNECT_CMD);
918}
919
920int abis_om2k_tx_disconnect_cmd(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
921{
922 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_DISCONNECT_CMD);
923}
924
Harald Welte40ad3b32011-02-12 15:07:30 +0100925int abis_om2k_tx_test_req(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
926{
927 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_TEST_REQ);
928}
929
Harald Welte6d5a0392011-02-12 18:48:53 +0100930int abis_om2k_tx_enable_req(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
931{
932 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_ENABLE_REQ);
933}
934
935int abis_om2k_tx_disable_req(struct gsm_bts *bts, const struct abis_om2k_mo *mo)
936{
937 return abis_om2k_tx_simple(bts, mo, OM2K_MSGT_DISABLE_REQ);
938}
939
Harald Welte9bf8e9e2011-02-12 14:57:17 +0100940int abis_om2k_tx_op_info(struct gsm_bts *bts, const struct abis_om2k_mo *mo,
941 uint8_t operational)
Harald Welte2a0a9632011-02-12 12:33:06 +0100942{
943 struct msgb *msg = om2k_msgb_alloc();
944 struct abis_om2k_hdr *o2k;
945
946 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +0100947 fill_om2k_hdr(o2k, mo, OM2K_MSGT_OP_INFO);
Harald Welte2a0a9632011-02-12 12:33:06 +0100948
949 msgb_tv_put(msg, OM2K_DEI_OP_INFO, operational);
950
Harald Welte4f3644b2011-02-12 13:44:14 +0100951 DEBUGP(DNM, "Tx MO=%s %s\n", om2k_mo_name(mo),
952 get_value_string(om2k_msgcode_vals, OM2K_MSGT_OP_INFO));
953
Harald Weltea348c082011-03-06 21:20:38 +0100954 /* we update the state here... and send the signal at ACK */
955 update_op_state(bts, mo, operational);
956
Harald Welte8f909d52011-02-12 13:09:38 +0100957 return abis_om2k_sendmsg(bts, msg);
Harald Welte2a0a9632011-02-12 12:33:06 +0100958}
959
Harald Welte3ee11892011-03-06 21:49:21 +0100960static void om2k_fill_is_conn_grp(struct om2k_is_conn_grp *grp, uint16_t icp1,
961 uint16_t icp2, uint8_t cont_idx)
962{
963 grp->icp1 = htons(icp1);
964 grp->icp2 = htons(icp2);
965 grp->cont_idx = cont_idx;
966}
967
968int abis_om2k_tx_is_conf_req(struct gsm_bts *bts)
Harald Welte4a8f22e2011-02-12 20:23:40 +0100969{
970 struct msgb *msg = om2k_msgb_alloc();
971 struct abis_om2k_hdr *o2k;
Harald Welte3ee11892011-03-06 21:49:21 +0100972 struct is_conn_group *grp;
973 unsigned int num_grps = 0, i = 0;
974 struct om2k_is_conn_grp *cg;
975
976 /* count number of groups in linked list */
977 llist_for_each_entry(grp, &bts->rbs2000.is.conn_groups, list)
978 num_grps++;
979
980 if (!num_grps)
981 return -EINVAL;
982
983 /* allocate buffer for oml group array */
984 cg = talloc_zero_array(bts, struct om2k_is_conn_grp, num_grps);
985
986 /* fill array with data from linked list */
987 llist_for_each_entry(grp, &bts->rbs2000.is.conn_groups, list)
988 om2k_fill_is_conn_grp(&cg[i++], grp->icp1, grp->icp2, grp->ci);
Harald Welte4a8f22e2011-02-12 20:23:40 +0100989
990 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +0100991 fill_om2k_hdr(o2k, &om2k_mo_is, OM2K_MSGT_IS_CONF_REQ);
Harald Welte4a8f22e2011-02-12 20:23:40 +0100992
993 msgb_tv_put(msg, OM2K_DEI_LIST_NR, 1);
994 msgb_tv_put(msg, OM2K_DEI_END_LIST_NR, 1);
995
996 msgb_tlv_put(msg, OM2K_DEI_IS_CONN_LIST,
Harald Welte3ee11892011-03-06 21:49:21 +0100997 num_grps * sizeof(*cg), (uint8_t *)cg);
998
999 talloc_free(cg);
Harald Welte4a8f22e2011-02-12 20:23:40 +01001000
1001 return abis_om2k_sendmsg(bts, msg);
1002}
1003
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001004int abis_om2k_tx_con_conf_req(struct gsm_bts *bts, uint8_t *data,
1005 unsigned int len)
1006{
1007 struct msgb *msg = om2k_msgb_alloc();
1008 struct abis_om2k_hdr *o2k;
1009
1010 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +01001011 fill_om2k_hdr(o2k, &om2k_mo_con, OM2K_MSGT_CON_CONF_REQ);
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001012
1013 msgb_tv_put(msg, OM2K_DEI_LIST_NR, 1);
1014 msgb_tv_put(msg, OM2K_DEI_END_LIST_NR, 1);
1015
1016 msgb_tlv_put(msg, OM2K_DEI_CON_CONN_LIST, len, data);
1017
1018 return abis_om2k_sendmsg(bts, msg);
1019}
1020
Harald Welte00585d92011-03-05 14:13:14 +01001021static void om2k_trx_to_mo(struct abis_om2k_mo *mo,
1022 const struct gsm_bts_trx *trx,
1023 enum abis_om2k_mo_cls cls)
1024{
1025 mo->class = cls;
1026 mo->bts = 0;
1027 mo->inst = trx->nr;
Harald Welte14b44342011-03-05 16:21:01 +01001028 mo->assoc_so = 255;
Harald Welte00585d92011-03-05 14:13:14 +01001029}
1030
1031static void om2k_ts_to_mo(struct abis_om2k_mo *mo,
1032 const struct gsm_bts_trx_ts *ts)
1033{
1034 mo->class = OM2K_MO_CLS_TS;
1035 mo->bts = 0;
1036 mo->inst = ts->nr;
1037 mo->assoc_so = ts->trx->nr;
1038}
1039
1040/* Configure a Receiver MO */
1041int abis_om2k_tx_rx_conf_req(struct gsm_bts_trx *trx)
1042{
1043 struct msgb *msg = om2k_msgb_alloc();
1044 struct abis_om2k_hdr *o2k;
1045 struct abis_om2k_mo mo;
1046
1047 om2k_trx_to_mo(&mo, trx, OM2K_MO_CLS_RX);
1048
1049 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +01001050 fill_om2k_hdr(o2k, &mo, OM2K_MSGT_RX_CONF_REQ);
Harald Welte00585d92011-03-05 14:13:14 +01001051
1052 msgb_tv16_put(msg, OM2K_DEI_FREQ_SPEC_RX, trx->arfcn);
Harald Weltefd067d32011-03-06 19:01:54 +01001053 msgb_tv_put(msg, OM2K_DEI_RX_DIVERSITY, 0x02); /* A */
Harald Welte00585d92011-03-05 14:13:14 +01001054
1055 return abis_om2k_sendmsg(trx->bts, msg);
1056}
1057
1058/* Configure a Transmitter MO */
1059int abis_om2k_tx_tx_conf_req(struct gsm_bts_trx *trx)
1060{
1061 struct msgb *msg = om2k_msgb_alloc();
1062 struct abis_om2k_hdr *o2k;
1063 struct abis_om2k_mo mo;
1064
1065 om2k_trx_to_mo(&mo, trx, OM2K_MO_CLS_TX);
1066
1067 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +01001068 fill_om2k_hdr(o2k, &mo, OM2K_MSGT_TX_CONF_REQ);
Harald Welte00585d92011-03-05 14:13:14 +01001069
1070 msgb_tv16_put(msg, OM2K_DEI_FREQ_SPEC_TX, trx->arfcn);
1071 msgb_tv_put(msg, OM2K_DEI_POWER, trx->nominal_power-trx->max_power_red);
1072 msgb_tv_put(msg, OM2K_DEI_FILLING_MARKER, 0); /* Filling enabled */
1073 msgb_tv_put(msg, OM2K_DEI_BCC, trx->bts->bsic & 0x7);
1074 /* Dedication Information is optional */
1075
1076 return abis_om2k_sendmsg(trx->bts, msg);
1077}
1078
Harald Welte429bed02011-03-05 14:36:47 +01001079enum abis_om2k_tf_mode {
1080 OM2K_TF_MODE_MASTER = 0x00,
1081 OM2K_TF_MODE_STANDALONE = 0x01,
1082 OM2K_TF_MODE_SLAVE = 0x02,
1083 OM2K_TF_MODE_UNDEFINED = 0xff,
1084};
1085
1086static const uint8_t fs_offset_undef[5] = { 0xff, 0xff, 0xff, 0xff, 0xff };
1087
1088int abis_om2k_tx_tf_conf_req(struct gsm_bts *bts)
1089{
1090 struct msgb *msg = om2k_msgb_alloc();
1091 struct abis_om2k_hdr *o2k;
1092
1093 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +01001094 fill_om2k_hdr(o2k, &om2k_mo_tf, OM2K_MSGT_TF_CONF_REQ);
Harald Welte429bed02011-03-05 14:36:47 +01001095
1096 msgb_tv_put(msg, OM2K_DEI_TF_MODE, OM2K_TF_MODE_STANDALONE);
Harald Welte83492f02011-03-06 19:01:16 +01001097 msgb_tv_put(msg, OM2K_DEI_TF_SYNC_SRC, 0x00);
Harald Welte429bed02011-03-05 14:36:47 +01001098 msgb_tv_fixed_put(msg, OM2K_DEI_FS_OFFSET,
1099 sizeof(fs_offset_undef), fs_offset_undef);
1100
1101 return abis_om2k_sendmsg(bts, msg);
1102}
1103
Harald Welte00585d92011-03-05 14:13:14 +01001104static uint8_t pchan2comb(enum gsm_phys_chan_config pchan)
1105{
1106 switch (pchan) {
1107 case GSM_PCHAN_CCCH:
1108 return 4;
1109 case GSM_PCHAN_CCCH_SDCCH4:
1110 return 5;
1111 case GSM_PCHAN_SDCCH8_SACCH8C:
1112 return 3;
1113 case GSM_PCHAN_TCH_F:
1114 case GSM_PCHAN_TCH_H:
1115 case GSM_PCHAN_PDCH:
1116 case GSM_PCHAN_TCH_F_PDCH:
1117 return 8;
1118 default:
1119 return 0;
1120 }
1121}
1122
Harald Weltebde6a762011-03-05 17:30:07 +01001123static int put_freq_list(uint8_t *buf, uint16_t arfcn)
1124{
1125 buf[0] = 0x00; /* TX/RX address */
1126 buf[1] = (arfcn >> 8);
1127 buf[2] = (arfcn & 0xff);
1128
1129 return 3;
1130}
1131
Harald Welte00585d92011-03-05 14:13:14 +01001132/* Compute a frequency list in OM2000 fomrmat */
1133static int om2k_gen_freq_list(uint8_t *list, struct gsm_bts_trx_ts *ts)
1134{
1135 uint8_t *cur = list;
Harald Weltee1f8de42011-03-05 17:52:09 +01001136 int len;
Harald Welte00585d92011-03-05 14:13:14 +01001137
1138 if (ts->hopping.enabled) {
1139 unsigned int i;
1140 for (i = 0; i < ts->hopping.arfcns.data_len*8; i++) {
Harald Weltebde6a762011-03-05 17:30:07 +01001141 if (bitvec_get_bit_pos(&ts->hopping.arfcns, i))
1142 cur += put_freq_list(cur, i);
Harald Welte00585d92011-03-05 14:13:14 +01001143 }
Harald Weltebde6a762011-03-05 17:30:07 +01001144 } else
1145 cur += put_freq_list(cur, ts->trx->arfcn);
1146
Harald Weltee1f8de42011-03-05 17:52:09 +01001147 len = cur - list;
1148
1149 return len;
Harald Welte00585d92011-03-05 14:13:14 +01001150}
1151
Harald Welte933c8212011-03-05 20:38:35 +01001152const uint8_t icm_bound_params[] = { 0x02, 0x06, 0x0c, 0x16, 0x06 };
1153
Harald Welte00585d92011-03-05 14:13:14 +01001154int abis_om2k_tx_ts_conf_req(struct gsm_bts_trx_ts *ts)
1155{
1156 struct msgb *msg = om2k_msgb_alloc();
1157 struct abis_om2k_hdr *o2k;
1158 struct abis_om2k_mo mo;
1159 uint8_t freq_list[64*3]; /* BA max size: 64 ARFCN */
1160 int freq_list_len;
1161
1162 om2k_ts_to_mo(&mo, ts);
1163
Harald Weltebde6a762011-03-05 17:30:07 +01001164 memset(freq_list, 0, sizeof(freq_list));
Harald Welte00585d92011-03-05 14:13:14 +01001165 freq_list_len = om2k_gen_freq_list(freq_list, ts);
1166 if (freq_list_len < 0)
1167 return freq_list_len;
1168
1169 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +01001170 fill_om2k_hdr(o2k, &mo, OM2K_MSGT_TS_CONF_REQ);
Harald Welte00585d92011-03-05 14:13:14 +01001171
1172 msgb_tv_put(msg, OM2K_DEI_COMBINATION, pchan2comb(ts->pchan));
1173 msgb_tv_put(msg, OM2K_DEI_TS_NR, ts->nr);
1174 msgb_tlv_put(msg, OM2K_DEI_FREQ_LIST, freq_list_len, freq_list);
1175 msgb_tv_put(msg, OM2K_DEI_HSN, ts->hopping.hsn);
1176 msgb_tv_put(msg, OM2K_DEI_MAIO, ts->hopping.maio);
1177 msgb_tv_put(msg, OM2K_DEI_BSIC, ts->trx->bts->bsic);
Harald Weltefd067d32011-03-06 19:01:54 +01001178 msgb_tv_put(msg, OM2K_DEI_RX_DIVERSITY, 0x02); /* A */
Harald Welte00585d92011-03-05 14:13:14 +01001179 msgb_tv16_put(msg, OM2K_DEI_FN_OFFSET, 0);
1180 msgb_tv_put(msg, OM2K_DEI_EXT_RANGE, 0); /* Off */
1181 /* Optional: Interference Rejection Combining */
Harald Welte884e7e52011-03-05 19:21:26 +01001182 msgb_tv_put(msg, OM2K_DEI_INTERF_REJ_COMB, 0x00);
1183 switch (ts->pchan) {
1184 case GSM_PCHAN_CCCH:
Harald Welte884e7e52011-03-05 19:21:26 +01001185 msgb_tv_put(msg, OM2K_DEI_BA_PA_MFRMS, 0x06);
1186 msgb_tv_put(msg, OM2K_DEI_BS_AG_BKS_RES, 0x01);
1187 msgb_tv_put(msg, OM2K_DEI_DRX_DEV_MAX, 0x05);
1188 /* Repeat Paging/IMM.ASS: True, Allow Paging Type 3: Yes, Page for 5 seconds (default) */
1189 msgb_tv_put(msg, OM2K_DEI_CCCH_OPTIONS, 0x01);
1190 break;
Harald Welte933c8212011-03-05 20:38:35 +01001191 case GSM_PCHAN_CCCH_SDCCH4:
1192 msgb_tv_put(msg, OM2K_DEI_T3105, 0x04);
1193 msgb_tv_put(msg, OM2K_DEI_NY1, 35);
1194 msgb_tv_put(msg, OM2K_DEI_BA_PA_MFRMS, 0x06);
1195 msgb_tv_put(msg, OM2K_DEI_CBCH_INDICATOR, 0);
1196 msgb_tv_put(msg, OM2K_DEI_TSC, ts->trx->bts->tsc);
1197 msgb_tv_put(msg, OM2K_DEI_BS_AG_BKS_RES, 0x01);
1198 msgb_tv_put(msg, OM2K_DEI_ICM_INDICATOR, 0);
1199 msgb_tv_put(msg, OM2K_DEI_DRX_DEV_MAX, 0x05);
1200 /* Repeat Paging/IMM.ASS: True, Allow Paging Type 3: Yes, Page for 5 seconds (default) */
1201 msgb_tv_put(msg, OM2K_DEI_CCCH_OPTIONS, 0x01);
1202 msgb_tv_fixed_put(msg, OM2K_DEI_ICM_BOUND_PARAMS,
1203 sizeof(icm_bound_params), icm_bound_params);
1204 break;
Harald Welte884e7e52011-03-05 19:21:26 +01001205 case GSM_PCHAN_SDCCH8_SACCH8C:
1206 msgb_tv_put(msg, OM2K_DEI_T3105, 0x04);
1207 msgb_tv_put(msg, OM2K_DEI_NY1, 35);
1208 msgb_tv_put(msg, OM2K_DEI_CBCH_INDICATOR, 0);
1209 msgb_tv_put(msg, OM2K_DEI_TSC, ts->trx->bts->tsc);
1210 /* Disable RF RESOURCE INDICATION on idle channels */
1211 msgb_tv_put(msg, OM2K_DEI_ICM_INDICATOR, 0);
Harald Welte933c8212011-03-05 20:38:35 +01001212 msgb_tv_fixed_put(msg, OM2K_DEI_ICM_BOUND_PARAMS,
1213 sizeof(icm_bound_params), icm_bound_params);
Harald Welte884e7e52011-03-05 19:21:26 +01001214 break;
1215 default:
1216 msgb_tv_put(msg, OM2K_DEI_T3105, 0x04);
1217 msgb_tv_put(msg, OM2K_DEI_NY1, 35);
Harald Welte884e7e52011-03-05 19:21:26 +01001218 msgb_tv_put(msg, OM2K_DEI_TSC, ts->trx->bts->tsc);
1219 /* Disable RF RESOURCE INDICATION on idle channels */
1220 msgb_tv_put(msg, OM2K_DEI_ICM_INDICATOR, 0);
Harald Welte933c8212011-03-05 20:38:35 +01001221 msgb_tv_fixed_put(msg, OM2K_DEI_ICM_BOUND_PARAMS,
1222 sizeof(icm_bound_params), icm_bound_params);
Harald Welte884e7e52011-03-05 19:21:26 +01001223 msgb_tv_put(msg, OM2K_DEI_TTA, 10); /* Timer for Time Alignment */
Harald Welte933c8212011-03-05 20:38:35 +01001224 if (ts->pchan == GSM_PCHAN_TCH_H)
1225 msgb_tv_put(msg, OM2K_DEI_ICM_CHAN_RATE, 1); /* TCH/H */
1226 else
1227 msgb_tv_put(msg, OM2K_DEI_ICM_CHAN_RATE, 0); /* TCH/F */
Harald Welte884e7e52011-03-05 19:21:26 +01001228 msgb_tv_put(msg, OM2K_DEI_LSC, 1); /* enabled */
Harald Weltefd067d32011-03-06 19:01:54 +01001229 msgb_tv_put(msg, OM2K_DEI_LSC_FILT_TIME, 10); /* units of 100ms */
Harald Welte884e7e52011-03-05 19:21:26 +01001230 msgb_tv_put(msg, OM2K_DEI_CALL_SUPV_TIME, 8);
1231 msgb_tv_put(msg, OM2K_DEI_ENCR_ALG, 0x00);
Harald Welte884e7e52011-03-05 19:21:26 +01001232 break;
1233 }
Harald Welte00585d92011-03-05 14:13:14 +01001234
1235 return abis_om2k_sendmsg(ts->trx->bts, msg);
1236}
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001237
Harald Welte9bf8e9e2011-02-12 14:57:17 +01001238static int abis_om2k_tx_negot_req_ack(struct gsm_bts *bts, const struct abis_om2k_mo *mo,
Harald Welte4f3644b2011-02-12 13:44:14 +01001239 uint8_t *data, unsigned int len)
1240{
1241 struct msgb *msg = om2k_msgb_alloc();
1242 struct abis_om2k_hdr *o2k;
1243
1244 o2k = (struct abis_om2k_hdr *) msgb_put(msg, sizeof(*o2k));
Harald Welte884e7e52011-03-05 19:21:26 +01001245 fill_om2k_hdr(o2k, mo, OM2K_MSGT_NEGOT_REQ_ACK);
Harald Welte4f3644b2011-02-12 13:44:14 +01001246
1247 msgb_tlv_put(msg, OM2K_DEI_NEGOT_REC2, len, data);
1248
1249 DEBUGP(DNM, "Tx MO=%s %s\n", om2k_mo_name(mo),
1250 get_value_string(om2k_msgcode_vals, OM2K_MSGT_NEGOT_REQ_ACK));
1251
1252 return abis_om2k_sendmsg(bts, msg);
1253}
Harald Welte2a0a9632011-02-12 12:33:06 +01001254
Harald Welte5f496562011-02-12 18:11:16 +01001255struct iwd_version {
1256 uint8_t gen_char[3+1];
1257 uint8_t rev_char[3+1];
1258};
1259
1260struct iwd_type {
1261 uint8_t num_vers;
1262 struct iwd_version v[8];
1263};
1264
Harald Welte2a0a9632011-02-12 12:33:06 +01001265static int om2k_rx_negot_req(struct msgb *msg)
1266{
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +02001267 struct e1inp_sign_link *sign_link = (struct e1inp_sign_link *)msg->dst;
Harald Welte2a0a9632011-02-12 12:33:06 +01001268 struct abis_om2k_hdr *o2h = msgb_l2(msg);
Harald Welte5f496562011-02-12 18:11:16 +01001269 struct iwd_type iwd_types[16];
1270 uint8_t num_iwd_types = o2h->data[2];
1271 uint8_t *cur = o2h->data+3;
1272 unsigned int i, v;
Harald Welte2a0a9632011-02-12 12:33:06 +01001273
Harald Welte5f496562011-02-12 18:11:16 +01001274 uint8_t out_buf[1024];
1275 uint8_t *out_cur = out_buf+1;
1276 uint8_t out_num_types = 0;
1277
1278 memset(iwd_types, 0, sizeof(iwd_types));
1279
1280 /* Parse the RBS-supported IWD versions into iwd_types array */
1281 for (i = 0; i < num_iwd_types; i++) {
1282 uint8_t num_versions = *cur++;
1283 uint8_t iwd_type = *cur++;
1284
1285 iwd_types[iwd_type].num_vers = num_versions;
1286
1287 for (v = 0; v < num_versions; v++) {
1288 struct iwd_version *iwd_v = &iwd_types[iwd_type].v[v];
1289
1290 memcpy(iwd_v->gen_char, cur, 3);
Harald Welte091ae8f2011-02-12 18:13:37 +01001291 cur += 3;
1292 memcpy(iwd_v->rev_char, cur, 3);
1293 cur += 3;
1294
Harald Welte5f496562011-02-12 18:11:16 +01001295 DEBUGP(DNM, "\tIWD Type %u Gen %s Rev %s\n", iwd_type,
1296 iwd_v->gen_char, iwd_v->rev_char);
1297 }
1298 }
1299
1300 /* Select the last version for each IWD type */
1301 for (i = 0; i < ARRAY_SIZE(iwd_types); i++) {
1302 struct iwd_type *type = &iwd_types[i];
1303 struct iwd_version *last_v;
1304
1305 if (type->num_vers == 0)
1306 continue;
1307
1308 out_num_types++;
1309
1310 last_v = &type->v[type->num_vers-1];
1311
1312 *out_cur++ = i;
1313 memcpy(out_cur, last_v->gen_char, 3);
1314 out_cur += 3;
1315 memcpy(out_cur, last_v->rev_char, 3);
1316 out_cur += 3;
1317 }
1318
1319 out_buf[0] = out_num_types;
1320
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +02001321 return abis_om2k_tx_negot_req_ack(sign_link->trx->bts, &o2h->mo, out_buf, out_cur - out_buf);
Harald Welte2a0a9632011-02-12 12:33:06 +01001322}
1323
1324static int om2k_rx_start_res(struct msgb *msg)
1325{
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +02001326 struct e1inp_sign_link *sign_link = (struct e1inp_sign_link *)msg->dst;
Harald Welte2a0a9632011-02-12 12:33:06 +01001327 struct abis_om2k_hdr *o2h = msgb_l2(msg);
1328 int rc;
1329
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +02001330 rc = abis_om2k_tx_simple(sign_link->trx->bts, &o2h->mo, OM2K_MSGT_START_RES_ACK);
1331 rc = abis_om2k_tx_op_info(sign_link->trx->bts, &o2h->mo, 1);
Harald Welte2a0a9632011-02-12 12:33:06 +01001332
1333 return rc;
1334}
1335
Harald Welte6d5a0392011-02-12 18:48:53 +01001336static int om2k_rx_op_info_ack(struct msgb *msg)
Harald Welte2a0a9632011-02-12 12:33:06 +01001337{
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +02001338 struct e1inp_sign_link *sign_link = (struct e1inp_sign_link *)msg->dst;
Harald Welte2a0a9632011-02-12 12:33:06 +01001339 struct abis_om2k_hdr *o2h = msgb_l2(msg);
Harald Welte2a0a9632011-02-12 12:33:06 +01001340
Harald Weltea348c082011-03-06 21:20:38 +01001341 /* This Acknowledgement does not contain the actual operational state,
1342 * so we signal whatever state we saved when we sent the Op Info
1343 * request */
1344
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +02001345 signal_op_state(sign_link->trx->bts, &o2h->mo);
Harald Welte2a0a9632011-02-12 12:33:06 +01001346
Harald Welte6d5a0392011-02-12 18:48:53 +01001347 return 0;
Harald Welte2a0a9632011-02-12 12:33:06 +01001348}
1349
Harald Weltee1f8de42011-03-05 17:52:09 +01001350const struct value_string om2k_result_strings[] = {
1351 { 0x02, "Wrong state or out of sequence" },
1352 { 0x03, "File error" },
1353 { 0x04, "Fault, unspecified" },
1354 { 0x05, "Tuning fault" },
1355 { 0x06, "Protocol error" },
1356 { 0x07, "MO not connected" },
1357 { 0x08, "Parameter error" },
1358 { 0x09, "Optional function not supported" },
1359 { 0x0a, "Local access state LOCALLY DISCONNECTED" },
1360 { 0, NULL }
1361};
1362
Harald Welte02da3182011-03-06 19:26:11 +01001363const struct value_string om2k_accordance_strings[] = {
1364 { 0x00, "Data according to request" },
1365 { 0x01, "Data not according to request" },
1366 { 0x02, "Inconsistent MO data" },
1367 { 0x03, "Capability constraint violation" },
1368 { 0, NULL }
1369};
1370
1371const struct value_string om2k_mostate_vals[] = {
1372 { 0x00, "RESET" },
1373 { 0x01, "STARTED" },
1374 { 0x02, "ENABLED" },
1375 { 0x03, "DISABLED" },
1376 { 0, NULL }
1377};
1378
Harald Weltee1f8de42011-03-05 17:52:09 +01001379static int om2k_rx_nack(struct msgb *msg)
1380{
1381 struct abis_om2k_hdr *o2h = msgb_l2(msg);
1382 uint16_t msg_type = ntohs(o2h->msg_type);
1383 struct tlv_parsed tp;
1384
1385 LOGP(DNM, LOGL_ERROR, "Rx MO=%s %s", om2k_mo_name(&o2h->mo),
1386 get_value_string(om2k_msgcode_vals, msg_type));
1387
Harald Welte02da3182011-03-06 19:26:11 +01001388 abis_om2k_msg_tlv_parse(&tp, o2h);
Harald Weltee1f8de42011-03-05 17:52:09 +01001389 if (TLVP_PRESENT(&tp, OM2K_DEI_REASON_CODE))
1390 LOGPC(DNM, LOGL_ERROR, ", Reason 0x%02x",
1391 *TLVP_VAL(&tp, OM2K_DEI_REASON_CODE));
1392
1393 if (TLVP_PRESENT(&tp, OM2K_DEI_RESULT_CODE))
1394 LOGPC(DNM, LOGL_ERROR, ", Result %s",
1395 get_value_string(om2k_result_strings,
1396 *TLVP_VAL(&tp, OM2K_DEI_RESULT_CODE)));
1397 LOGPC(DNM, LOGL_ERROR, "\n");
1398
1399 return 0;
1400}
1401
Harald Welte02da3182011-03-06 19:26:11 +01001402/* Process a Configuration Result message */
1403static int process_conf_res(struct gsm_bts *bts, struct msgb *msg)
1404{
1405 struct abis_om2k_hdr *o2h = msgb_l2(msg);
1406 uint16_t msg_type = ntohs(o2h->msg_type);
Harald Weltee235c012011-03-06 23:20:28 +01001407 struct nm_om2k_signal_data nsd;
Harald Welte02da3182011-03-06 19:26:11 +01001408 struct tlv_parsed tp;
1409 uint8_t acc;
1410 unsigned int log_level;
1411 int ret;
1412
Harald Weltee235c012011-03-06 23:20:28 +01001413 memset(&nsd, 0, sizeof(nsd));
1414
Harald Welte02da3182011-03-06 19:26:11 +01001415 abis_om2k_msg_tlv_parse(&tp, o2h);
1416 if (!TLVP_PRESENT(&tp, OM2K_DEI_ACCORDANCE_IND))
1417 return -EIO;
1418
1419 acc = *TLVP_VAL(&tp, OM2K_DEI_ACCORDANCE_IND);
1420
1421 switch (acc) {
1422 case 0:
1423 log_level = LOGL_DEBUG;
1424 ret = 0;
1425 break;
1426 default:
1427 log_level = LOGL_ERROR;
1428 ret = -EINVAL;
1429 break;
1430 }
1431
1432 LOGP(DNM, log_level, "Rx MO=%s %s, Accordance: %s\n",
1433 om2k_mo_name(&o2h->mo),
1434 get_value_string(om2k_msgcode_vals, msg_type),
1435 get_value_string(om2k_accordance_strings, acc));
1436
Harald Weltee235c012011-03-06 23:20:28 +01001437 nsd.bts = bts;
1438 nsd.obj = mo2obj(bts, &o2h->mo);
1439 nsd.om2k_mo = &o2h->mo;
1440 nsd.accordance_ind = acc;
Pablo Neira Ayusoef717c62011-05-06 12:12:31 +02001441 osmo_signal_dispatch(SS_NM, S_NM_OM2K_CONF_RES, &nsd);
Harald Weltee235c012011-03-06 23:20:28 +01001442
Harald Welte02da3182011-03-06 19:26:11 +01001443 return ret;
1444}
1445
1446static int process_mo_state(struct gsm_bts *bts, struct msgb *msg)
1447{
1448 struct abis_om2k_hdr *o2h = msgb_l2(msg);
1449 uint16_t msg_type = ntohs(o2h->msg_type);
1450 struct tlv_parsed tp;
1451 uint8_t mo_state;
1452
1453 abis_om2k_msg_tlv_parse(&tp, o2h);
1454 if (!TLVP_PRESENT(&tp, OM2K_DEI_MO_STATE))
1455 return -EIO;
1456 mo_state = *TLVP_VAL(&tp, OM2K_DEI_MO_STATE);
1457
1458 LOGP(DNM, LOGL_DEBUG, "Rx MO=%s %s, MO State: %s\n",
1459 om2k_mo_name(&o2h->mo),
1460 get_value_string(om2k_msgcode_vals, msg_type),
1461 get_value_string(om2k_mostate_vals, mo_state));
1462
Harald Weltea348c082011-03-06 21:20:38 +01001463 update_mo_state(bts, &o2h->mo, mo_state);
1464
Harald Welte02da3182011-03-06 19:26:11 +01001465 return 0;
1466}
1467
Harald Welte2a0a9632011-02-12 12:33:06 +01001468int abis_om2k_rcvmsg(struct msgb *msg)
1469{
Pablo Neira Ayuso88c9bba2011-08-17 22:43:54 +02001470 struct e1inp_sign_link *sign_link = (struct e1inp_sign_link *)msg->dst;
1471 struct gsm_bts *bts = sign_link->trx->bts;
Harald Welte2a0a9632011-02-12 12:33:06 +01001472 struct abis_om2k_hdr *o2h = msgb_l2(msg);
1473 struct abis_om_hdr *oh = &o2h->om;
Harald Welte8f909d52011-02-12 13:09:38 +01001474 uint16_t msg_type = ntohs(o2h->msg_type);
Harald Welte2a0a9632011-02-12 12:33:06 +01001475 int rc = 0;
1476
1477 /* Various consistency checks */
1478 if (oh->placement != ABIS_OM_PLACEMENT_ONLY) {
1479 LOGP(DNM, LOGL_ERROR, "ABIS OML placement 0x%x not supported\n",
1480 oh->placement);
1481 if (oh->placement != ABIS_OM_PLACEMENT_FIRST)
1482 return -EINVAL;
1483 }
1484 if (oh->sequence != 0) {
1485 LOGP(DNM, LOGL_ERROR, "ABIS OML sequence 0x%x != 0x00\n",
1486 oh->sequence);
1487 return -EINVAL;
1488 }
1489
1490 msg->l3h = (unsigned char *)o2h + sizeof(*o2h);
1491
1492 if (oh->mdisc != ABIS_OM_MDISC_FOM) {
1493 LOGP(DNM, LOGL_ERROR, "unknown ABIS OM2000 message discriminator 0x%x\n",
1494 oh->mdisc);
1495 return -EINVAL;
1496 }
1497
Harald Welte4f3644b2011-02-12 13:44:14 +01001498 DEBUGP(DNM, "Rx MO=%s %s (%s)\n", om2k_mo_name(&o2h->mo),
Harald Welte8f909d52011-02-12 13:09:38 +01001499 get_value_string(om2k_msgcode_vals, msg_type),
Pablo Neira Ayusob1d5a692011-05-07 12:12:48 +02001500 osmo_hexdump(msg->l2h, msgb_l2len(msg)));
Harald Welte2a0a9632011-02-12 12:33:06 +01001501
Harald Welte8f909d52011-02-12 13:09:38 +01001502 switch (msg_type) {
Harald Welte2a0a9632011-02-12 12:33:06 +01001503 case OM2K_MSGT_CAL_TIME_REQ:
1504 rc = abis_om2k_cal_time_resp(bts);
1505 break;
1506 case OM2K_MSGT_FAULT_REP:
Harald Welte2a0a9632011-02-12 12:33:06 +01001507 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_FAULT_REP_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001508 process_mo_state(bts, msg);
Harald Welte2a0a9632011-02-12 12:33:06 +01001509 break;
1510 case OM2K_MSGT_NEGOT_REQ:
1511 rc = om2k_rx_negot_req(msg);
1512 break;
1513 case OM2K_MSGT_START_RES:
1514 rc = om2k_rx_start_res(msg);
Harald Weltee235c012011-03-06 23:20:28 +01001515 process_mo_state(bts, msg);
Harald Welte2a0a9632011-02-12 12:33:06 +01001516 break;
Harald Welte6d5a0392011-02-12 18:48:53 +01001517 case OM2K_MSGT_OP_INFO_ACK:
1518 rc = om2k_rx_op_info_ack(msg);
Harald Welte2a0a9632011-02-12 12:33:06 +01001519 break;
1520 case OM2K_MSGT_IS_CONF_RES:
1521 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_IS_CONF_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001522 process_conf_res(bts, msg);
Harald Welte2a0a9632011-02-12 12:33:06 +01001523 break;
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001524 case OM2K_MSGT_CON_CONF_RES:
1525 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_CON_CONF_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001526 process_conf_res(bts, msg);
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001527 break;
Harald Welte00585d92011-03-05 14:13:14 +01001528 case OM2K_MSGT_TX_CONF_RES:
1529 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_TX_CONF_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001530 process_conf_res(bts, msg);
Harald Welte00585d92011-03-05 14:13:14 +01001531 break;
1532 case OM2K_MSGT_RX_CONF_RES:
1533 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_RX_CONF_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001534 process_conf_res(bts, msg);
Harald Welte00585d92011-03-05 14:13:14 +01001535 break;
1536 case OM2K_MSGT_TS_CONF_RES:
1537 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_TS_CONF_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001538 process_conf_res(bts, msg);
Harald Welte00585d92011-03-05 14:13:14 +01001539 break;
Harald Welte429bed02011-03-05 14:36:47 +01001540 case OM2K_MSGT_TF_CONF_RES:
1541 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_TF_CONF_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001542 process_conf_res(bts, msg);
Harald Welte429bed02011-03-05 14:36:47 +01001543 break;
Harald Welte2a0a9632011-02-12 12:33:06 +01001544 case OM2K_MSGT_CONNECT_COMPL:
1545 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_RESET_CMD);
1546 break;
1547 case OM2K_MSGT_RESET_COMPL:
1548 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_START_REQ);
1549 break;
Harald Welte252748a2011-02-13 12:43:44 +01001550 case OM2K_MSGT_ENABLE_RES:
1551 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_ENABLE_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001552 process_mo_state(bts, msg);
Harald Welte252748a2011-02-13 12:43:44 +01001553 break;
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001554 case OM2K_MSGT_DISABLE_RES:
1555 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_DISABLE_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001556 process_mo_state(bts, msg);
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001557 break;
1558 case OM2K_MSGT_TEST_RES:
1559 rc = abis_om2k_tx_simple(bts, &o2h->mo, OM2K_MSGT_TEST_RES_ACK);
Harald Weltee235c012011-03-06 23:20:28 +01001560 process_mo_state(bts, msg);
Harald Welte2a0a9632011-02-12 12:33:06 +01001561 break;
Harald Welte6d5a0392011-02-12 18:48:53 +01001562 case OM2K_MSGT_STATUS_RESP:
Harald Welte02da3182011-03-06 19:26:11 +01001563 process_mo_state(bts, msg);
Harald Welte6d5a0392011-02-12 18:48:53 +01001564 break;
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001565 case OM2K_MSGT_START_REQ_ACK:
1566 case OM2K_MSGT_CON_CONF_REQ_ACK:
1567 case OM2K_MSGT_IS_CONF_REQ_ACK:
Harald Welte00585d92011-03-05 14:13:14 +01001568 case OM2K_MSGT_TX_CONF_REQ_ACK:
1569 case OM2K_MSGT_RX_CONF_REQ_ACK:
1570 case OM2K_MSGT_TS_CONF_REQ_ACK:
Harald Welte429bed02011-03-05 14:36:47 +01001571 case OM2K_MSGT_TF_CONF_REQ_ACK:
Harald Weltef5dbc3c2011-02-14 15:31:43 +01001572 case OM2K_MSGT_ENABLE_REQ_ACK:
1573 case OM2K_MSGT_ALARM_STATUS_REQ_ACK:
1574 case OM2K_MSGT_DISABLE_REQ_ACK:
1575 break;
Harald Weltee1f8de42011-03-05 17:52:09 +01001576 case OM2K_MSGT_START_REQ_REJ:
Harald Welteaf92c402011-03-05 17:58:13 +01001577 case OM2K_MSGT_CONNECT_REJ:
Harald Welte902f8722011-03-05 19:42:16 +01001578 case OM2K_MSGT_OP_INFO_REJ:
Harald Welteaf92c402011-03-05 17:58:13 +01001579 case OM2K_MSGT_DISCONNECT_REJ:
Harald Welte902f8722011-03-05 19:42:16 +01001580 case OM2K_MSGT_TEST_REQ_REJ:
Harald Weltee1f8de42011-03-05 17:52:09 +01001581 case OM2K_MSGT_CON_CONF_REQ_REJ:
1582 case OM2K_MSGT_IS_CONF_REQ_REJ:
1583 case OM2K_MSGT_TX_CONF_REQ_REJ:
1584 case OM2K_MSGT_RX_CONF_REQ_REJ:
1585 case OM2K_MSGT_TS_CONF_REQ_REJ:
1586 case OM2K_MSGT_TF_CONF_REQ_REJ:
1587 case OM2K_MSGT_ENABLE_REQ_REJ:
1588 case OM2K_MSGT_ALARM_STATUS_REQ_REJ:
1589 case OM2K_MSGT_DISABLE_REQ_REJ:
1590 rc = om2k_rx_nack(msg);
1591 break;
Harald Welte2a0a9632011-02-12 12:33:06 +01001592 default:
Harald Welte6d5a0392011-02-12 18:48:53 +01001593 LOGP(DNM, LOGL_NOTICE, "Rx unhandled OM2000 msg %s\n",
Harald Welte8f909d52011-02-12 13:09:38 +01001594 get_value_string(om2k_msgcode_vals, msg_type));
Harald Welte2a0a9632011-02-12 12:33:06 +01001595 }
1596
1597 msgb_free(msg);
1598 return rc;
1599}