|
|
|
/**
|
|
|
|
*
|
|
|
|
* \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_SCHED_COMMON_TEST_SUITE_H
|
|
|
|
#define SRSRAN_SCHED_COMMON_TEST_SUITE_H
|
|
|
|
|
|
|
|
#include "srsenb/hdr/stack/mac/sched_common.h"
|
|
|
|
#include "srsenb/hdr/stack/mac/sched_phy_ch/sched_phy_resource.h"
|
|
|
|
#include "srsran/adt/span.h"
|
|
|
|
#include "srsran/common/tti_point.h"
|
|
|
|
#include "srsran/interfaces/sched_interface.h"
|
|
|
|
|
|
|
|
namespace srsenb {
|
|
|
|
|
|
|
|
struct sf_output_res_t {
|
|
|
|
srsran::span<const sched_cell_params_t> cc_params;
|
|
|
|
srsran::tti_point tti_rx;
|
|
|
|
srsran::span<const sched_interface::ul_sched_res_t> ul_cc_result;
|
|
|
|
srsran::span<const sched_interface::dl_sched_res_t> dl_cc_result;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* verifies correctness of the output of PUSCH allocations for a subframe. Current checks:
|
|
|
|
* - individual ul allocs are within (0, n_prb) bounds
|
|
|
|
* - individual ul allocs occupy at least one prb
|
|
|
|
* - no collisions between individual ul allocs
|
|
|
|
* - space is left for PRACH and PUCCH
|
|
|
|
* - if expected_ul_mask arg is not null, assert it matches the cumulative mask of all PUSCH allocations
|
|
|
|
* @param sf_out result of subframe allocation and associated metadata
|
|
|
|
* @param expected_ul_mask optional arg for expected cumulative UL PRB mask
|
|
|
|
* @return error code
|
|
|
|
*/
|
|
|
|
int test_pusch_collisions(const sf_output_res_t& sf_out, uint32_t enb_cc_idx, const prbmask_t* expected_ul_mask);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* verifies correctness of the output of PDSCH allocations for a subframe. Current checks:
|
|
|
|
* - individual DL allocs are within (0, n_prb) bounds
|
|
|
|
* - individual DL allocs occupy at least one RBG
|
|
|
|
* - no collisions between individual DL allocs
|
|
|
|
* - DL data alloc ACKs do not collide with PRACH in UL
|
|
|
|
* - if expected_rbgmask arg is not null, assert it matches the cumulative mask of all PDSCH allocations
|
|
|
|
* @param sf_out result of subframe allocation and associated metadata
|
|
|
|
* @param expected_rbgmask optional arg for expected cumulative DL RBG mask
|
|
|
|
* @return error code
|
|
|
|
*/
|
|
|
|
int test_pdsch_collisions(const sf_output_res_t& sf_out, uint32_t enb_cc_idx, const rbgmask_t* expected_rbgmask);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* verifies correctness of SIB allocations. Current checks:
|
|
|
|
* - SIB1 is allocated in correct TTIs
|
|
|
|
* - TB size is adequate for SIB allocation
|
|
|
|
* - The SIBs with index>1 are allocated in expected TTI windows
|
|
|
|
* @param sf_out result of subframe allocation and associated metadata
|
|
|
|
* @return error code
|
|
|
|
*/
|
|
|
|
int test_sib_scheduling(const sf_output_res_t& sf_out, uint32_t enb_cc_idx);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* verifies correctness of PDCCH allocations for DL, RAR, UL, Broadcast. Current checks:
|
|
|
|
* - DCI CCE positions fit in available PDCCH resources
|
|
|
|
* - no collisions between individual DCI CCE positions
|
|
|
|
* @param sf_out
|
|
|
|
* @param used_cce
|
|
|
|
* @return error code
|
|
|
|
*/
|
|
|
|
int test_pdcch_collisions(const sf_output_res_t& sf_out,
|
|
|
|
uint32_t enb_cc_idx,
|
|
|
|
const srsran::bounded_bitset<128, true>* expected_cce_mask);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* verifies correctness of DCI content for params that are independent of the UE configuration.
|
|
|
|
* - TB size is large enough
|
|
|
|
* - No repeated rntis in PDSCH and PUSCH
|
|
|
|
* @param sf_out
|
|
|
|
* @return error code
|
|
|
|
*/
|
|
|
|
int test_dci_content_common(const sf_output_res_t& sf_out, uint32_t enb_cc_idx);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call all available eNB common tests
|
|
|
|
* @return error code
|
|
|
|
*/
|
|
|
|
int test_all_common(const sf_output_res_t& sf_out);
|
|
|
|
|
|
|
|
/// Helper function to get DL PRBs from DCI
|
|
|
|
int extract_dl_prbmask(const srsran_cell_t& cell,
|
|
|
|
const srsran_dci_dl_t& dci,
|
|
|
|
srsran::bounded_bitset<100, true>& alloc_mask);
|
|
|
|
|
|
|
|
} // namespace srsenb
|
|
|
|
|
|
|
|
#endif // SRSRAN_SCHED_COMMON_TEST_SUITE_H
|