blob: e9a5e7389de334d4e644e6f3b24a00c93ed0ef24 [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
32enum gprs_rlcmac_tbf_state {
33 GPRS_RLCMAC_WAIT_DATA_SEQ_START,
34 GPRS_RLCMAC_WAIT_NEXT_DATA_BLOCK,
35 GPRS_RLCMAC_WAIT_NEXT_DATA_SEQ
36};
37
38enum gprs_rlcmac_tbf_direction {
39 GPRS_RLCMAC_DL_TBF,
40 GPRS_RLCMAC_UL_TBF
41};
42
43struct gprs_rlcmac_tbf {
44 struct llist_head list;
45 enum gprs_rlcmac_tbf_state state;
46 enum gprs_rlcmac_tbf_direction direction;
47 uint8_t tfi;
48 uint32_t tlli;
49 uint8_t rlc_data[60];
50 uint16_t data_index;
51 uint8_t bsn;
Ivan Kluchnikov61a33f72012-04-12 15:22:06 +040052
53 struct osmo_timer_list timer;
54 unsigned int T; /* Txxxx number */
55 unsigned int num_T_exp; /* number of consecutive T expirations */
56
57 struct osmo_gsm_timer_list gsm_timer;
58 unsigned int fT; /* fTxxxx number */
59 unsigned int num_fT_exp; /* number of consecutive fT expirations */
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040060};
61
62extern struct llist_head gprs_rlcmac_tbfs;
63
64int tfi_alloc();
65
66struct gprs_rlcmac_tbf *tbf_alloc(uint8_t tfi);
67
68static struct gprs_rlcmac_tbf *tbf_by_tfi(uint8_t tfi);
69
70static struct gprs_rlcmac_tbf *tbf_by_tlli(uint8_t tlli);
71
72static void tbf_free(struct gprs_rlcmac_tbf *tbf);
73
74/* TS 44.060 Section 10.4.7 Table 10.4.7.1: Payload Type field */
75enum gprs_rlcmac_block_type {
76 GPRS_RLCMAC_DATA_BLOCK = 0x0,
77 GPRS_RLCMAC_CONTROL_BLOCK = 0x1,
78 GPRS_RLCMAC_CONTROL_BLOCK_OPT = 0x2,
79 GPRS_RLCMAC_RESERVED = 0x3
80};
81
82void gprs_rlcmac_tx_ul_ack(uint8_t tfi, uint32_t tlli, RlcMacUplinkDataBlock_t * ul_data_block);
83
84void gprs_rlcmac_data_block_parse(gprs_rlcmac_tbf* tbf, RlcMacUplinkDataBlock_t * ul_data_block);
85
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +040086int gprs_rlcmac_rcv_data_block(bitvec *rlc_block);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040087
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +040088int gprs_rlcmac_rcv_control_block(bitvec *rlc_block);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040089
Ivan Kluchnikov835f91e2012-04-30 18:00:36 +040090void gprs_rlcmac_rcv_block(bitvec *rlc_block);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040091
Ivan Kluchnikov5310d452012-04-17 22:00:31 +040092int gprs_rlcmac_rcv_rach(uint8_t ra, uint32_t Fn, uint16_t ta);
93
Ivan Kluchnikovc320d862012-03-18 15:04:48 +040094void gprs_rlcmac_tx_dl_data_block(uint32_t tlli, uint8_t tfi, uint8_t *pdu, int start_index, int end_index, uint8_t bsn, uint8_t fbi);
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +040095
96int gprs_rlcmac_segment_llc_pdu(struct gprs_rlcmac_tbf *tbf);
97
98void gprs_rlcmac_tx_ul_ud(gprs_rlcmac_tbf *tbf);
99
Ivan Kluchnikovc320d862012-03-18 15:04:48 +0400100void gprs_rlcmac_downlink_assignment(gprs_rlcmac_tbf *tbf);
101
Ivan Kluchnikov9c795ab2012-05-24 23:12:59 +0400102void gprs_rlcmac_packet_downlink_assignment(gprs_rlcmac_tbf *tbf);
103
104
Ivan Kluchnikov8ee60512012-03-05 19:24:57 +0400105#endif // GPRS_RLCMAC_H