blob: 2140db43b777b63da739c1b3f86c0e4005152a5c [file] [log] [blame]
Andreas Eversbergbbf90342011-10-28 03:55:37 +02001#ifndef _GSM0411_SMC_H
2#define _GSM0411_SMC_H
3
Holger Hans Peter Freytherd38e0ef2012-11-13 22:28:05 +01004#include <osmocom/core/timer.h>
Andreas Eversbergbbf90342011-10-28 03:55:37 +02005#include <osmocom/gsm/protocol/gsm_04_11.h>
6
7#define GSM411_MMSMS_EST_REQ 0x310
8#define GSM411_MMSMS_EST_IND 0x312
9#define GSM411_MMSMS_EST_CNF 0x311
10#define GSM411_MMSMS_REL_REQ 0x320
11#define GSM411_MMSMS_REL_IND 0x322
12#define GSM411_MMSMS_DATA_REQ 0x330
13#define GSM411_MMSMS_DATA_IND 0x332
14#define GSM411_MMSMS_UNIT_DATA_REQ 0x340
15#define GSM411_MMSMS_UNIT_DATA_IND 0x342
16#define GSM411_MMSMS_ERR_IND 0x372
17
18#define GSM411_MNSMS_ABORT_REQ 0x101
19#define GSM411_MNSMS_DATA_REQ 0x102
20#define GSM411_MNSMS_DATA_IND 0x103
21#define GSM411_MNSMS_EST_REQ 0x104
22#define GSM411_MNSMS_EST_IND 0x105
23#define GSM411_MNSMS_ERROR_IND 0x106
24#define GSM411_MNSMS_REL_REQ 0x107
25
26struct gsm411_smc_inst {
27 int network; /* is this a MO (0) or MT (1) transfer */
28 int (*mn_recv) (struct gsm411_smc_inst *inst, int msg_type,
29 struct msgb *msg);
30 int (*mm_send) (struct gsm411_smc_inst *inst, int msg_type,
31 struct msgb *msg, int cp_msg_type);
32
33 enum gsm411_cp_state cp_state;
34 struct osmo_timer_list cp_timer;
35 struct msgb *cp_msg; /* store pending message */
36 int cp_rel; /* store pending release */
37 int cp_retx; /* retry counter */
38 int cp_max_retr; /* maximum retry */
39 int cp_tc1; /* timer value TC1* */
40
41};
42
43extern const struct value_string gsm411_cp_cause_strs[];
44
45/* init a new instance */
46void gsm411_smc_init(struct gsm411_smc_inst *inst, int network,
47 int (*mn_recv) (struct gsm411_smc_inst *inst, int msg_type,
48 struct msgb *msg),
49 int (*mm_send) (struct gsm411_smc_inst *inst, int msg_type,
50 struct msgb *msg, int cp_msg_type));
51
52/* clear instance */
53void gsm411_smc_clear(struct gsm411_smc_inst *inst);
54
55/* message from upper layer */
56int gsm411_smc_send(struct gsm411_smc_inst *inst, int msg_type,
57 struct msgb *msg);
58
59/* message from lower layer */
60int gsm411_smc_recv(struct gsm411_smc_inst *inst, int msg_type,
61 struct msgb *msg, int cp_msg_type);
62
63#endif /* _GSM0411_SMC_H */