blob: cf2481de75e604a8a4b2622c961d89206556c3f0 [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 Freyther9e21d842013-10-16 17:48:12 +020025/*
26 * TBF instance
27 */
28
29#define LLC_MAX_LEN 1543
30#define RLC_MAX_SNS 128 /* GPRS, must be power of 2 */
31#define RLC_MAX_WS 64 /* max window size */
32#define RLC_MAX_LEN 54 /* CS-4 including spare bits */
33
34#define Tassign_agch 0,200000 /* waiting after IMM.ASS confirm */
35#define Tassign_pacch 2,0 /* timeout for pacch assigment */
36
37enum gprs_rlcmac_tbf_state {
38 GPRS_RLCMAC_NULL = 0, /* new created TBF */
39 GPRS_RLCMAC_ASSIGN, /* wait for downlink assignment */
40 GPRS_RLCMAC_FLOW, /* RLC/MAC flow, resource needed */
41 GPRS_RLCMAC_FINISHED, /* flow finished, wait for release */
42 GPRS_RLCMAC_WAIT_RELEASE,/* wait for release or restart of DL TBF */
43 GPRS_RLCMAC_RELEASING, /* releasing, wait to free TBI/USF */
44};
45
46enum gprs_rlcmac_tbf_poll_state {
47 GPRS_RLCMAC_POLL_NONE = 0,
48 GPRS_RLCMAC_POLL_SCHED, /* a polling was scheduled */
49};
50
51enum gprs_rlcmac_tbf_dl_ass_state {
52 GPRS_RLCMAC_DL_ASS_NONE = 0,
53 GPRS_RLCMAC_DL_ASS_SEND_ASS, /* send downlink assignment on next RTS */
54 GPRS_RLCMAC_DL_ASS_WAIT_ACK, /* wait for PACKET CONTROL ACK */
55};
56
57enum gprs_rlcmac_tbf_ul_ass_state {
58 GPRS_RLCMAC_UL_ASS_NONE = 0,
59 GPRS_RLCMAC_UL_ASS_SEND_ASS, /* send uplink assignment on next RTS */
60 GPRS_RLCMAC_UL_ASS_WAIT_ACK, /* wait for PACKET CONTROL ACK */
61};
62
63enum gprs_rlcmac_tbf_ul_ack_state {
64 GPRS_RLCMAC_UL_ACK_NONE = 0,
65 GPRS_RLCMAC_UL_ACK_SEND_ACK, /* send acknowledge on next RTS */
66 GPRS_RLCMAC_UL_ACK_WAIT_ACK, /* wait for PACKET CONTROL ACK */
67};
68
69enum gprs_rlcmac_tbf_direction {
70 GPRS_RLCMAC_DL_TBF,
71 GPRS_RLCMAC_UL_TBF
72};
73
74#define GPRS_RLCMAC_FLAG_CCCH 0 /* assignment on CCCH */
75#define GPRS_RLCMAC_FLAG_PACCH 1 /* assignment on PACCH */
76#define GPRS_RLCMAC_FLAG_UL_DATA 2 /* uplink data received */
77#define GPRS_RLCMAC_FLAG_DL_ACK 3 /* downlink acknowledge received */
78#define GPRS_RLCMAC_FLAG_TO_UL_ACK 4
79#define GPRS_RLCMAC_FLAG_TO_DL_ACK 5
80#define GPRS_RLCMAC_FLAG_TO_UL_ASS 6
81#define GPRS_RLCMAC_FLAG_TO_DL_ASS 7
82#define GPRS_RLCMAC_FLAG_TO_MASK 0xf0 /* timeout bits */
83
84extern struct llist_head gprs_rlcmac_ul_tbfs; /* list of uplink TBFs */
85extern struct llist_head gprs_rlcmac_dl_tbfs; /* list of downlink TBFs */
86extern struct llist_head gprs_rlcmac_sbas; /* list of single block allocs */
87
88
Holger Hans Peter Freyther099535a2013-10-16 17:42:31 +020089struct gprs_rlcmac_tbf {
90 struct llist_head list;
91 enum gprs_rlcmac_tbf_state state;
92 uint32_t state_flags;
93 enum gprs_rlcmac_tbf_direction direction;
94 uint8_t tfi;
95 uint32_t tlli;
96 uint8_t tlli_valid;
97 uint8_t trx;
98 uint16_t arfcn;
99 uint8_t tsc;
100 uint8_t first_ts; /* first TS used by TBF */
101 uint8_t first_common_ts; /* first TS that the phone can send and
102 reveive simultaniously */
103 uint8_t control_ts; /* timeslot control messages and polling */
104 uint8_t ms_class;
105 struct gprs_rlcmac_pdch *pdch[8]; /* list of PDCHs allocated to TBF */
106 uint16_t ta;
107 uint8_t llc_frame[LLC_MAX_LEN]; /* current DL or UL frame */
108 uint16_t llc_index; /* current write/read position of frame */
109 uint16_t llc_length; /* len of current DL LLC_frame, 0 == no frame */
110 struct llist_head llc_queue; /* queued LLC DL data */
111
112 enum gprs_rlcmac_tbf_dl_ass_state dl_ass_state;
113 enum gprs_rlcmac_tbf_ul_ass_state ul_ass_state;
114 enum gprs_rlcmac_tbf_ul_ack_state ul_ack_state;
115
116 enum gprs_rlcmac_tbf_poll_state poll_state;
117 uint32_t poll_fn; /* frame number to poll */
118
119 uint16_t ws; /* window size */
120 uint16_t sns; /* sequence number space */
121
122 /* Please note that all variables here will be reset when changing
123 * from WAIT RELEASE back to FLOW state (re-use of TBF).
124 * All states that need reset must be in this struct, so this is why
125 * variables are in both (dl and ul) structs and not outside union.
126 */
127 union {
128 struct {
129 uint16_t bsn; /* block sequence number */
130 uint16_t v_s; /* send state */
131 uint16_t v_a; /* ack state */
132 char v_b[RLC_MAX_SNS/2]; /* acknowledge state array */
133 int32_t tx_counter; /* count all transmitted blocks */
134 char imsi[16]; /* store IMSI for PCH retransmission */
135 uint8_t wait_confirm; /* wait for CCCH IMM.ASS cnf */
136 } dl;
137 struct {
138 uint16_t bsn; /* block sequence number */
139 uint16_t v_r; /* receive state */
140 uint16_t v_q; /* receive window state */
141 char v_n[RLC_MAX_SNS/2]; /* receive state array */
142 int32_t rx_counter; /* count all received blocks */
143 uint8_t n3103; /* N3103 counter */
144 uint8_t usf[8]; /* list USFs per PDCH (timeslot) */
145 uint8_t contention_resolution_done; /* set after done */
146 uint8_t final_ack_sent; /* set if we sent final ack */
147 } ul;
148 } dir;
149 uint8_t rlc_block[RLC_MAX_SNS/2][RLC_MAX_LEN]; /* block history */
150 uint8_t rlc_block_len[RLC_MAX_SNS/2]; /* block len of history */
151
152 uint8_t n3105; /* N3105 counter */
153
154 struct osmo_timer_list timer;
155 unsigned int T; /* Txxxx number */
156 unsigned int num_T_exp; /* number of consecutive T expirations */
157
158 struct osmo_gsm_timer_list gsm_timer;
159 unsigned int fT; /* fTxxxx number */
160 unsigned int num_fT_exp; /* number of consecutive fT expirations */
161
162 struct {
163 char imsi[16];
164
165 struct timeval dl_bw_tv; /* timestamp for dl bw calculation */
166 uint32_t dl_bw_octets; /* number of octets since bw_tv */
167
168 struct timeval rssi_tv; /* timestamp for rssi calculation */
169 int32_t rssi_sum; /* sum of rssi values */
170 int rssi_num; /* number of rssi values added since rssi_tv */
171
172 struct timeval dl_loss_tv; /* timestamp for loss calculation */
173 uint16_t dl_loss_lost; /* sum of lost packets */
174 uint16_t dl_loss_received; /* sum of received packets */
175
176 } meas;
177
178 uint8_t cs; /* current coding scheme */
179
180#ifdef DEBUG_DIAGRAM
181 int diag; /* number where TBF is presented in diagram */
182 int diag_new; /* used to format output of new TBF */
183#endif
184};
185
Holger Hans Peter Freyther17c31ce2013-08-24 18:31:27 +0200186
Holger Hans Peter Freyther86921282013-08-24 21:26:42 +0200187/* dispatch Unitdata.DL messages */
Holger Hans Peter Freyther17c31ce2013-08-24 18:31:27 +0200188int tbf_handle(struct gprs_rlcmac_bts *bts,
189 const uint32_t tlli, const char *imsi, const uint8_t ms_class,
190 const uint16_t delay_csec, const uint8_t *data, const uint16_t len);
Holger Hans Peter Freyther86921282013-08-24 21:26:42 +0200191
192struct gprs_rlcmac_tbf *tbf_alloc_ul(struct gprs_rlcmac_bts *bts,
193 int8_t use_trx, uint8_t ms_class,
194 uint32_t tlli, uint8_t ta, struct gprs_rlcmac_tbf *dl_tbf);
Holger Hans Peter Freyther9e21d842013-10-16 17:48:12 +0200195
196int tfi_find_free(struct gprs_rlcmac_bts *bts, enum gprs_rlcmac_tbf_direction dir,
197 uint8_t *_trx, int8_t use_trx);
198
199struct gprs_rlcmac_tbf *tbf_alloc(struct gprs_rlcmac_bts *bts,
200 struct gprs_rlcmac_tbf *old_tbf,
201 enum gprs_rlcmac_tbf_direction dir, uint8_t tfi, uint8_t trx,
202 uint8_t ms_class, uint8_t single_slot);
203
204struct gprs_rlcmac_tbf *tbf_by_tfi(struct gprs_rlcmac_bts *bts,
205 uint8_t tfi, uint8_t trx,
206 enum gprs_rlcmac_tbf_direction dir);
207
208struct gprs_rlcmac_tbf *tbf_by_tlli(uint32_t tlli,
209 enum gprs_rlcmac_tbf_direction dir);
210
211struct gprs_rlcmac_tbf *tbf_by_poll_fn(uint32_t fn, uint8_t trx, uint8_t ts);
212
213void tbf_free(struct gprs_rlcmac_tbf *tbf);
214
215int tbf_update(struct gprs_rlcmac_tbf *tbf);
216
217int tbf_assign_control_ts(struct gprs_rlcmac_tbf *tbf);
218
219void tbf_new_state(struct gprs_rlcmac_tbf *tbf,
220 enum gprs_rlcmac_tbf_state state);
221
222void tbf_timer_start(struct gprs_rlcmac_tbf *tbf, unsigned int T,
223 unsigned int seconds, unsigned int microseconds);
224
225void tbf_timer_stop(struct gprs_rlcmac_tbf *tbf);
226