srsLTE/srsue/hdr/phy/sf_worker.h

116 lines
3.4 KiB
C++

/*
* Copyright 2013-2019 Software Radio Systems Limited
*
* This file is part of srsLTE.
*
* srsLTE 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.
*
* srsLTE 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_PHCH_WORKER_H
#define SRSUE_PHCH_WORKER_H
#include "cc_worker.h"
#include "phy_common.h"
#include "srslte/common/thread_pool.h"
#include "srslte/srslte.h"
#include <string.h>
namespace srsue {
/**
* 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:
sf_worker(
uint32_t max_prb, phy_common* phy, srslte::log* log, srslte::log* log_phy_lib_h, chest_feedback_itf* chest_loop);
virtual ~sf_worker();
void reset();
bool set_cell(uint32_t cc_idx, srslte_cell_t cell);
/* Functions used by main PHY thread */
cf_t* get_buffer(uint32_t cc_idx, uint32_t antenna_idx);
void set_tti(uint32_t tti, uint32_t tx_worker_cnt);
void set_tx_time(uint32_t radio_idx, srslte_timestamp_t tx_time, int next_offset);
void set_prach(cf_t* prach_ptr, float prach_power);
void set_cfo(const uint32_t& cc_idx, float cfo);
void set_tdd_config(srslte_tdd_config_t config);
void set_pcell_config(phy_interface_rrc_lte::phy_cfg_t* phy_cfg);
void set_scell_config(uint32_t cc_idx, asn1::rrc::scell_to_add_mod_r10_s* scell_config);
void set_crnti(uint16_t rnti);
void enable_pregen_signals(bool enabled);
/* Methods for plotting */
int read_ce_abs(float* ce_abs, uint32_t tx_antenna, uint32_t rx_antenna);
uint32_t get_cell_nof_ports()
{
if (cell_initiated) {
return cell.nof_ports;
} else {
return 1;
}
}
uint32_t get_rx_nof_antennas() { return phy->args->nof_rx_ant; }
int read_pdsch_d(cf_t* pdsch_d);
float get_sync_error();
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();
void reset_();
void update_measurements();
void reset_uci(srslte_uci_data_t* uci_data);
std::vector<cc_worker*> cc_workers;
phy_common* phy;
srslte::log* log_h;
srslte::log* log_phy_lib_h;
chest_feedback_itf* chest_loop;
pthread_mutex_t mutex;
srslte_cell_t cell;
srslte_tdd_config_t tdd_config;
bool cell_initiated;
cf_t* prach_ptr;
float prach_power;
uint32_t tti;
srslte_timestamp_t tx_time[SRSLTE_MAX_RADIOS];
uint32_t tx_sem_id;
int next_offset[SRSLTE_MAX_RADIOS];
uint32_t rssi_read_cnt;
};
} // namespace srsue
#endif // SRSUE_PHCH_WORKER_H