blob: 0441096f8723b3c0a8982b74a9e6cbafe5a5fd35 [file] [log] [blame]
Holger Hans Peter Freyther17c31ce2013-08-24 18:31:27 +02001/*
2 * Copyright (C) 2013 by Holger Hans Peter Freyther
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19#pragma once
20
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +020021#include "gprs_rlcmac.h"
22
Holger Hans Peter Freyther17c31ce2013-08-24 18:31:27 +020023#include <stdint.h>
24
Holger Hans Peter Freyther1702f102013-10-20 08:44:02 +020025struct bssgp_bvc_ctx;
26
Holger Hans Peter Freyther9e21d842013-10-16 17:48:12 +020027/*
28 * TBF instance
29 */
30
31#define LLC_MAX_LEN 1543
32#define RLC_MAX_SNS 128 /* GPRS, must be power of 2 */
33#define RLC_MAX_WS 64 /* max window size */
34#define RLC_MAX_LEN 54 /* CS-4 including spare bits */
35
36#define Tassign_agch 0,200000 /* waiting after IMM.ASS confirm */
37#define Tassign_pacch 2,0 /* timeout for pacch assigment */
38
39enum gprs_rlcmac_tbf_state {
40 GPRS_RLCMAC_NULL = 0, /* new created TBF */
41 GPRS_RLCMAC_ASSIGN, /* wait for downlink assignment */
42 GPRS_RLCMAC_FLOW, /* RLC/MAC flow, resource needed */
43 GPRS_RLCMAC_FINISHED, /* flow finished, wait for release */
44 GPRS_RLCMAC_WAIT_RELEASE,/* wait for release or restart of DL TBF */
45 GPRS_RLCMAC_RELEASING, /* releasing, wait to free TBI/USF */
46};
47
48enum gprs_rlcmac_tbf_poll_state {
49 GPRS_RLCMAC_POLL_NONE = 0,
50 GPRS_RLCMAC_POLL_SCHED, /* a polling was scheduled */
51};
52
53enum gprs_rlcmac_tbf_dl_ass_state {
54 GPRS_RLCMAC_DL_ASS_NONE = 0,
55 GPRS_RLCMAC_DL_ASS_SEND_ASS, /* send downlink assignment on next RTS */
56 GPRS_RLCMAC_DL_ASS_WAIT_ACK, /* wait for PACKET CONTROL ACK */
57};
58
59enum gprs_rlcmac_tbf_ul_ass_state {
60 GPRS_RLCMAC_UL_ASS_NONE = 0,
61 GPRS_RLCMAC_UL_ASS_SEND_ASS, /* send uplink assignment on next RTS */
62 GPRS_RLCMAC_UL_ASS_WAIT_ACK, /* wait for PACKET CONTROL ACK */
63};
64
65enum gprs_rlcmac_tbf_ul_ack_state {
66 GPRS_RLCMAC_UL_ACK_NONE = 0,
67 GPRS_RLCMAC_UL_ACK_SEND_ACK, /* send acknowledge on next RTS */
68 GPRS_RLCMAC_UL_ACK_WAIT_ACK, /* wait for PACKET CONTROL ACK */
69};
70
71enum gprs_rlcmac_tbf_direction {
72 GPRS_RLCMAC_DL_TBF,
73 GPRS_RLCMAC_UL_TBF
74};
75
76#define GPRS_RLCMAC_FLAG_CCCH 0 /* assignment on CCCH */
77#define GPRS_RLCMAC_FLAG_PACCH 1 /* assignment on PACCH */
78#define GPRS_RLCMAC_FLAG_UL_DATA 2 /* uplink data received */
79#define GPRS_RLCMAC_FLAG_DL_ACK 3 /* downlink acknowledge received */
80#define GPRS_RLCMAC_FLAG_TO_UL_ACK 4
81#define GPRS_RLCMAC_FLAG_TO_DL_ACK 5
82#define GPRS_RLCMAC_FLAG_TO_UL_ASS 6
83#define GPRS_RLCMAC_FLAG_TO_DL_ASS 7
84#define GPRS_RLCMAC_FLAG_TO_MASK 0xf0 /* timeout bits */
85
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +020086struct gprs_rlcmac_tbf {
Holger Hans Peter Freyther964ddb62013-10-16 17:53:23 +020087
88 static void free_all(struct gprs_rlcmac_trx *trx);
Holger Hans Peter Freyther4f6a4e5d2013-10-16 17:58:46 +020089 static void free_all(struct gprs_rlcmac_pdch *pdch);
Holger Hans Peter Freyther964ddb62013-10-16 17:53:23 +020090
Holger Hans Peter Freyther1c344e22013-10-16 18:33:18 +020091 bool state_is(enum gprs_rlcmac_tbf_state rhs) const;
92 bool state_is_not(enum gprs_rlcmac_tbf_state rhs) const;
93 void set_state(enum gprs_rlcmac_tbf_state new_state);
94
Holger Hans Peter Freyther1702f102013-10-20 08:44:02 +020095 /* TODO: add the gettimeofday as parameter */
96 struct msgb *llc_dequeue(bssgp_bvc_ctx *bctx);
97 void update_llc_frame(struct msgb *msg);
98
Holger Hans Peter Freyther7380bab2013-10-16 18:09:19 +020099 int rlcmac_diag();
Holger Hans Peter Freyther964ddb62013-10-16 17:53:23 +0200100
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +0200101 struct llist_head list;
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +0200102 uint32_t state_flags;
103 enum gprs_rlcmac_tbf_direction direction;
104 uint8_t tfi;
105 uint32_t tlli;
106 uint8_t tlli_valid;
Holger Hans Peter Freyther743bafa2013-09-29 07:50:50 +0200107 struct gprs_rlcmac_trx *trx;
Holger Hans Peter Freyther96efa702013-09-29 07:44:39 +0200108 uint8_t trx_no;
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +0200109 uint16_t arfcn;
110 uint8_t tsc;
111 uint8_t first_ts; /* first TS used by TBF */
112 uint8_t first_common_ts; /* first TS that the phone can send and
113 reveive simultaniously */
114 uint8_t control_ts; /* timeslot control messages and polling */
115 uint8_t ms_class;
116 struct gprs_rlcmac_pdch *pdch[8]; /* list of PDCHs allocated to TBF */
117 uint16_t ta;
118 uint8_t llc_frame[LLC_MAX_LEN]; /* current DL or UL frame */
119 uint16_t llc_index; /* current write/read position of frame */
120 uint16_t llc_length; /* len of current DL LLC_frame, 0 == no frame */
121 struct llist_head llc_queue; /* queued LLC DL data */
122
123 enum gprs_rlcmac_tbf_dl_ass_state dl_ass_state;
124 enum gprs_rlcmac_tbf_ul_ass_state ul_ass_state;
125 enum gprs_rlcmac_tbf_ul_ack_state ul_ack_state;
126
127 enum gprs_rlcmac_tbf_poll_state poll_state;
128 uint32_t poll_fn; /* frame number to poll */
129
130 uint16_t ws; /* window size */
131 uint16_t sns; /* sequence number space */
132
133 /* Please note that all variables here will be reset when changing
134 * from WAIT RELEASE back to FLOW state (re-use of TBF).
135 * All states that need reset must be in this struct, so this is why
136 * variables are in both (dl and ul) structs and not outside union.
137 */
138 union {
139 struct {
140 uint16_t bsn; /* block sequence number */
141 uint16_t v_s; /* send state */
142 uint16_t v_a; /* ack state */
143 char v_b[RLC_MAX_SNS/2]; /* acknowledge state array */
144 int32_t tx_counter; /* count all transmitted blocks */
145 char imsi[16]; /* store IMSI for PCH retransmission */
146 uint8_t wait_confirm; /* wait for CCCH IMM.ASS cnf */
147 } dl;
148 struct {
149 uint16_t bsn; /* block sequence number */
150 uint16_t v_r; /* receive state */
151 uint16_t v_q; /* receive window state */
152 char v_n[RLC_MAX_SNS/2]; /* receive state array */
153 int32_t rx_counter; /* count all received blocks */
154 uint8_t n3103; /* N3103 counter */
155 uint8_t usf[8]; /* list USFs per PDCH (timeslot) */
156 uint8_t contention_resolution_done; /* set after done */
157 uint8_t final_ack_sent; /* set if we sent final ack */
158 } ul;
159 } dir;
160 uint8_t rlc_block[RLC_MAX_SNS/2][RLC_MAX_LEN]; /* block history */
161 uint8_t rlc_block_len[RLC_MAX_SNS/2]; /* block len of history */
162
163 uint8_t n3105; /* N3105 counter */
164
165 struct osmo_timer_list timer;
166 unsigned int T; /* Txxxx number */
167 unsigned int num_T_exp; /* number of consecutive T expirations */
168
169 struct osmo_gsm_timer_list gsm_timer;
170 unsigned int fT; /* fTxxxx number */
171 unsigned int num_fT_exp; /* number of consecutive fT expirations */
172
173 struct {
174 char imsi[16];
175
176 struct timeval dl_bw_tv; /* timestamp for dl bw calculation */
177 uint32_t dl_bw_octets; /* number of octets since bw_tv */
178
179 struct timeval rssi_tv; /* timestamp for rssi calculation */
180 int32_t rssi_sum; /* sum of rssi values */
181 int rssi_num; /* number of rssi values added since rssi_tv */
182
183 struct timeval dl_loss_tv; /* timestamp for loss calculation */
184 uint16_t dl_loss_lost; /* sum of lost packets */
185 uint16_t dl_loss_received; /* sum of received packets */
186
187 } meas;
188
189 uint8_t cs; /* current coding scheme */
190
191#ifdef DEBUG_DIAGRAM
192 int diag; /* number where TBF is presented in diagram */
193 int diag_new; /* used to format output of new TBF */
194#endif
Holger Hans Peter Freyther1c344e22013-10-16 18:33:18 +0200195
196 /* these should become protected but only after gprs_rlcmac_data.c
197 * stops to iterate over all tbf in its current form */
198 enum gprs_rlcmac_tbf_state state;
Holger Hans Peter Freyther9f0c1d22013-10-19 21:24:34 +0200199
200 /* store the BTS this TBF belongs to */
201 BTS *bts;
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +0200202};
203
Holger Hans Peter Freyther17c31ce2013-08-24 18:31:27 +0200204
Holger Hans Peter Freyther86921282013-08-24 21:26:42 +0200205/* dispatch Unitdata.DL messages */
Holger Hans Peter Freyther17c31ce2013-08-24 18:31:27 +0200206int tbf_handle(struct gprs_rlcmac_bts *bts,
207 const uint32_t tlli, const char *imsi, const uint8_t ms_class,
208 const uint16_t delay_csec, const uint8_t *data, const uint16_t len);
Holger Hans Peter Freyther86921282013-08-24 21:26:42 +0200209
210struct gprs_rlcmac_tbf *tbf_alloc_ul(struct gprs_rlcmac_bts *bts,
211 int8_t use_trx, uint8_t ms_class,
212 uint32_t tlli, uint8_t ta, struct gprs_rlcmac_tbf *dl_tbf);
Holger Hans Peter Freyther9e21d842013-10-16 17:48:12 +0200213
214int tfi_find_free(struct gprs_rlcmac_bts *bts, enum gprs_rlcmac_tbf_direction dir,
215 uint8_t *_trx, int8_t use_trx);
216
217struct gprs_rlcmac_tbf *tbf_alloc(struct gprs_rlcmac_bts *bts,
218 struct gprs_rlcmac_tbf *old_tbf,
219 enum gprs_rlcmac_tbf_direction dir, uint8_t tfi, uint8_t trx,
220 uint8_t ms_class, uint8_t single_slot);
221
222struct gprs_rlcmac_tbf *tbf_by_tfi(struct gprs_rlcmac_bts *bts,
223 uint8_t tfi, uint8_t trx,
224 enum gprs_rlcmac_tbf_direction dir);
225
Holger Hans Peter Freyther9e21d842013-10-16 17:48:12 +0200226void tbf_free(struct gprs_rlcmac_tbf *tbf);
227
Holger Hans Peter Freyther9f0c1d22013-10-19 21:24:34 +0200228int tbf_update(struct gprs_rlcmac_tbf *tbf);
Holger Hans Peter Freyther9e21d842013-10-16 17:48:12 +0200229
230int tbf_assign_control_ts(struct gprs_rlcmac_tbf *tbf);
231
232void tbf_new_state(struct gprs_rlcmac_tbf *tbf,
233 enum gprs_rlcmac_tbf_state state);
234
235void tbf_timer_start(struct gprs_rlcmac_tbf *tbf, unsigned int T,
236 unsigned int seconds, unsigned int microseconds);
237
238void tbf_timer_stop(struct gprs_rlcmac_tbf *tbf);
239
Holger Hans Peter Freyther7380bab2013-10-16 18:09:19 +0200240void tbf_timer_cb(void *_tbf);
241
Holger Hans Peter Freyther1c344e22013-10-16 18:33:18 +0200242
243inline bool gprs_rlcmac_tbf::state_is(enum gprs_rlcmac_tbf_state rhs) const
244{
245 return state == rhs;
246}
247
248inline bool gprs_rlcmac_tbf::state_is_not(enum gprs_rlcmac_tbf_state rhs) const
249{
250 return state != rhs;
251}
252
253inline void gprs_rlcmac_tbf::set_state(enum gprs_rlcmac_tbf_state new_state)
254{
255 state = new_state;
256}