|
|
|
/**
|
|
|
|
*
|
|
|
|
* \section COPYRIGHT
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
|
|
*
|
|
|
|
* By using this file, you agree to the terms and conditions set
|
|
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
|
|
* the distribution.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SRSRAN_DUMMY_GNB_STACK_H
|
|
|
|
#define SRSRAN_DUMMY_GNB_STACK_H
|
|
|
|
|
|
|
|
#include "dummy_rx_harq_proc.h"
|
|
|
|
#include "dummy_tx_harq_proc.h"
|
|
|
|
#include "srsenb/hdr/stack/mac/nr/sched_nr.h"
|
|
|
|
#include "srsenb/test/mac/nr/sched_nr_cfg_generators.h"
|
|
|
|
#include <mutex>
|
|
|
|
#include <set>
|
|
|
|
#include <srsenb/hdr/stack/mac/common/mac_metrics.h>
|
|
|
|
#include <srsran/adt/circular_array.h>
|
|
|
|
#include <srsran/common/phy_cfg_nr.h>
|
|
|
|
#include <srsran/common/standard_streams.h>
|
|
|
|
#include <srsran/common/string_helpers.h>
|
|
|
|
#include <srsran/interfaces/gnb_interfaces.h>
|
|
|
|
|
|
|
|
class gnb_dummy_stack : public srsenb::stack_interface_phy_nr
|
|
|
|
{
|
|
|
|
const static uint32_t NUMEROLOGY_IDX = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
struct prach_metrics_t {
|
|
|
|
uint32_t count;
|
|
|
|
float avg_ta;
|
|
|
|
};
|
|
|
|
struct pucch_metrics_t {
|
|
|
|
float epre_db_avg = 0.0f;
|
|
|
|
float epre_db_min = +INFINITY;
|
|
|
|
float epre_db_max = -INFINITY;
|
|
|
|
float rsrp_db_avg = 0.0f;
|
|
|
|
float rsrp_db_min = +INFINITY;
|
|
|
|
float rsrp_db_max = -INFINITY;
|
|
|
|
float snr_db_avg = 0.0f;
|
|
|
|
float snr_db_min = +INFINITY;
|
|
|
|
float snr_db_max = -INFINITY;
|
|
|
|
float ta_us_avg = 0.0f;
|
|
|
|
float ta_us_min = +INFINITY;
|
|
|
|
float ta_us_max = -INFINITY;
|
|
|
|
uint32_t count = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct metrics_t {
|
|
|
|
std::map<uint32_t, prach_metrics_t> prach = {}; ///< PRACH metrics indexed with premable index
|
|
|
|
srsenb::mac_ue_metrics_t mac = {}; ///< MAC metrics
|
|
|
|
uint32_t sr_count = 0; ///< SR counter
|
|
|
|
pucch_metrics_t pucch = {};
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
srslog::basic_logger& logger = srslog::fetch_basic_logger("GNB STK");
|
|
|
|
bool use_dummy_sched = true;
|
|
|
|
const uint16_t rnti = 0x1234;
|
|
|
|
struct {
|
|
|
|
srsran::circular_array<srsran_dci_location_t, SRSRAN_NOF_SF_X_FRAME> dci_location = {};
|
|
|
|
uint32_t mcs = 0;
|
|
|
|
uint32_t freq_res = 0;
|
|
|
|
std::set<uint32_t> slots = {};
|
|
|
|
} dl, ul;
|
|
|
|
srsran::circular_array<uint32_t, SRSRAN_NOF_SF_X_FRAME> dl_data_to_ul_ack;
|
|
|
|
uint32_t ss_id = 0;
|
|
|
|
srsran::phy_cfg_nr_t phy_cfg = {};
|
|
|
|
bool valid = false;
|
|
|
|
|
|
|
|
std::unique_ptr<srsenb::sched_nr> sched;
|
|
|
|
srsran::slot_point pdsch_slot, pusch_slot;
|
|
|
|
srslog::basic_logger& sched_logger;
|
|
|
|
|
|
|
|
std::mutex metrics_mutex;
|
|
|
|
metrics_t metrics = {};
|
|
|
|
|
|
|
|
// HARQ feedback
|
|
|
|
class pending_ack_t
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::mutex mutex;
|
|
|
|
srsran_pdsch_ack_nr_t ack = {};
|
|
|
|
|
|
|
|
public:
|
|
|
|
pending_ack_t() = default;
|
|
|
|
void push_ack(srsran_harq_ack_resource_t& ack_resource)
|
|
|
|
{
|
|
|
|
// Prepare ACK information
|
|
|
|
srsran_harq_ack_m_t ack_m = {};
|
|
|
|
ack_m.resource = ack_resource;
|
|
|
|
ack_m.present = true;
|
|
|
|
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
|
|
|
|
ack.nof_cc = 1;
|
|
|
|
|
|
|
|
srsran_harq_ack_insert_m(&ack, &ack_m);
|
|
|
|
}
|
|
|
|
|
|
|
|
srsran_pdsch_ack_nr_t get_ack()
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
srsran_pdsch_ack_nr_t ret = ack;
|
|
|
|
ack = {};
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
uint32_t get_dai()
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
return ack.cc[0].M % 4;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
std::array<pending_ack_t, TTIMOD_SZ> pending_ack = {};
|
|
|
|
|
|
|
|
// PUSCH state
|
|
|
|
class pending_pusch_t
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
std::mutex mutex;
|
|
|
|
srsran_sch_cfg_nr_t pusch = {};
|
|
|
|
bool valid = false;
|
|
|
|
uint32_t pid = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
pending_pusch_t() = default;
|
|
|
|
void push(const uint32_t& pid_, const srsran_sch_cfg_nr_t& pusch_)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
pusch = pusch_;
|
|
|
|
pid = pid_;
|
|
|
|
valid = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pop(uint32_t& pid_, srsran_sch_cfg_nr_t& pusch_)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(mutex);
|
|
|
|
bool ret = valid;
|
|
|
|
pusch_ = pusch;
|
|
|
|
pid_ = pid;
|
|
|
|
valid = false;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
std::array<pending_pusch_t, TTIMOD_SZ> pending_pusch = {};
|
|
|
|
|
|
|
|
dummy_tx_harq_entity tx_harq_proc;
|
|
|
|
dummy_rx_harq_entity rx_harq_proc;
|
|
|
|
|
|
|
|
bool schedule_pdsch(const srsran_slot_cfg_t& slot_cfg, dl_sched_t& dl_sched)
|
|
|
|
{
|
|
|
|
if (dl.slots.count(SRSRAN_SLOT_NR_MOD(srsran_subcarrier_spacing_15kHz, slot_cfg.idx)) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Instantiate PDCCH and PDSCH
|
|
|
|
pdcch_dl_t pdcch = {};
|
|
|
|
pdsch_t pdsch = {};
|
|
|
|
|
|
|
|
// Second TB is not used
|
|
|
|
pdsch.data[1] = nullptr;
|
|
|
|
|
|
|
|
// Fill DCI configuration
|
|
|
|
pdcch.dci_cfg = phy_cfg.get_dci_cfg();
|
|
|
|
|
|
|
|
// Fill DCI context
|
|
|
|
if (not phy_cfg.get_dci_ctx_pdsch_rnti_c(ss_id, dl.dci_location[slot_cfg.idx], rnti, pdcch.dci.ctx)) {
|
|
|
|
logger.error("Error filling PDSCH DCI context");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t harq_feedback = dl_data_to_ul_ack[slot_cfg.idx];
|
|
|
|
uint32_t harq_ack_slot_idx = TTI_ADD(slot_cfg.idx, harq_feedback);
|
|
|
|
|
|
|
|
// Fill DCI fields
|
|
|
|
srsran_dci_dl_nr_t& dci = pdcch.dci;
|
|
|
|
dci.freq_domain_assigment = dl.freq_res;
|
|
|
|
dci.time_domain_assigment = 0;
|
|
|
|
dci.mcs = dl.mcs;
|
|
|
|
dci.rv = 0;
|
|
|
|
dci.ndi = (slot_cfg.idx / SRSRAN_NOF_SF_X_FRAME) % 2;
|
|
|
|
dci.pid = slot_cfg.idx % SRSRAN_NOF_SF_X_FRAME;
|
|
|
|
dci.dai = pending_ack[harq_ack_slot_idx % pending_ack.size()].get_dai();
|
|
|
|
dci.tpc = 1;
|
|
|
|
dci.pucch_resource = 0;
|
|
|
|
if (dci.ctx.format == srsran_dci_format_nr_1_0) {
|
|
|
|
dci.harq_feedback = dl_data_to_ul_ack[slot_cfg.idx] - 1;
|
|
|
|
} else {
|
|
|
|
dci.harq_feedback = slot_cfg.idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create PDSCH configuration
|
|
|
|
if (not phy_cfg.get_pdsch_cfg(slot_cfg, dci, pdsch.sch)) {
|
|
|
|
logger.error("Error converting DCI to grant");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set TBS
|
|
|
|
// Select grant and set data
|
|
|
|
pdsch.data[0] = tx_harq_proc[slot_cfg.idx].get_tb(pdsch.sch.grant.tb[0].tbs).data();
|
|
|
|
|
|
|
|
// Set softbuffer
|
|
|
|
pdsch.sch.grant.tb[0].softbuffer.tx = &tx_harq_proc[slot_cfg.idx].get_softbuffer(dci.ndi);
|
|
|
|
|
|
|
|
// Reset Tx softbuffer always
|
|
|
|
srsran_softbuffer_tx_reset(pdsch.sch.grant.tb[0].softbuffer.tx);
|
|
|
|
|
|
|
|
// Push scheduling results
|
|
|
|
dl_sched.pdcch_dl.push_back(pdcch);
|
|
|
|
dl_sched.pdsch.push_back(pdsch);
|
|
|
|
|
|
|
|
// Generate PDSCH HARQ Feedback
|
|
|
|
srsran_harq_ack_resource_t ack_resource = {};
|
|
|
|
if (not phy_cfg.get_pdsch_ack_resource(dci, ack_resource)) {
|
|
|
|
logger.error("Error getting ack resource");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Calculate PUCCH slot and push resource
|
|
|
|
pending_ack[harq_ack_slot_idx % pending_ack.size()].push_ack(ack_resource);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool schedule_pusch(const srsran_slot_cfg_t& slot_cfg, dl_sched_t& dl_sched)
|
|
|
|
{
|
|
|
|
if (ul.slots.count(SRSRAN_SLOT_NR_MOD(srsran_subcarrier_spacing_15kHz, slot_cfg.idx + 4)) == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Instantiate PDCCH
|
|
|
|
pdcch_ul_t pdcch = {};
|
|
|
|
|
|
|
|
// Fill DCI configuration
|
|
|
|
pdcch.dci_cfg = phy_cfg.get_dci_cfg();
|
|
|
|
|
|
|
|
// Fill DCI context
|
|
|
|
if (not phy_cfg.get_dci_ctx_pusch_rnti_c(ss_id, ul.dci_location[slot_cfg.idx], rnti, pdcch.dci.ctx)) {
|
|
|
|
logger.error("Error filling PDSCH DCI context");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Fill DCI fields
|
|
|
|
srsran_dci_ul_nr_t& dci = pdcch.dci;
|
|
|
|
dci.freq_domain_assigment = ul.freq_res;
|
|
|
|
dci.time_domain_assigment = 0;
|
|
|
|
dci.freq_hopping_flag = 0;
|
|
|
|
dci.mcs = ul.mcs;
|
|
|
|
dci.rv = 0;
|
|
|
|
dci.ndi = (slot_cfg.idx / SRSRAN_NOF_SF_X_FRAME) % 2;
|
|
|
|
dci.pid = slot_cfg.idx % SRSRAN_NOF_SF_X_FRAME;
|
|
|
|
dci.tpc = 1;
|
|
|
|
|
|
|
|
// Create PDSCH configuration
|
|
|
|
srsran_sch_cfg_nr_t pusch_cfg = {};
|
|
|
|
if (not phy_cfg.get_pusch_cfg(slot_cfg, dci, pusch_cfg)) {
|
|
|
|
logger.error("Error converting DCI to grant");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set softbuffer
|
|
|
|
pusch_cfg.grant.tb[0].softbuffer.rx = &rx_harq_proc[slot_cfg.idx].get_softbuffer(dci.ndi);
|
|
|
|
|
|
|
|
// Push scheduling results
|
|
|
|
dl_sched.pdcch_ul.push_back(pdcch);
|
|
|
|
|
|
|
|
// Set pending PUSCH
|
|
|
|
pending_pusch[TTI_TX(slot_cfg.idx) % pending_pusch.size()].push(dci.pid, pusch_cfg);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool handle_uci_data(const srsran_uci_cfg_nr_t& cfg, const srsran_uci_value_nr_t& value)
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(metrics_mutex);
|
|
|
|
|
|
|
|
// Process HARQ-ACK
|
|
|
|
for (uint32_t i = 0; i < cfg.ack.count; i++) {
|
|
|
|
const srsran_harq_ack_bit_t* ack_bit = &cfg.ack.bits[i];
|
|
|
|
bool is_ok = (value.ack[i] == 1) and value.valid;
|
|
|
|
uint32_t tb_count = (ack_bit->tb0 ? 1 : 0) + (ack_bit->tb1 ? 1 : 0);
|
|
|
|
metrics.mac.tx_brate += tx_harq_proc[ack_bit->pid].get_tbs();
|
|
|
|
metrics.mac.tx_pkts += tb_count;
|
|
|
|
if (not is_ok) {
|
|
|
|
metrics.mac.tx_errors += tb_count;
|
|
|
|
logger.debug("NACK received!");
|
|
|
|
}
|
|
|
|
|
|
|
|
sched->dl_ack_info(rnti, 0, ack_bit->pid, 0, is_ok);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Process SR
|
|
|
|
if (value.valid and value.sr > 0) {
|
|
|
|
metrics.sr_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
struct args_t {
|
|
|
|
srsran::phy_cfg_nr_t phy_cfg; ///< Physical layer configuration
|
|
|
|
bool use_dummy_sched = true; ///< Use dummy or real NR scheduler
|
|
|
|
uint16_t rnti = 0x1234; ///< C-RNTI
|
|
|
|
uint32_t ss_id = 1; ///< Search Space identifier
|
|
|
|
uint32_t pdcch_aggregation_level = 0; ///< PDCCH aggregation level
|
|
|
|
uint32_t pdcch_dl_candidate = 0; ///< PDCCH DL DCI candidate index
|
|
|
|
uint32_t pdcch_ul_candidate = 1; ///< PDCCH UL DCI candidate index
|
|
|
|
struct {
|
|
|
|
uint32_t rb_start = 0; ///< Start frequency domain resource block
|
|
|
|
uint32_t rb_length = 10; ///< Number of frequency domain resource blocks
|
|
|
|
uint32_t mcs = 10; ///< Modulation code scheme
|
|
|
|
std::string slots = ""; ///< Slot list, empty string means no scheduling
|
|
|
|
} pdsch, pusch;
|
|
|
|
std::string log_level = "warning";
|
|
|
|
};
|
|
|
|
|
|
|
|
gnb_dummy_stack(const args_t& args) :
|
|
|
|
rnti(args.rnti),
|
|
|
|
phy_cfg(args.phy_cfg),
|
|
|
|
ss_id(args.ss_id),
|
|
|
|
use_dummy_sched(args.use_dummy_sched),
|
|
|
|
sched_logger(srslog::fetch_basic_logger("MAC"))
|
|
|
|
{
|
|
|
|
logger.set_level(srslog::str_to_basic_level(args.log_level));
|
|
|
|
sched_logger.set_level(srslog::basic_levels::debug);
|
|
|
|
|
|
|
|
// create sched object
|
|
|
|
srsenb::sched_nr_interface::sched_cfg_t sched_cfg{};
|
|
|
|
sched_cfg.pdsch_enabled = args.pdsch.slots != "" and args.pdsch.slots != "none";
|
|
|
|
sched_cfg.pusch_enabled = args.pusch.slots != "" and args.pusch.slots != "none";
|
|
|
|
sched.reset(new srsenb::sched_nr{sched_cfg});
|
|
|
|
std::vector<srsenb::sched_nr_interface::cell_cfg_t> cells_cfg = srsenb::get_default_cells_cfg(1, phy_cfg);
|
|
|
|
sched->cell_cfg(cells_cfg);
|
|
|
|
|
|
|
|
// add UE to scheduler
|
|
|
|
srsenb::sched_nr_interface::ue_cfg_t ue_cfg = srsenb::get_default_ue_cfg(1, phy_cfg);
|
|
|
|
ue_cfg.fixed_dl_mcs = args.pdsch.mcs;
|
|
|
|
ue_cfg.fixed_ul_mcs = args.pusch.mcs;
|
|
|
|
sched->ue_cfg(args.rnti, ue_cfg);
|
|
|
|
|
|
|
|
dl.mcs = args.pdsch.mcs;
|
|
|
|
ul.mcs = args.pusch.mcs;
|
|
|
|
|
|
|
|
if (args.pdsch.slots != "none" and not args.pdsch.slots.empty()) {
|
|
|
|
srsran::string_parse_list(args.pdsch.slots, ',', dl.slots);
|
|
|
|
}
|
|
|
|
if (args.pusch.slots != "none" and not args.pusch.slots.empty()) {
|
|
|
|
srsran::string_parse_list(args.pusch.slots, ',', ul.slots);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select DCI locations
|
|
|
|
for (uint32_t slot = 0; slot < SRSRAN_NOF_SF_X_FRAME; slot++) {
|
|
|
|
srsran::bounded_vector<srsran_dci_location_t, SRSRAN_SEARCH_SPACE_MAX_NOF_CANDIDATES_NR> locations;
|
|
|
|
|
|
|
|
if (not phy_cfg.get_dci_locations(slot, rnti, args.ss_id, args.pdcch_aggregation_level, locations)) {
|
|
|
|
logger.error(
|
|
|
|
"Error generating locations for slot %d and aggregation level %d", slot, args.pdcch_aggregation_level);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// DCI DL
|
|
|
|
if (args.pdcch_dl_candidate >= locations.size()) {
|
|
|
|
logger.error("Candidate index %d exceeds the number of candidates %d for aggregation level %d",
|
|
|
|
args.pdcch_dl_candidate,
|
|
|
|
(uint32_t)locations.size(),
|
|
|
|
args.pdcch_aggregation_level);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
dl.dci_location[slot] = locations[args.pdcch_dl_candidate];
|
|
|
|
|
|
|
|
// DCI UL
|
|
|
|
if (args.pdcch_ul_candidate >= locations.size()) {
|
|
|
|
logger.error("Candidate index %d exceeds the number of candidates %d for aggregation level %d",
|
|
|
|
args.pdcch_ul_candidate,
|
|
|
|
(uint32_t)locations.size(),
|
|
|
|
args.pdcch_aggregation_level);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ul.dci_location[slot] = locations[args.pdcch_ul_candidate];
|
|
|
|
}
|
|
|
|
|
|
|
|
// Select DL frequency domain resources
|
|
|
|
dl.freq_res = srsran_ra_nr_type1_riv(args.phy_cfg.carrier.nof_prb, args.pdsch.rb_start, args.pdsch.rb_length);
|
|
|
|
|
|
|
|
// Select DL frequency domain resources
|
|
|
|
ul.freq_res = srsran_ra_nr_type1_riv(args.phy_cfg.carrier.nof_prb, args.pusch.rb_start, args.pusch.rb_length);
|
|
|
|
|
|
|
|
// Setup DL Data to ACK timing
|
|
|
|
for (uint32_t i = 0; i < SRSRAN_NOF_SF_X_FRAME; i++) {
|
|
|
|
dl_data_to_ul_ack[i] = args.phy_cfg.harq_ack.dl_data_to_ul_ack[i % SRSRAN_MAX_NOF_DL_DATA_TO_UL];
|
|
|
|
}
|
|
|
|
|
|
|
|
// If reached this point the configuration is valid
|
|
|
|
valid = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
~gnb_dummy_stack() {}
|
|
|
|
bool is_valid() const { return valid; }
|
|
|
|
|
|
|
|
int slot_indication(const srsran_slot_cfg_t& slot_cfg) override { return 0; }
|
|
|
|
|
|
|
|
int get_dl_sched(const srsran_slot_cfg_t& slot_cfg, dl_sched_t& dl_sched) override
|
|
|
|
{
|
|
|
|
logger.set_context(slot_cfg.idx);
|
|
|
|
sched_logger.set_context(slot_cfg.idx);
|
|
|
|
if (not pdsch_slot.valid()) {
|
|
|
|
pdsch_slot = srsran::slot_point{NUMEROLOGY_IDX, slot_cfg.idx};
|
|
|
|
} else {
|
|
|
|
pdsch_slot++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not use_dummy_sched) {
|
|
|
|
int ret = sched->get_dl_sched(pdsch_slot, 0, dl_sched);
|
|
|
|
|
|
|
|
for (pdsch_t& pdsch : dl_sched.pdsch) {
|
|
|
|
// Set TBS
|
|
|
|
// Select grant and set data
|
|
|
|
pdsch.data[0] = tx_harq_proc[slot_cfg.idx].get_tb(pdsch.sch.grant.tb[0].tbs).data();
|
|
|
|
pdsch.data[1] = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if it is TDD DL slot and PDSCH mask, if no PDSCH shall be scheduled, do not set any grant and skip
|
|
|
|
if (not srsran_tdd_nr_is_dl(&phy_cfg.tdd, phy_cfg.carrier.scs, slot_cfg.idx)) {
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not schedule_pdsch(slot_cfg, dl_sched)) {
|
|
|
|
logger.error("Error scheduling PDSCH");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the UL slot is valid, if not skip UL scheduling
|
|
|
|
if (not srsran_tdd_nr_is_ul(&phy_cfg.tdd, phy_cfg.carrier.scs, TTI_TX(slot_cfg.idx))) {
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not schedule_pusch(slot_cfg, dl_sched)) {
|
|
|
|
logger.error("Error scheduling PUSCH");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_ul_sched(const srsran_slot_cfg_t& slot_cfg, ul_sched_t& ul_sched) override
|
|
|
|
{
|
|
|
|
logger.set_context(slot_cfg.idx);
|
|
|
|
sched_logger.set_context(slot_cfg.idx);
|
|
|
|
if (not pusch_slot.valid()) {
|
|
|
|
pusch_slot = srsran::slot_point{NUMEROLOGY_IDX, slot_cfg.idx};
|
|
|
|
} else {
|
|
|
|
pusch_slot++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (not use_dummy_sched) {
|
|
|
|
int ret = sched->get_ul_sched(pusch_slot, 0, ul_sched);
|
|
|
|
|
|
|
|
for (pusch_t& pusch : ul_sched.pusch) {
|
|
|
|
pusch.data[0] = rx_harq_proc[pusch.pid].get_tb(pusch.sch.grant.tb[0].tbs).data();
|
|
|
|
pusch.data[1] = nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get ACK information
|
|
|
|
srsran_pdsch_ack_nr_t ack = pending_ack[slot_cfg.idx % pending_ack.size()].get_ack();
|
|
|
|
bool has_ack = ack.nof_cc > 0;
|
|
|
|
|
|
|
|
if (has_ack) {
|
|
|
|
if (logger.debug.enabled()) {
|
|
|
|
std::array<char, 512> str = {};
|
|
|
|
if (srsran_harq_ack_info(&ack, str.data(), (uint32_t)str.size()) > 0) {
|
|
|
|
logger.debug("HARQ feedback:\n%s", str.data());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
mac_interface_phy_nr::pusch_t pusch = {};
|
|
|
|
bool has_pusch = pending_pusch[slot_cfg.idx % pending_pusch.size()].pop(pusch.pid, pusch.sch);
|
|
|
|
|
|
|
|
srsran_uci_cfg_nr_t uci_cfg = {};
|
|
|
|
if (not phy_cfg.get_uci_cfg(slot_cfg, ack, uci_cfg)) {
|
|
|
|
logger.error("Error getting UCI configuration");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Schedule PUSCH
|
|
|
|
if (has_pusch) {
|
|
|
|
// Generate data
|
|
|
|
pusch.data[0] = rx_harq_proc[pusch.pid].get_tb(pusch.sch.grant.tb[0].tbs).data();
|
|
|
|
pusch.data[1] = nullptr;
|
|
|
|
|
|
|
|
// Put UCI configuration in PUSCH config
|
|
|
|
if (not phy_cfg.get_pusch_uci_cfg(slot_cfg, uci_cfg, pusch.sch)) {
|
|
|
|
logger.error("Error setting UCI configuration in PUSCH");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul_sched.pusch.push_back(pusch);
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If any UCI information is triggered, schedule PUCCH
|
|
|
|
if (uci_cfg.ack.count > 0 || uci_cfg.nof_csi > 0 || uci_cfg.o_sr > 0) {
|
|
|
|
ul_sched.pucch.emplace_back();
|
|
|
|
|
|
|
|
uci_cfg.pucch.rnti = rnti;
|
|
|
|
|
|
|
|
mac_interface_phy_nr::pucch_t& pucch = ul_sched.pucch.back();
|
|
|
|
pucch.candidates.emplace_back();
|
|
|
|
pucch.candidates.back().uci_cfg = uci_cfg;
|
|
|
|
if (not phy_cfg.get_pucch_uci_cfg(slot_cfg, uci_cfg, pucch.pucch_cfg, pucch.candidates.back().resource)) {
|
|
|
|
logger.error("Error getting UCI CFG");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this slot has a SR opportunity and the selected PUCCH format is 1, consider positive SR.
|
|
|
|
if (uci_cfg.o_sr > 0 and uci_cfg.ack.count > 0 and
|
|
|
|
pucch.candidates.back().resource.format == SRSRAN_PUCCH_NR_FORMAT_1) {
|
|
|
|
// Set SR negative
|
|
|
|
if (uci_cfg.o_sr > 0) {
|
|
|
|
uci_cfg.sr_positive_present = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append new resource
|
|
|
|
pucch.candidates.emplace_back();
|
|
|
|
pucch.candidates.back().uci_cfg = uci_cfg;
|
|
|
|
if (not phy_cfg.get_pucch_uci_cfg(slot_cfg, uci_cfg, pucch.pucch_cfg, pucch.candidates.back().resource)) {
|
|
|
|
logger.error("Error getting UCI CFG");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise no UL scheduling
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dl_ack_info(uint16_t rnti_, uint32_t cc, uint32_t pid, uint32_t tb_idx, bool ack)
|
|
|
|
{
|
|
|
|
if (not use_dummy_sched) {
|
|
|
|
sched->dl_ack_info(rnti_, cc, pid, tb_idx, ack);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ul_crc_info(uint16_t rnti_, uint32_t cc, uint32_t pid, bool crc)
|
|
|
|
{
|
|
|
|
if (not use_dummy_sched) {
|
|
|
|
sched->ul_crc_info(rnti_, cc, pid, crc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int pucch_info(const srsran_slot_cfg_t& slot_cfg, const pucch_info_t& pucch_info) override
|
|
|
|
{
|
|
|
|
// Handle UCI data
|
|
|
|
if (not handle_uci_data(pucch_info.uci_data.cfg, pucch_info.uci_data.value)) {
|
|
|
|
logger.error("Error handling UCI data from PUCCH reception");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Skip next steps if uci data is invalid
|
|
|
|
if (not pucch_info.uci_data.value.valid) {
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle PHY metrics
|
|
|
|
metrics.pucch.epre_db_avg = SRSRAN_VEC_CMA(pucch_info.csi.epre_dB, metrics.pucch.epre_db_avg, metrics.pucch.count);
|
|
|
|
metrics.pucch.epre_db_min = SRSRAN_MIN(metrics.pucch.epre_db_min, pucch_info.csi.epre_dB);
|
|
|
|
metrics.pucch.epre_db_max = SRSRAN_MAX(metrics.pucch.epre_db_max, pucch_info.csi.epre_dB);
|
|
|
|
metrics.pucch.rsrp_db_avg = SRSRAN_VEC_CMA(pucch_info.csi.rsrp_dB, metrics.pucch.rsrp_db_avg, metrics.pucch.count);
|
|
|
|
metrics.pucch.rsrp_db_min = SRSRAN_MIN(metrics.pucch.rsrp_db_min, pucch_info.csi.rsrp_dB);
|
|
|
|
metrics.pucch.rsrp_db_max = SRSRAN_MAX(metrics.pucch.rsrp_db_max, pucch_info.csi.rsrp_dB);
|
|
|
|
metrics.pucch.snr_db_avg = SRSRAN_VEC_CMA(pucch_info.csi.snr_dB, metrics.pucch.snr_db_avg, metrics.pucch.count);
|
|
|
|
metrics.pucch.snr_db_min = SRSRAN_MIN(metrics.pucch.snr_db_min, pucch_info.csi.snr_dB);
|
|
|
|
metrics.pucch.snr_db_max = SRSRAN_MAX(metrics.pucch.snr_db_max, pucch_info.csi.snr_dB);
|
|
|
|
metrics.pucch.ta_us_avg = SRSRAN_VEC_CMA(pucch_info.csi.delay_us, metrics.pucch.ta_us_avg, metrics.pucch.count);
|
|
|
|
metrics.pucch.ta_us_min = SRSRAN_MIN(metrics.pucch.ta_us_min, pucch_info.csi.delay_us);
|
|
|
|
metrics.pucch.ta_us_max = SRSRAN_MAX(metrics.pucch.ta_us_max, pucch_info.csi.delay_us);
|
|
|
|
metrics.pucch.count++;
|
|
|
|
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
int pusch_info(const srsran_slot_cfg_t& slot_cfg, const pusch_info_t& pusch_info) override
|
|
|
|
{
|
|
|
|
// Handle UCI data
|
|
|
|
if (not handle_uci_data(pusch_info.uci_cfg, pusch_info.pusch_data.uci)) {
|
|
|
|
logger.error("Error handling UCI data from PUCCH reception");
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle UL-SCH metrics
|
|
|
|
std::unique_lock<std::mutex> lock(metrics_mutex);
|
|
|
|
if (not pusch_info.pusch_data.tb[0].crc) {
|
|
|
|
metrics.mac.rx_errors++;
|
|
|
|
}
|
|
|
|
metrics.mac.rx_brate += rx_harq_proc[pusch_info.pid].get_tbs();
|
|
|
|
metrics.mac.rx_pkts++;
|
|
|
|
|
|
|
|
ul_crc_info(rnti, 0, pusch_info.pid, pusch_info.pusch_data.tb[0].crc);
|
|
|
|
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void rach_detected(const rach_info_t& rach_info) override
|
|
|
|
{
|
|
|
|
if (not use_dummy_sched) {
|
|
|
|
srsenb::sched_nr_interface::dl_sched_rar_info_t ra_info;
|
|
|
|
ra_info.preamble_idx = rach_info.preamble;
|
|
|
|
ra_info.ta_cmd = rach_info.time_adv;
|
|
|
|
ra_info.ofdm_symbol_idx = 0;
|
|
|
|
ra_info.msg3_size = 7;
|
|
|
|
ra_info.freq_idx = 0;
|
|
|
|
ra_info.prach_slot = pdsch_slot - TX_ENB_DELAY;
|
|
|
|
ra_info.temp_crnti = rnti;
|
|
|
|
sched->dl_rach_info(0, ra_info);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::unique_lock<std::mutex> lock(metrics_mutex);
|
|
|
|
prach_metrics_t& prach_metrics = metrics.prach[rach_info.preamble];
|
|
|
|
prach_metrics.avg_ta = SRSRAN_VEC_SAFE_CMA((float)rach_info.time_adv, prach_metrics.avg_ta, prach_metrics.count);
|
|
|
|
prach_metrics.count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
metrics_t get_metrics()
|
|
|
|
{
|
|
|
|
std::unique_lock<std::mutex> lock(metrics_mutex);
|
|
|
|
|
|
|
|
return metrics;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SRSRAN_DUMMY_GNB_STACK_H
|