blob: 3033973a31461dc43c46e8db849151209b94b7b4 [file] [log] [blame]
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +04001/* gprs_rlcmac.h
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version 2
8 * of the License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20#ifndef GPRS_RLCMAC_H
21#define GPRS_RLCMAC_H
22
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +040023#include <bitvector.h>
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040024#include <gsm_rlcmac.h>
Ivan Kluchnikov61a33f72012-04-12 15:22:06 +040025#include <gsm_timer.h>
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040026
27extern "C" {
28#include <osmocom/core/linuxlist.h>
Ivan Kluchnikov61a33f72012-04-12 15:22:06 +040029#include <osmocom/core/timer.h>
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040030}
31
Ivan Kluchnikovc5d8c272012-06-04 21:55:02 +040032#define LLC_MAX_LEN 1543
Ivan Kluchnikovbceb3fb2012-06-05 16:56:27 +040033#define UL_RLC_DATA_BLOCK_LEN 23
Ivan Kluchnikovc5d8c272012-06-04 21:55:02 +040034
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +040035enum gprs_rlcmac_tbf_stage {
36 TBF_ESTABLISH,
37 TBF_DATA_TRANSFER,
38 TBF_RELEASE
39};
40
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040041enum gprs_rlcmac_tbf_state {
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +040042 WAIT_ESTABLISH,
43 CCCH_ESTABLISH,
44 PACCH_ESTABLISH,
45 FINISH_ESTABLISH,
46 WAIT_DATA_TRANSFER,
47 DATA_TRANSFER,
48 FINISH_DATA_TRANSFER,
49 RELEASE
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040050};
51
52enum gprs_rlcmac_tbf_direction {
53 GPRS_RLCMAC_DL_TBF,
54 GPRS_RLCMAC_UL_TBF
55};
56
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +040057struct tbf_llc_pdu {
58 struct llist_head list;
59 uint8_t num;
60 uint8_t data[LLC_MAX_LEN];
61 uint16_t len;
62};
63
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040064struct gprs_rlcmac_tbf {
65 struct llist_head list;
66 enum gprs_rlcmac_tbf_state state;
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +040067 enum gprs_rlcmac_tbf_stage stage;
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040068 enum gprs_rlcmac_tbf_direction direction;
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +040069 struct gprs_rlcmac_tbf *next_tbf;
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040070 uint8_t tfi;
71 uint32_t tlli;
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +040072
73 struct llist_head llc_pdus;
74 struct tbf_llc_pdu llc_pdu;
75 uint8_t llc_pdu_list_len;
Ivan Kluchnikovc5d8c272012-06-04 21:55:02 +040076 uint8_t rlc_data[LLC_MAX_LEN];
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040077 uint16_t data_index;
78 uint8_t bsn;
Andreas Eversberg0aed6542012-06-23 10:33:16 +020079 uint8_t trx, ts, tsc;
80 uint16_t arfcn, ta;
Ivan Kluchnikov61a33f72012-04-12 15:22:06 +040081
82 struct osmo_timer_list timer;
83 unsigned int T; /* Txxxx number */
84 unsigned int num_T_exp; /* number of consecutive T expirations */
85
86 struct osmo_gsm_timer_list gsm_timer;
87 unsigned int fT; /* fTxxxx number */
88 unsigned int num_fT_exp; /* number of consecutive fT expirations */
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040089};
90
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040091/* TS 44.060 Section 10.4.7 Table 10.4.7.1: Payload Type field */
92enum gprs_rlcmac_block_type {
93 GPRS_RLCMAC_DATA_BLOCK = 0x0,
94 GPRS_RLCMAC_CONTROL_BLOCK = 0x1,
95 GPRS_RLCMAC_CONTROL_BLOCK_OPT = 0x2,
96 GPRS_RLCMAC_RESERVED = 0x3
97};
98
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +040099extern struct llist_head gprs_rlcmac_tbfs;
100
Ivan Kluchnikovcf7b3a52012-06-26 16:54:22 +0400101int select_pdch(uint8_t *_trx, uint8_t *_ts);
102
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +0400103int tfi_alloc();
104
105static struct gprs_rlcmac_tbf *tbf_by_tfi(uint8_t tfi, gprs_rlcmac_tbf_direction dir);
106
107static struct gprs_rlcmac_tbf *tbf_by_tlli(uint32_t tlli, gprs_rlcmac_tbf_direction dir);
108
109static void tbf_free(struct gprs_rlcmac_tbf *tbf);
110
111static struct tbf_llc_pdu *tbf_llc_pdu_by_num(struct llist_head llc_pdus, uint8_t num);
112
113int tbf_add_llc_pdu(struct gprs_rlcmac_tbf *tbf, uint8_t *data, uint16_t llc_pdu_len);
114
115struct gprs_rlcmac_tbf *tbf_alloc(gprs_rlcmac_tbf_direction dir, uint32_t tlli = 0);
116
Ivan Kluchnikovcf7b3a52012-06-26 16:54:22 +0400117int tbf_ul_establish(struct gprs_rlcmac_tbf *tbf, uint8_t ra, uint32_t Fn, uint16_t qta);
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +0400118
Ivan Kluchnikovbbbd79d2012-06-29 20:30:10 +0400119int tbf_dl_establish(struct gprs_rlcmac_tbf *tbf);
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +0400120
121int tbf_ul_data_transfer(struct gprs_rlcmac_tbf *tbf, RlcMacUplinkDataBlock_t * ul_data_block);
122
123int tbf_dl_data_transfer(struct gprs_rlcmac_tbf *tbf, uint8_t *llc_pdu = NULL, uint16_t llc_pdu_len = 0);
124
125int tbf_ul_release(struct gprs_rlcmac_tbf *tbf);
126
127int tbf_dl_release(struct gprs_rlcmac_tbf *tbf);
128
129static void tbf_timer_start(struct gprs_rlcmac_tbf *tbf, unsigned int T, unsigned int seconds);
130
131static void tbf_gsm_timer_start(struct gprs_rlcmac_tbf *tbf, unsigned int fT, int frames);
132
Ivan Kluchnikovcf7b3a52012-06-26 16:54:22 +0400133int write_immediate_assignment(bitvec * dest, uint8_t downlink, uint8_t ra, uint32_t fn, uint8_t ta, uint16_t arfcn, uint8_t ts, uint8_t tsc, uint8_t tfi, uint32_t tlli = 0);
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +0400134
Ivan Kluchnikov34460b82012-06-27 18:41:04 +0400135void gprs_rlcmac_tx_ul_ack(uint8_t tfi, uint32_t tlli, uint8_t ti, uint8_t bsn);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400136
137void gprs_rlcmac_data_block_parse(gprs_rlcmac_tbf* tbf, RlcMacUplinkDataBlock_t * ul_data_block);
138
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400139int gprs_rlcmac_rcv_data_block(bitvec *rlc_block);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400140
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400141int gprs_rlcmac_rcv_control_block(bitvec *rlc_block);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400142
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +0400143void gprs_rlcmac_rcv_block(bitvec *rlc_block);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400144
Andreas Eversberg0aed6542012-06-23 10:33:16 +0200145void gprs_rlcmac_rcv_rts_block(uint8_t trx, uint8_t ts, uint16_t arfcn,
146 uint32_t fn, uint8_t block_nr);
147
148int gprs_rlcmac_rcv_rach(uint8_t ra, uint32_t Fn, int16_t qta);
Ivan Kluchnikov5310d452012-04-17 22:00:31 +0400149
Ivan Kluchnikova9e6dc52012-06-17 08:30:06 +0400150int gprs_rlcmac_tx_llc_pdus(struct gprs_rlcmac_tbf *tbf);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400151
152void gprs_rlcmac_tx_ul_ud(gprs_rlcmac_tbf *tbf);
153
Ivan Kluchnikovc320d862012-03-18 15:04:48 +0400154void gprs_rlcmac_downlink_assignment(gprs_rlcmac_tbf *tbf);
155
Ivan Kluchnikov9c795ab2012-05-24 23:12:59 +0400156void gprs_rlcmac_packet_downlink_assignment(gprs_rlcmac_tbf *tbf);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400157#endif // GPRS_RLCMAC_H