|
|
@ -44,39 +44,35 @@
|
|
|
|
namespace srsue {
|
|
|
|
namespace srsue {
|
|
|
|
|
|
|
|
|
|
|
|
template <std::size_t N, typename Tgrant, typename Taction, typename Tphygrant>
|
|
|
|
template <std::size_t N, typename Tgrant, typename Taction, typename Tphygrant>
|
|
|
|
class ul_harq_entity
|
|
|
|
class ul_harq_entity {
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
public:
|
|
|
|
static uint32_t pidof(uint32_t tti)
|
|
|
|
static uint32_t pidof(uint32_t tti) {
|
|
|
|
{
|
|
|
|
return (uint32_t) tti % N;
|
|
|
|
return (uint32_t) tti%N;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ul_harq_entity() : proc(N)
|
|
|
|
ul_harq_entity() : proc(N) {
|
|
|
|
{
|
|
|
|
|
|
|
|
contention_timer = NULL;
|
|
|
|
contention_timer = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
pcap = NULL;
|
|
|
|
pcap = NULL;
|
|
|
|
mux_unit = NULL;
|
|
|
|
mux_unit = NULL;
|
|
|
|
log_h = NULL;
|
|
|
|
log_h = NULL;
|
|
|
|
params = NULL;
|
|
|
|
params = NULL;
|
|
|
|
rntis = NULL;
|
|
|
|
rntis = NULL;
|
|
|
|
average_retx = 0;
|
|
|
|
average_retx = 0;
|
|
|
|
nof_pkts = 0;
|
|
|
|
nof_pkts = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool init(srslte::log *log_h_,
|
|
|
|
bool init(srslte::log *log_h_,
|
|
|
|
mac_interface_rrc_common::ue_rnti_t *rntis_,
|
|
|
|
mac_interface_rrc_common::ue_rnti_t *rntis_,
|
|
|
|
mac_interface_rrc_common::ul_harq_params_t *params_,
|
|
|
|
mac_interface_rrc_common::ul_harq_params_t *params_,
|
|
|
|
srslte::timers::timer* contention_timer_,
|
|
|
|
srslte::timers::timer *contention_timer_,
|
|
|
|
mux *mux_unit_)
|
|
|
|
mux *mux_unit_) {
|
|
|
|
{
|
|
|
|
log_h = log_h_;
|
|
|
|
log_h = log_h_;
|
|
|
|
mux_unit = mux_unit_;
|
|
|
|
mux_unit = mux_unit_;
|
|
|
|
params = params_;
|
|
|
|
params = params_;
|
|
|
|
rntis = rntis_;
|
|
|
|
rntis = rntis_;
|
|
|
|
|
|
|
|
contention_timer = contention_timer_;
|
|
|
|
contention_timer = contention_timer_;
|
|
|
|
for (uint32_t i=0;i<N;i++) {
|
|
|
|
for (uint32_t i = 0; i < N; i++) {
|
|
|
|
if (!proc[i].init(i, this)) {
|
|
|
|
if (!proc[i].init(i, this)) {
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -84,29 +80,29 @@ public:
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void reset()
|
|
|
|
void reset() {
|
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < N; i++) {
|
|
|
|
for (uint32_t i=0;i<N;i++) {
|
|
|
|
|
|
|
|
proc[i].reset();
|
|
|
|
proc[i].reset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ul_sps_assig.clear();
|
|
|
|
ul_sps_assig.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void reset_ndi()
|
|
|
|
void reset_ndi() {
|
|
|
|
{
|
|
|
|
for (uint32_t i = 0; i < N; i++) {
|
|
|
|
for (uint32_t i=0;i<N;i++) {
|
|
|
|
|
|
|
|
proc[i].reset_ndi();
|
|
|
|
proc[i].reset_ndi();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void start_pcap(srslte::mac_pcap* pcap_)
|
|
|
|
void start_pcap(srslte::mac_pcap *pcap_) {
|
|
|
|
{
|
|
|
|
|
|
|
|
pcap = pcap_;
|
|
|
|
pcap = pcap_;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/***************** PHY->MAC interface for UL processes **************************/
|
|
|
|
/***************** PHY->MAC interface for UL processes **************************/
|
|
|
|
void new_grant_ul(Tgrant grant, Taction *action)
|
|
|
|
void new_grant_ul(Tgrant grant, Taction *action) {
|
|
|
|
|
|
|
|
new_grant_ul_ack(grant, NULL, action);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void new_grant_ul_ack(Tgrant grant, bool *ack, Taction *action)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (grant.rnti_type == SRSLTE_RNTI_USER ||
|
|
|
|
if (grant.rnti_type == SRSLTE_RNTI_USER ||
|
|
|
|
grant.rnti_type == SRSLTE_RNTI_TEMP ||
|
|
|
|
grant.rnti_type == SRSLTE_RNTI_TEMP ||
|
|
|
@ -115,27 +111,20 @@ public:
|
|
|
|
if (grant.rnti_type == SRSLTE_RNTI_USER && proc[pidof(grant.tti)].is_sps()) {
|
|
|
|
if (grant.rnti_type == SRSLTE_RNTI_USER && proc[pidof(grant.tti)].is_sps()) {
|
|
|
|
grant.ndi[0] = true;
|
|
|
|
grant.ndi[0] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
run_tti(grant.tti, &grant, action);
|
|
|
|
run_tti(grant.tti, &grant, ack, action);
|
|
|
|
} else if (grant.rnti_type == SRSLTE_RNTI_SPS) {
|
|
|
|
} else if (grant.rnti_type == SRSLTE_RNTI_SPS) {
|
|
|
|
if (grant.ndi[0]) {
|
|
|
|
if (grant.ndi[0]) {
|
|
|
|
grant.ndi[0] = proc[pidof(grant.tti)].get_ndi();
|
|
|
|
grant.ndi[0] = proc[pidof(grant.tti)].get_ndi();
|
|
|
|
run_tti(grant.tti, &grant, action);
|
|
|
|
run_tti(grant.tti, &grant, ack, action);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
Info("Not implemented\n");
|
|
|
|
Info("Not implemented\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void new_grant_ul_ack(Tgrant grant, bool ack, Taction *action)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
set_ack(grant.tti, ack, action);
|
|
|
|
|
|
|
|
new_grant_ul(grant, action);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void harq_recv(uint32_t tti, bool ack, Taction *action)
|
|
|
|
void harq_recv(uint32_t tti, bool ack, Taction *action)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
set_ack(tti, ack, action);
|
|
|
|
run_tti(tti, NULL, &ack, action);
|
|
|
|
run_tti(tti, NULL, action);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int get_current_tbs(uint32_t tti)
|
|
|
|
int get_current_tbs(uint32_t tti)
|
|
|
@ -206,10 +195,19 @@ private:
|
|
|
|
bzero(&cur_grant, sizeof(Tgrant));
|
|
|
|
bzero(&cur_grant, sizeof(Tgrant));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void reset_ndi() { ndi = false; }
|
|
|
|
void reset_ndi() { cur_grant.ndi[0] = false; }
|
|
|
|
|
|
|
|
|
|
|
|
void run_tti(uint32_t tti_tx, Tgrant *grant, Taction* action)
|
|
|
|
void run_tti(uint32_t tti_tx, Tgrant *grant, bool *ack, Taction* action)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
if (ack) {
|
|
|
|
|
|
|
|
if (grant) {
|
|
|
|
|
|
|
|
if (grant->ndi[0] == get_ndi()) {
|
|
|
|
|
|
|
|
*ack = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
set_harq_feedback(*ack);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t max_retx;
|
|
|
|
uint32_t max_retx;
|
|
|
|
if (is_msg3) {
|
|
|
|
if (is_msg3) {
|
|
|
|
max_retx = harq_entity->params->max_harq_msg3_tx;
|
|
|
|
max_retx = harq_entity->params->max_harq_msg3_tx;
|
|
|
@ -219,9 +217,9 @@ private:
|
|
|
|
|
|
|
|
|
|
|
|
// Receive and route HARQ feedbacks
|
|
|
|
// Receive and route HARQ feedbacks
|
|
|
|
if (grant) {
|
|
|
|
if (grant) {
|
|
|
|
if ((!(grant->rnti_type == SRSLTE_RNTI_TEMP) && grant->ndi[0] != get_ndi() && grant->phy_grant.ul.mcs.idx < 29) ||
|
|
|
|
if ((!(grant->rnti_type == SRSLTE_RNTI_TEMP) && grant->ndi[0] != get_ndi()) ||
|
|
|
|
(grant->rnti_type == SRSLTE_RNTI_USER && !has_grant()) ||
|
|
|
|
(grant->rnti_type == SRSLTE_RNTI_USER && !has_grant()) ||
|
|
|
|
grant->is_from_rar)
|
|
|
|
grant->is_from_rar)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// New transmission
|
|
|
|
// New transmission
|
|
|
|
|
|
|
|
|
|
|
@ -255,7 +253,7 @@ private:
|
|
|
|
generate_retx(tti_tx, grant, action);
|
|
|
|
generate_retx(tti_tx, grant, action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
Warning("UL %d: Received mcs=%d but no previous grant available for this PID.\n", pid, grant->phy_grant.ul.mcs.idx);
|
|
|
|
Warning("UL %d: Received retransmission but no previous grant available for this PID.\n", pid);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (has_grant()) {
|
|
|
|
} else if (has_grant()) {
|
|
|
|
// Non-Adaptive Re-Tx
|
|
|
|
// Non-Adaptive Re-Tx
|
|
|
@ -294,7 +292,7 @@ private:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool has_grant() { return is_grant_configured; }
|
|
|
|
bool has_grant() { return is_grant_configured; }
|
|
|
|
bool get_ndi() { return ndi; }
|
|
|
|
bool get_ndi() { return cur_grant.ndi[0]; }
|
|
|
|
bool is_sps() { return false; }
|
|
|
|
bool is_sps() { return false; }
|
|
|
|
uint32_t last_tx_tti() { return tti_last_tx; }
|
|
|
|
uint32_t last_tx_tti() { return tti_last_tx; }
|
|
|
|
uint32_t get_nof_retx() { return current_tx_nb; }
|
|
|
|
uint32_t get_nof_retx() { return current_tx_nb; }
|
|
|
@ -307,7 +305,6 @@ private:
|
|
|
|
uint32_t current_tx_nb;
|
|
|
|
uint32_t current_tx_nb;
|
|
|
|
uint32_t current_irv;
|
|
|
|
uint32_t current_irv;
|
|
|
|
bool harq_feedback;
|
|
|
|
bool harq_feedback;
|
|
|
|
bool ndi;
|
|
|
|
|
|
|
|
srslte::log *log_h;
|
|
|
|
srslte::log *log_h;
|
|
|
|
ul_harq_entity *harq_entity;
|
|
|
|
ul_harq_entity *harq_entity;
|
|
|
|
bool is_grant_configured;
|
|
|
|
bool is_grant_configured;
|
|
|
@ -398,24 +395,12 @@ private:
|
|
|
|
|
|
|
|
|
|
|
|
// Implements Section 5.4.2.1
|
|
|
|
// Implements Section 5.4.2.1
|
|
|
|
// Called with UL grant
|
|
|
|
// Called with UL grant
|
|
|
|
void run_tti(uint32_t tti, Tgrant *grant, Taction* action)
|
|
|
|
void run_tti(uint32_t tti, Tgrant *grant, bool *ack, Taction* action)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
uint32_t tti_tx = (tti+action->tti_offset)%10240;
|
|
|
|
uint32_t tti_tx = (tti+action->tti_offset)%10240;
|
|
|
|
proc[pidof(tti_tx)].run_tti(tti_tx, grant, action);
|
|
|
|
proc[pidof(tti_tx)].run_tti(tti_tx, grant, ack, action);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void set_ack(uint32_t tti, bool ack, Taction *action)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
int tti_harq = (int) tti - action->tti_offset;
|
|
|
|
|
|
|
|
if (tti_harq < 0) {
|
|
|
|
|
|
|
|
tti_harq += 10240;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t pid_harq = pidof(tti_harq);
|
|
|
|
|
|
|
|
if (proc[pid_harq].has_grant() && (proc[pid_harq].last_tx_tti() <= (uint32_t)tti_harq)) {
|
|
|
|
|
|
|
|
proc[pid_harq].set_harq_feedback(ack);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ul_sps ul_sps_assig;
|
|
|
|
ul_sps ul_sps_assig;
|
|
|
|
|
|
|
|
|
|
|
|
srslte::timers::timer *contention_timer;
|
|
|
|
srslte::timers::timer *contention_timer;
|
|
|
|