blob: cb7be8d3cea54c2a50e613c4ea2ba05a37193816 [file] [log] [blame]
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +02001/* tbf_dl_ass_fsm.h
2 *
3 * Copyright (C) 2021 by sysmocom - s.f.m.c. GmbH <info@sysmocom.de>
4 * Author: Pau Espin Pedrol <pespin@sysmocom.de>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version 2
9 * of the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +020015 */
16#pragma once
17
18#include <osmocom/core/fsm.h>
19#include <osmocom/core/tdef.h>
20
21#include <gprs_pcu.h>
22
23struct gprs_rlcmac_tbf;
Pau Espin Pedrol106f2a02022-12-12 17:29:10 +010024struct gprs_rlcmac_pdch;
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +020025
26enum tbf_dl_ass_fsm_event {
27 TBF_DL_ASS_EV_SCHED_ASS, /* Tx Uplink Assignment is pending */
28 TBF_DL_ASS_EV_CREATE_RLCMAC_MSG, /* Scheduler wants to gen+Tx the Ass (rej): data=tbf_dl_ass_ev_create_rlcmac_msg_ctx */
29 TBF_DL_ASS_EV_RX_ASS_CTRL_ACK, /* Received CTRL ACK answering poll set on Pkt Dl Ass */
30 TBF_DL_ASS_EV_ASS_POLL_TIMEOUT, /* Pdch Ul Controller signals timeout for poll set on Pkt Dl Ass */
31};
32
33enum tbf_dl_ass_fsm_states {
34 TBF_DL_ASS_NONE = 0,
35 TBF_DL_ASS_SEND_ASS, /* send downlink assignment on next RTS */
36 TBF_DL_ASS_WAIT_ACK, /* wait for PACKET CONTROL ACK */
37};
38
39struct tbf_dl_ass_fsm_ctx {
40 struct osmo_fsm_inst *fi;
41 struct gprs_rlcmac_tbf* tbf; /* back pointer */
42};
43
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +020044extern struct osmo_fsm tbf_dl_ass_fsm;
45
46
47/* passed as data in TBF_DL_ASS_EV_CREATE_RLCMAC_MSG */
48struct tbf_dl_ass_ev_create_rlcmac_msg_ctx {
Pau Espin Pedrol5ba3ef92022-12-12 18:02:25 +010049 const struct gprs_rlcmac_pdch *pdch; /* TS where the created DL ctrl block is to be sent */
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +020050 uint32_t fn; /* FN where the created DL ctrl block is to be sent */
Pau Espin Pedrol49a2f402021-07-27 17:33:07 +020051 struct msgb *msg; /* to be filled by FSM during event processing */
52};
53
54
Pau Espin Pedrol5ba3ef92022-12-12 18:02:25 +010055struct msgb *tbf_dl_ass_create_rlcmac_msg(const struct gprs_rlcmac_tbf *tbf,
56 const struct gprs_rlcmac_pdch *pdch,
57 uint32_t fn);
Pau Espin Pedrol106f2a02022-12-12 17:29:10 +010058bool tbf_dl_ass_rts(const struct gprs_rlcmac_tbf *tbf, const struct gprs_rlcmac_pdch *pdch);