mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.8 KiB
C
102 lines
2.8 KiB
C
4 years ago
|
/**
|
||
6 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
6 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2020 Software Radio Systems Limited
|
||
6 years ago
|
*
|
||
4 years ago
|
* 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.
|
||
6 years ago
|
*
|
||
|
*/
|
||
|
|
||
4 years ago
|
#ifndef SRSUE_LTE_SF_WORKER_H
|
||
|
#define SRSUE_LTE_SF_WORKER_H
|
||
6 years ago
|
|
||
|
#include "cc_worker.h"
|
||
|
#include "srslte/common/thread_pool.h"
|
||
|
#include "srslte/srslte.h"
|
||
4 years ago
|
#include "srsue/hdr/phy/phy_common.h"
|
||
6 years ago
|
#include <string.h>
|
||
|
|
||
|
namespace srsue {
|
||
4 years ago
|
namespace lte {
|
||
6 years ago
|
|
||
|
/**
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
class sf_worker : public srslte::thread_pool::worker
|
||
|
{
|
||
|
public:
|
||
4 years ago
|
sf_worker(uint32_t max_prb, phy_common* phy, srslte::log* log);
|
||
6 years ago
|
virtual ~sf_worker();
|
||
|
|
||
4 years ago
|
void reset_cell_unlocked(uint32_t cc_idx);
|
||
|
bool set_cell_unlocked(uint32_t cc_idx, srslte_cell_t cell_);
|
||
6 years ago
|
|
||
|
/* Functions used by main PHY thread */
|
||
5 years ago
|
cf_t* get_buffer(uint32_t cc_idx, uint32_t antenna_idx);
|
||
|
uint32_t get_buffer_len();
|
||
|
void set_tti(uint32_t tti);
|
||
5 years ago
|
void set_tx_time(const srslte::rf_timestamp_t& tx_time);
|
||
5 years ago
|
void set_prach(cf_t* prach_ptr, float prach_power);
|
||
4 years ago
|
void set_cfo_unlocked(const uint32_t& cc_idx, float cfo);
|
||
6 years ago
|
|
||
4 years ago
|
void set_tdd_config_unlocked(srslte_tdd_config_t config);
|
||
|
void set_config_unlocked(uint32_t cc_idx, srslte::phy_cfg_t phy_cfg);
|
||
|
void set_crnti_unlocked(uint16_t rnti);
|
||
|
void enable_pregen_signals_unlocked(bool enabled);
|
||
6 years ago
|
|
||
5 years ago
|
///< Methods for plotting called from GUI thread
|
||
6 years ago
|
int read_ce_abs(float* ce_abs, uint32_t tx_antenna, uint32_t rx_antenna);
|
||
|
uint32_t get_cell_nof_ports()
|
||
|
{
|
||
5 years ago
|
// wait until cell is initialized
|
||
4 years ago
|
std::unique_lock<std::mutex> lock(cell_mutex);
|
||
5 years ago
|
while (!cell_initiated) {
|
||
|
cell_init_cond.wait(lock);
|
||
6 years ago
|
}
|
||
5 years ago
|
return cell.nof_ports;
|
||
6 years ago
|
}
|
||
|
uint32_t get_rx_nof_antennas() { return phy->args->nof_rx_ant; }
|
||
|
int read_pdsch_d(cf_t* pdsch_d);
|
||
6 years ago
|
float get_cfo();
|
||
6 years ago
|
void start_plot();
|
||
|
|
||
|
private:
|
||
|
/* Inherited from thread_pool::worker. Function called every subframe to run the DL/UL processing */
|
||
5 years ago
|
void work_imp() final;
|
||
6 years ago
|
|
||
|
void update_measurements();
|
||
|
void reset_uci(srslte_uci_data_t* uci_data);
|
||
|
|
||
|
std::vector<cc_worker*> cc_workers;
|
||
|
|
||
5 years ago
|
phy_common* phy = nullptr;
|
||
5 years ago
|
|
||
5 years ago
|
srslte::log* log_h = nullptr;
|
||
5 years ago
|
|
||
4 years ago
|
srslte_cell_t cell = {};
|
||
|
std::mutex cell_mutex;
|
||
5 years ago
|
srslte_tdd_config_t tdd_config = {};
|
||
6 years ago
|
|
||
5 years ago
|
std::condition_variable cell_init_cond;
|
||
5 years ago
|
bool cell_initiated = false;
|
||
6 years ago
|
|
||
5 years ago
|
cf_t* prach_ptr = nullptr;
|
||
|
float prach_power = 0;
|
||
6 years ago
|
|
||
5 years ago
|
uint32_t tti = 0;
|
||
|
srslte::rf_timestamp_t tx_time = {};
|
||
6 years ago
|
};
|
||
|
|
||
4 years ago
|
} // namespace lte
|
||
6 years ago
|
} // namespace srsue
|
||
|
|
||
4 years ago
|
#endif // SRSUE_LTE_SF_WORKER_H
|