blob: f25972e0b51b2bbbf3ccec57ce9dbe4acfcfafcd [file] [log] [blame]
Pau Espin Pedrolea8dbdd2021-07-29 18:39:16 +02001/* tbf_ul_ack_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 Pedrolea8dbdd2021-07-29 18:39:16 +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;
24struct gprs_rlcmac_ul_tbf;
25
26enum tbf_ul_ack_fsm_event {
27 TBF_UL_ACK_EV_SCHED_ACK, /* Tx UL ACK/NACK is pending */
28 TBF_UL_ACK_EV_CREATE_RLCMAC_MSG, /* Scheduler wants to gen+Tx the Ass (rej): data=tbf_ul_ack_ev_create_rlcmac_msg_ctx */
29 TBF_UL_ACK_EV_RX_CTRL_ACK, /* Received CTRL ACK answering poll set on UL ACK/NACK */
30 TBF_UL_ACK_EV_POLL_TIMEOUT, /* Pdch Ul Controller signals timeout for poll set on UL ACK/NACK */
31};
32
33enum tbf_ul_ack_fsm_states {
34 TBF_UL_ACK_ST_NONE = 0,
35 TBF_UL_ACK_ST_SCHED_UL_ACK, /* send UL ACK/NACK on next RTS */
36 TBF_UL_ACK_ST_WAIT_ACK, /* wait for PACKET CONTROL ACK */
37};
38
39struct tbf_ul_ack_fsm_ctx {
40 struct osmo_fsm_inst *fi;
41 struct gprs_rlcmac_ul_tbf *tbf; /* back pointer */
42};
43
44extern const struct osmo_tdef_state_timeout tbf_ul_ack_fsm_timeouts[32];
45/* Transition to a state, using the T timer defined in tbf_ul_ack_fsm_timeouts.
46 * The actual timeout value is in turn obtained from conn->T_defs.
47 * Assumes local variable fi exists. */
48#define tbf_ul_ack_fsm_state_chg(fi, NEXT_STATE) \
49 osmo_tdef_fsm_inst_state_chg(fi, NEXT_STATE, \
50 tbf_ul_ack_fsm_timeouts, \
51 the_pcu->T_defs, \
52 -1)
53
54extern struct osmo_fsm tbf_ul_ack_fsm;
55
56
57/* passed as data in TBF_UL_ACK_EV_CREATE_RLCMAC_MSG */
58struct tbf_ul_ack_ev_create_rlcmac_msg_ctx {
59 uint32_t fn; /* FN where the created DL ctrl block is to be sent */
60 uint8_t ts; /* TS where the created DL ctrl block is to be sent */
61 struct msgb *msg; /* to be filled by FSM during event processing */
62};
63
64
Pau Espin Pedrolbf2842e2022-10-26 20:14:58 +020065struct msgb *tbf_ul_ack_create_rlcmac_msg(const struct gprs_rlcmac_ul_tbf *ul_tbf, uint32_t fn, uint8_t ts);
66bool tbf_ul_ack_rts(const struct gprs_rlcmac_ul_tbf *ul_tbf);
67bool tbf_ul_ack_waiting_cnf_final_ack(const struct gprs_rlcmac_ul_tbf *ul_tbf);
68bool tbf_ul_ack_exp_ctrl_ack(const struct gprs_rlcmac_ul_tbf *ul_tbf, uint32_t fn, uint8_t ts);