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.
107 lines
3.2 KiB
C++
107 lines
3.2 KiB
C++
/**
|
|
* Copyright 2013-2023 Software Radio Systems Limited
|
|
*
|
|
* This file is part of srsRAN.
|
|
*
|
|
* srsRAN is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* srsRAN is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero General Public License can be found in
|
|
* the LICENSE file in the top-level directory of this distribution
|
|
* and at http://www.gnu.org/licenses/.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSUE_LTE_SF_WORKER_H
|
|
#define SRSUE_LTE_SF_WORKER_H
|
|
|
|
#include "cc_worker.h"
|
|
#include "srsran/common/thread_pool.h"
|
|
#include "srsran/srsran.h"
|
|
#include "srsue/hdr/phy/phy_common.h"
|
|
#include <string.h>
|
|
|
|
namespace srsue {
|
|
namespace lte {
|
|
|
|
/**
|
|
* 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 srsran::thread_pool::worker
|
|
{
|
|
public:
|
|
sf_worker(uint32_t max_prb, phy_common* phy_, srslog::basic_logger& logger);
|
|
virtual ~sf_worker();
|
|
|
|
void reset_cell_nolock(uint32_t cc_idx);
|
|
bool set_cell_nolock(uint32_t cc_idx, srsran_cell_t cell_);
|
|
|
|
/* 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);
|
|
|
|
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);
|
|
|
|
///< Methods for plotting called from GUI thread
|
|
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);
|
|
}
|
|
return cell.nof_ports;
|
|
}
|
|
uint32_t get_rx_nof_antennas() { return phy->args->nof_rx_ant; }
|
|
int read_pdsch_d(cf_t* pdsch_d);
|
|
float get_cfo();
|
|
void start_plot();
|
|
|
|
private:
|
|
/* Inherited from thread_pool::worker. Function called every subframe to run the DL/UL processing */
|
|
void work_imp() final;
|
|
|
|
void update_measurements();
|
|
void reset_uci(srsran_uci_data_t* uci_data);
|
|
|
|
std::vector<cc_worker*> cc_workers;
|
|
|
|
phy_common* phy = nullptr;
|
|
|
|
srslog::basic_logger& logger;
|
|
|
|
srsran_cell_t cell = {};
|
|
std::mutex cell_mutex;
|
|
srsran_tdd_config_t tdd_config = {};
|
|
|
|
std::condition_variable cell_init_cond;
|
|
bool cell_initiated = false;
|
|
|
|
cf_t* prach_ptr = nullptr;
|
|
float prach_power = 0;
|
|
|
|
srsran::phy_common_interface::worker_context_t context = {};
|
|
};
|
|
|
|
} // namespace lte
|
|
} // namespace srsue
|
|
|
|
#endif // SRSUE_LTE_SF_WORKER_H
|