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