srsLTE/srsue/hdr/phy/lte/sf_worker.h

98 lines
2.7 KiB
C
Raw Normal View History

/**
2019-04-23 01:53:11 -07:00
*
* \section COPYRIGHT
2019-04-23 01:53:11 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2019-04-23 01:53:11 -07:00
*
* 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.
2019-04-23 01:53:11 -07:00
*
*/
#ifndef SRSUE_LTE_SF_WORKER_H
#define SRSUE_LTE_SF_WORKER_H
2019-04-23 01:53:11 -07:00
#include "cc_worker.h"
2021-03-19 03:45:56 -07:00
#include "srsran/common/thread_pool.h"
#include "srsran/srsran.h"
#include "srsue/hdr/phy/phy_common.h"
2019-04-23 01:53:11 -07:00
#include <string.h>
namespace srsue {
namespace lte {
2019-04-23 01:53:11 -07:00
/**
* The sf_worker class handles the PHY processing, UL and DL procedures associated with 1 subframe.
* It contains multiple cc_worker objects, one for each component carrier which may be executed in
* one or multiple threads.
*
* A sf_worker object is executed by a thread within the thread_pool.
*/
2021-03-19 03:45:56 -07:00
class sf_worker : public srsran::thread_pool::worker
2019-04-23 01:53:11 -07:00
{
public:
Upgrade loggers in srsue (#2163) * Replaced UE logger in the ue class. * Replaced loggers in the main phy class and prach. * Replaced loggers in phy common and ta_control. * Replace loggers in cc and sf workers. * Replaced loggers in intra_measure, scell_recv, search, sfn_sync, sync. * Remove last uses of the old loggers in the main phy class. * Remove stray newline in logs. * Replaced loggers in ue gw. * - Started to replace loggers in the ue stack. - Replaced loggers in usim and pcsc. - Adapted nas and usim tests. * Replace loggers in nas. * Added missing log init calls in two previously modified tests. * Replaced logger in nas idle procs. * Replaced loggers in nas emm state. * Replaced loggers in tft packet filter and adapted tft test. * Replaced loggers in main RRC class. * Replaced loggers in RRC cell. * Replaced loggers in RRC meas. * Replaced loggers in rrc procedures. * Started logger replacement in MAC layer, more precisely in demux and dl_harq classes. Been unable to inject loggers in construction for dl_tb_process due to very weird static assertions in the std::vector code being the type not constructible which is not true, so instead use the main MAC logger directly. * Replaced loggers in mac mux class. * Replaced loggers in mac pro_bsr. * Replaced loggers in mac proc phr. * Replaced loggers in mac proc SR and RA. * Replace loggers in mac UL HARQ. * Replaced loggers in main ue stack class. * Fixed nas test crashing due to a null string. * Ported mac_test to use the new loggers. * Removed TTI reporting for the PHY log as the old logger did. * Replaced loggers in UE phy tests. * Configure loggers in nas_test. * Replaced loggers in rrc_meas_test. * Replaced loggers in rrc_reconfig_test. * Added missing newline in tft_test. * Fix compilation errors in TTCN3 tests. * Fix linker error detected in CI and warning. * Replaced loggers in TTCN3 tests. * Fix a text replace error in some log messages. * Remove trailing newlines from log entries. * Remove old logger from rrc. * Flush backend before printing the test status. * - Fix compilation error from previous rebase. - Remove trailing newlines from some missing log entries.
2021-01-28 08:17:43 -08:00
sf_worker(uint32_t max_prb, phy_common* phy_, srslog::basic_logger& logger);
2019-04-23 01:53:11 -07:00
virtual ~sf_worker();
void reset_cell_nolock(uint32_t cc_idx);
bool set_cell_nolock(uint32_t cc_idx, srsran_cell_t cell_);
2019-04-23 01:53:11 -07:00
/* Functions used by main PHY thread */
cf_t* get_buffer(uint32_t cc_idx, uint32_t antenna_idx);
uint32_t get_buffer_len();
void set_context(const srsran::phy_common_interface::worker_context_t& w_ctx);
void set_prach(cf_t* prach_ptr, float prach_power);
void set_cfo_nolock(const uint32_t& cc_idx, float cfo);
2019-04-23 01:53:11 -07:00
void set_tdd_config_nolock(srsran_tdd_config_t config);
void set_config_nolock(uint32_t cc_idx, const srsran::phy_cfg_t& phy_cfg);
2019-04-23 01:53:11 -07:00
///< Methods for plotting called from GUI thread
2019-04-23 01:53:11 -07:00
int read_ce_abs(float* ce_abs, uint32_t tx_antenna, uint32_t rx_antenna);
uint32_t get_cell_nof_ports()
{
// wait until cell is initialized
std::unique_lock<std::mutex> lock(cell_mutex);
while (!cell_initiated) {
cell_init_cond.wait(lock);
2019-04-23 01:53:11 -07:00
}
return cell.nof_ports;
2019-04-23 01:53:11 -07:00
}
uint32_t get_rx_nof_antennas() { return phy->args->nof_rx_ant; }
int read_pdsch_d(cf_t* pdsch_d);
float get_cfo();
2019-04-23 01:53:11 -07:00
void start_plot();
private:
/* Inherited from thread_pool::worker. Function called every subframe to run the DL/UL processing */
void work_imp() final;
2019-04-23 01:53:11 -07:00
void update_measurements();
2021-03-19 03:45:56 -07:00
void reset_uci(srsran_uci_data_t* uci_data);
2019-04-23 01:53:11 -07:00
std::vector<cc_worker*> cc_workers;
phy_common* phy = nullptr;
Upgrade loggers in srsue (#2163) * Replaced UE logger in the ue class. * Replaced loggers in the main phy class and prach. * Replaced loggers in phy common and ta_control. * Replace loggers in cc and sf workers. * Replaced loggers in intra_measure, scell_recv, search, sfn_sync, sync. * Remove last uses of the old loggers in the main phy class. * Remove stray newline in logs. * Replaced loggers in ue gw. * - Started to replace loggers in the ue stack. - Replaced loggers in usim and pcsc. - Adapted nas and usim tests. * Replace loggers in nas. * Added missing log init calls in two previously modified tests. * Replaced logger in nas idle procs. * Replaced loggers in nas emm state. * Replaced loggers in tft packet filter and adapted tft test. * Replaced loggers in main RRC class. * Replaced loggers in RRC cell. * Replaced loggers in RRC meas. * Replaced loggers in rrc procedures. * Started logger replacement in MAC layer, more precisely in demux and dl_harq classes. Been unable to inject loggers in construction for dl_tb_process due to very weird static assertions in the std::vector code being the type not constructible which is not true, so instead use the main MAC logger directly. * Replaced loggers in mac mux class. * Replaced loggers in mac pro_bsr. * Replaced loggers in mac proc phr. * Replaced loggers in mac proc SR and RA. * Replace loggers in mac UL HARQ. * Replaced loggers in main ue stack class. * Fixed nas test crashing due to a null string. * Ported mac_test to use the new loggers. * Removed TTI reporting for the PHY log as the old logger did. * Replaced loggers in UE phy tests. * Configure loggers in nas_test. * Replaced loggers in rrc_meas_test. * Replaced loggers in rrc_reconfig_test. * Added missing newline in tft_test. * Fix compilation errors in TTCN3 tests. * Fix linker error detected in CI and warning. * Replaced loggers in TTCN3 tests. * Fix a text replace error in some log messages. * Remove trailing newlines from log entries. * Remove old logger from rrc. * Flush backend before printing the test status. * - Fix compilation error from previous rebase. - Remove trailing newlines from some missing log entries.
2021-01-28 08:17:43 -08:00
srslog::basic_logger& logger;
2021-03-19 03:45:56 -07:00
srsran_cell_t cell = {};
std::mutex cell_mutex;
2021-03-19 03:45:56 -07:00
srsran_tdd_config_t tdd_config = {};
2019-04-23 01:53:11 -07:00
std::condition_variable cell_init_cond;
bool cell_initiated = false;
2019-04-23 01:53:11 -07:00
cf_t* prach_ptr = nullptr;
float prach_power = 0;
2019-04-23 01:53:11 -07:00
srsran::phy_common_interface::worker_context_t context = {};
2019-04-23 01:53:11 -07:00
};
} // namespace lte
2019-04-23 01:53:11 -07:00
} // namespace srsue
#endif // SRSUE_LTE_SF_WORKER_H