blob: c25aa14fee472691a5d159005a52b5fffd32261c [file] [log] [blame]
Holger Hans Peter Freythercedf8902013-10-19 20:47:12 +02001/*
2 *
3 * Copyright (C) 2012 Ivan Klyuchnikov
4 * Copyright (C) 2012 Andreas Eversberg <jolly@eversberg.eu>
5 * Copyright (C) 2013 by Holger Hans Peter Freyther
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21#pragma once
22
23#include <stdint.h>
24
25extern "C" {
26#include <osmocom/core/linuxlist.h>
27}
28
29class BTS;
30class PollController;
31struct gprs_rlcmac_sba;
32
33/*
34 * single block allocation entry
35 */
36struct gprs_rlcmac_sba {
37 struct llist_head list;
38 uint8_t trx;
39 uint8_t ts;
40 uint32_t fn;
41 uint8_t ta;
42};
43
44/**
45 * I help to manage SingleBlockAssignment (SBA).
46 *
47 * TODO: Add a flush method..
48 */
49class SBAController {
50 friend class PollController;
51public:
52 SBAController(BTS &bts);
53
54 int alloc(uint8_t *_trx, uint8_t *_ts, uint32_t *_fn, uint8_t ta);
55 gprs_rlcmac_sba *find(uint8_t trx, uint8_t ts, uint32_t fn);
56
57 uint32_t sched(uint8_t trx, uint8_t ts, uint32_t fn, uint8_t block_nr);
58
59 int timeout(struct gprs_rlcmac_sba *sba);
60 void free_resources(uint8_t trx, uint8_t ts);
61
62private:
63 BTS &m_bts;
64 llist_head m_sbas;
65};