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.
475 lines
13 KiB
C
475 lines
13 KiB
C
6 years ago
|
/*
|
||
|
* Copyright 2013-2019 Software Radio Systems Limited
|
||
8 years ago
|
*
|
||
6 years ago
|
* This file is part of srsLTE.
|
||
8 years ago
|
*
|
||
6 years ago
|
* srsLTE is free software: you can redistribute it and/or modify
|
||
8 years ago
|
* 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.
|
||
|
*
|
||
6 years ago
|
* srsLTE is distributed in the hope that it will be useful,
|
||
8 years ago
|
* 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/.
|
||
|
*
|
||
|
*/
|
||
|
|
||
7 years ago
|
#ifndef SRSUE_PHCH_RECV_H
|
||
|
#define SRSUE_PHCH_RECV_H
|
||
8 years ago
|
|
||
7 years ago
|
#include <map>
|
||
7 years ago
|
#include <pthread.h>
|
||
7 years ago
|
|
||
6 years ago
|
#include "async_scell_recv.h"
|
||
|
#include "phy_common.h"
|
||
|
#include "prach.h"
|
||
|
#include "sf_worker.h"
|
||
8 years ago
|
#include "srslte/common/log.h"
|
||
|
#include "srslte/common/thread_pool.h"
|
||
6 years ago
|
#include "srslte/common/threads.h"
|
||
7 years ago
|
#include "srslte/common/tti_sync_cv.h"
|
||
8 years ago
|
#include "srslte/interfaces/ue_interfaces.h"
|
||
6 years ago
|
#include "srslte/radio/radio_multi.h"
|
||
|
#include "srslte/srslte.h"
|
||
8 years ago
|
|
||
|
namespace srsue {
|
||
|
|
||
7 years ago
|
typedef _Complex float cf_t;
|
||
|
|
||
6 years ago
|
class sync : public thread, public chest_feedback_itf
|
||
8 years ago
|
{
|
||
|
public:
|
||
6 years ago
|
sync();
|
||
|
~sync();
|
||
|
|
||
|
void init(srslte::radio* radio_handler,
|
||
|
mac_interface_phy* mac,
|
||
|
rrc_interface_phy* rrc,
|
||
|
prach* prach_buffer,
|
||
|
srslte::thread_pool* _workers_pool,
|
||
|
phy_common* _worker_com,
|
||
|
srslte::log* _log_h,
|
||
|
srslte::log* _log_phy_lib_h,
|
||
|
async_scell_recv* scell_sync_,
|
||
|
uint32_t prio,
|
||
|
int sync_cpu_affinity = -1);
|
||
8 years ago
|
void stop();
|
||
7 years ago
|
void radio_overflow();
|
||
8 years ago
|
|
||
7 years ago
|
// RRC interface for controling the SYNC state
|
||
7 years ago
|
phy_interface_rrc::cell_search_ret_t cell_search(phy_interface_rrc::phy_cell_t *cell);
|
||
7 years ago
|
bool cell_select(phy_interface_rrc::phy_cell_t *cell);
|
||
|
bool cell_is_camping();
|
||
7 years ago
|
|
||
7 years ago
|
// RRC interface for controlling the neighbour cell measurement
|
||
7 years ago
|
void meas_reset();
|
||
|
int meas_start(uint32_t earfcn, int pci);
|
||
|
int meas_stop(uint32_t earfcn, int pci);
|
||
|
|
||
7 years ago
|
// from chest_feedback_itf
|
||
7 years ago
|
void in_sync();
|
||
7 years ago
|
void out_of_sync();
|
||
7 years ago
|
void set_cfo(float cfo);
|
||
|
|
||
8 years ago
|
void set_time_adv_sec(float time_adv_sec);
|
||
7 years ago
|
void get_current_cell(srslte_cell_t *cell, uint32_t *earfcn = NULL);
|
||
7 years ago
|
uint32_t get_current_tti();
|
||
7 years ago
|
|
||
7 years ago
|
// From UE configuration
|
||
|
void set_agc_enable(bool enable);
|
||
|
void set_earfcn(std::vector<uint32_t> earfcn);
|
||
|
void force_freq(float dl_freq, float ul_freq);
|
||
7 years ago
|
|
||
7 years ago
|
// Other functions
|
||
7 years ago
|
double set_rx_gain(double gain);
|
||
7 years ago
|
int radio_recv_fnc(cf_t *data[SRSLTE_MAX_PORTS], uint32_t nsamples, srslte_timestamp_t *rx_time);
|
||
8 years ago
|
|
||
|
private:
|
||
7 years ago
|
|
||
7 years ago
|
// Class to run cell search
|
||
|
class search {
|
||
|
public:
|
||
|
typedef enum {CELL_NOT_FOUND, CELL_FOUND, ERROR, TIMEOUT} ret_code;
|
||
|
|
||
|
~search();
|
||
6 years ago
|
void init(cf_t* buffer[SRSLTE_MAX_PORTS], srslte::log* log_h, uint32_t nof_rx_antennas, sync* parent);
|
||
7 years ago
|
void reset();
|
||
|
float get_last_cfo();
|
||
7 years ago
|
void set_agc_enable(bool enable);
|
||
7 years ago
|
ret_code run(srslte_cell_t *cell);
|
||
|
|
||
|
private:
|
||
6 years ago
|
sync* p;
|
||
|
srslte::log* log_h;
|
||
7 years ago
|
cf_t *buffer[SRSLTE_MAX_PORTS];
|
||
|
srslte_ue_cellsearch_t cs;
|
||
|
srslte_ue_mib_sync_t ue_mib_sync;
|
||
|
int force_N_id_2;
|
||
|
};
|
||
|
|
||
|
// Class to synchronize system frame number
|
||
|
class sfn_sync {
|
||
|
public:
|
||
7 years ago
|
typedef enum {IDLE, SFN_FOUND, SFX0_FOUND, SFN_NOFOUND, ERROR} ret_code;
|
||
7 years ago
|
|
||
|
~sfn_sync();
|
||
6 years ago
|
void init(srslte_ue_sync_t* ue_sync,
|
||
|
cf_t* buffer[SRSLTE_MAX_PORTS],
|
||
|
srslte::log* log_h,
|
||
|
uint32_t nof_subframes = SFN_SYNC_NOF_SUBFRAMES);
|
||
7 years ago
|
void reset();
|
||
|
bool set_cell(srslte_cell_t cell);
|
||
7 years ago
|
ret_code run_subframe(srslte_cell_t *cell, uint32_t *tti_cnt, bool sfidx_only = false);
|
||
6 years ago
|
ret_code
|
||
|
decode_mib(srslte_cell_t* cell, uint32_t* tti_cnt, cf_t* ext_buffer[SRSLTE_MAX_PORTS], bool sfidx_only = false);
|
||
7 years ago
|
|
||
|
private:
|
||
7 years ago
|
const static int SFN_SYNC_NOF_SUBFRAMES = 100;
|
||
|
|
||
|
uint32_t cnt;
|
||
|
uint32_t timeout;
|
||
7 years ago
|
srslte::log *log_h;
|
||
|
srslte_ue_sync_t *ue_sync;
|
||
|
cf_t *buffer[SRSLTE_MAX_PORTS];
|
||
|
srslte_ue_mib_t ue_mib;
|
||
|
};
|
||
|
|
||
|
// Class to perform cell measurements
|
||
|
class measure {
|
||
7 years ago
|
|
||
|
// TODO: This class could early stop once the variance between the last N measurements is below 3GPP requirements
|
||
|
|
||
7 years ago
|
public:
|
||
|
typedef enum {IDLE, MEASURE_OK, ERROR} ret_code;
|
||
|
|
||
|
~measure();
|
||
6 years ago
|
void init(cf_t* buffer[SRSLTE_MAX_PORTS],
|
||
|
srslte::log* log_h,
|
||
|
uint32_t nof_rx_antennas,
|
||
|
phy_common* worker_com,
|
||
|
uint32_t nof_subframes = RSRP_MEASURE_NOF_FRAMES);
|
||
7 years ago
|
void reset();
|
||
|
void set_cell(srslte_cell_t cell);
|
||
|
ret_code run_subframe(uint32_t sf_idx);
|
||
7 years ago
|
ret_code run_multiple_subframes(cf_t *buffer, uint32_t offset, uint32_t sf_idx, uint32_t nof_sf);
|
||
7 years ago
|
float rssi();
|
||
7 years ago
|
float rsrp();
|
||
|
float rsrq();
|
||
|
float snr();
|
||
7 years ago
|
uint32_t frame_st_idx();
|
||
7 years ago
|
void set_rx_gain_offset(float rx_gain_offset);
|
||
7 years ago
|
private:
|
||
6 years ago
|
srslte::log* log_h;
|
||
7 years ago
|
srslte_ue_dl_t ue_dl;
|
||
6 years ago
|
srslte_ue_dl_cfg_t ue_dl_cfg;
|
||
7 years ago
|
cf_t *buffer[SRSLTE_MAX_PORTS];
|
||
|
uint32_t cnt;
|
||
|
uint32_t nof_subframes;
|
||
7 years ago
|
uint32_t current_prb;
|
||
7 years ago
|
float rx_gain_offset;
|
||
7 years ago
|
float mean_rsrp, mean_rsrq, mean_snr, mean_rssi;
|
||
7 years ago
|
uint32_t final_offset;
|
||
7 years ago
|
const static int RSRP_MEASURE_NOF_FRAMES = 5;
|
||
|
};
|
||
|
|
||
|
// Class to receive secondary cell
|
||
7 years ago
|
class scell_recv {
|
||
7 years ago
|
public:
|
||
7 years ago
|
const static int MAX_CELLS = 8;
|
||
|
typedef struct {
|
||
|
uint32_t pci;
|
||
|
float rsrp;
|
||
|
float rsrq;
|
||
|
uint32_t offset;
|
||
|
} cell_info_t;
|
||
6 years ago
|
void init(srslte::log* log_h, bool sic_pss_enabled, uint32_t max_sf_window, phy_common* worker_com);
|
||
7 years ago
|
void deinit();
|
||
7 years ago
|
void reset();
|
||
7 years ago
|
int find_cells(cf_t *input_buffer, float rx_gain_offset, srslte_cell_t current_cell, uint32_t nof_sf, cell_info_t found_cells[MAX_CELLS]);
|
||
7 years ago
|
private:
|
||
|
|
||
|
cf_t *sf_buffer[SRSLTE_MAX_PORTS];
|
||
7 years ago
|
srslte::log *log_h;
|
||
|
srslte_sync_t sync_find;
|
||
7 years ago
|
|
||
7 years ago
|
bool sic_pss_enabled;
|
||
7 years ago
|
uint32_t current_fft_sz;
|
||
7 years ago
|
measure measure_p;
|
||
|
};
|
||
|
|
||
7 years ago
|
/* TODO: Intra-freq measurements can be improved by capturing 200 ms length signal and run cell search +
|
||
|
* measurements offline using sync object and finding multiple cells for each N_id_2
|
||
|
*/
|
||
|
|
||
|
// Class to perform intra-frequency measurements
|
||
|
class intra_measure : public thread {
|
||
|
public:
|
||
6 years ago
|
intra_measure();
|
||
7 years ago
|
~intra_measure();
|
||
6 years ago
|
void init(phy_common* common, rrc_interface_phy* rrc, srslte::log* log_h);
|
||
7 years ago
|
void stop();
|
||
|
void add_cell(int pci);
|
||
|
void rem_cell(int pci);
|
||
|
void set_primay_cell(uint32_t earfcn, srslte_cell_t cell);
|
||
|
void clear_cells();
|
||
7 years ago
|
int get_offset(uint32_t pci);
|
||
7 years ago
|
void write(uint32_t tti, cf_t *data, uint32_t nsamples);
|
||
|
private:
|
||
|
void run_thread();
|
||
7 years ago
|
const static int INTRA_FREQ_MEAS_PRIO = DEFAULT_PRIORITY + 5;
|
||
|
|
||
7 years ago
|
scell_recv scell;
|
||
6 years ago
|
rrc_interface_phy* rrc;
|
||
7 years ago
|
srslte::log *log_h;
|
||
6 years ago
|
phy_common* common;
|
||
7 years ago
|
uint32_t current_earfcn;
|
||
|
uint32_t current_sflen;
|
||
|
srslte_cell_t primary_cell;
|
||
|
std::vector<int> active_pci;
|
||
|
|
||
|
srslte::tti_sync_cv tti_sync;
|
||
|
|
||
|
cf_t *search_buffer;
|
||
|
|
||
|
scell_recv::cell_info_t info[scell_recv::MAX_CELLS];
|
||
|
|
||
|
bool running;
|
||
|
bool receive_enabled;
|
||
|
bool receiving;
|
||
|
uint32_t measure_tti;
|
||
|
uint32_t receive_cnt;
|
||
|
srslte_ringbuffer_t ring_buffer;
|
||
|
};
|
||
7 years ago
|
|
||
7 years ago
|
// 36.133 9.1.2.1 for band 7
|
||
7 years ago
|
constexpr static float ABSOLUTE_RSRP_THRESHOLD_DBM = -125;
|
||
7 years ago
|
|
||
7 years ago
|
std::vector<uint32_t> earfcn;
|
||
|
|
||
|
void reset();
|
||
|
void radio_error();
|
||
|
void set_ue_sync_opts(srslte_ue_sync_t *q, float cfo);
|
||
|
void run_thread();
|
||
7 years ago
|
float get_tx_cfo();
|
||
7 years ago
|
|
||
|
void set_sampling_rate();
|
||
|
bool set_frequency();
|
||
|
bool set_cell();
|
||
|
|
||
|
bool radio_is_overflow;
|
||
|
bool radio_overflow_return;
|
||
|
bool running;
|
||
7 years ago
|
|
||
|
// Objects for internal use
|
||
|
search search_p;
|
||
|
sfn_sync sfn_p;
|
||
7 years ago
|
intra_measure intra_freq_meas;
|
||
7 years ago
|
|
||
7 years ago
|
uint32_t current_sflen;
|
||
|
int next_offset;
|
||
|
|
||
|
// Pointers to other classes
|
||
8 years ago
|
mac_interface_phy *mac;
|
||
7 years ago
|
rrc_interface_phy *rrc;
|
||
8 years ago
|
srslte::log *log_h;
|
||
6 years ago
|
srslte::log* log_phy_lib_h;
|
||
|
srslte::thread_pool* workers_pool;
|
||
|
srslte::radio* radio_h;
|
||
|
phy_common* worker_com;
|
||
8 years ago
|
prach *prach_buffer;
|
||
6 years ago
|
async_scell_recv* scell_sync;
|
||
7 years ago
|
|
||
7 years ago
|
// Object for synchronization of the primary cell
|
||
6 years ago
|
srslte_ue_sync_t ue_sync;
|
||
7 years ago
|
|
||
6 years ago
|
// Buffer for primary and secondary cell samples
|
||
|
cf_t* sf_buffer[SRSLTE_MAX_RADIOS][SRSLTE_MAX_PORTS];
|
||
8 years ago
|
|
||
|
// Sync metrics
|
||
7 years ago
|
sync_metrics_t metrics;
|
||
8 years ago
|
|
||
7 years ago
|
// in-sync / out-of-sync counters
|
||
|
uint32_t out_of_sync_cnt;
|
||
|
uint32_t in_sync_cnt;
|
||
|
|
||
|
const static uint32_t NOF_OUT_OF_SYNC_SF = 200;
|
||
|
const static uint32_t NOF_IN_SYNC_SF = 100;
|
||
|
|
||
7 years ago
|
// State machine for SYNC thread
|
||
|
class sync_state {
|
||
|
public:
|
||
|
typedef enum {
|
||
|
IDLE = 0,
|
||
|
CELL_SEARCH,
|
||
|
SFN_SYNC,
|
||
|
CAMPING,
|
||
|
} state_t;
|
||
|
|
||
|
/* Run_state is called by the main thread at the start of each loop. It updates the state
|
||
|
* and returns the current state
|
||
|
*/
|
||
|
state_t run_state() {
|
||
|
pthread_mutex_lock(&inside);
|
||
|
cur_state = next_state;
|
||
6 years ago
|
if (state_setting) {
|
||
6 years ago
|
state_setting = false;
|
||
|
state_running = true;
|
||
6 years ago
|
}
|
||
7 years ago
|
pthread_cond_broadcast(&cvar);
|
||
|
pthread_mutex_unlock(&inside);
|
||
|
return cur_state;
|
||
|
}
|
||
|
|
||
|
// Called by the main thread at the end of each state to indicate it has finished.
|
||
7 years ago
|
void state_exit(bool exit_ok = true) {
|
||
7 years ago
|
pthread_mutex_lock(&inside);
|
||
7 years ago
|
if (cur_state == SFN_SYNC && exit_ok == true) {
|
||
|
next_state = CAMPING;
|
||
|
} else {
|
||
|
next_state = IDLE;
|
||
|
}
|
||
6 years ago
|
state_running = false;
|
||
6 years ago
|
pthread_cond_broadcast(&cvar);
|
||
7 years ago
|
pthread_mutex_unlock(&inside);
|
||
|
}
|
||
|
void force_sfn_sync() {
|
||
|
pthread_mutex_lock(&inside);
|
||
|
next_state = SFN_SYNC;
|
||
|
pthread_mutex_unlock(&inside);
|
||
|
}
|
||
|
|
||
|
/* Functions to be called from outside the STM thread to instruct the STM to switch state.
|
||
|
* The functions change the state and wait until it has changed it.
|
||
|
*
|
||
|
* These functions are mutexed and only 1 can be called at a time
|
||
|
*/
|
||
|
void go_idle() {
|
||
|
pthread_mutex_lock(&outside);
|
||
|
go_state(IDLE);
|
||
|
pthread_mutex_unlock(&outside);
|
||
|
}
|
||
|
void run_cell_search() {
|
||
|
pthread_mutex_lock(&outside);
|
||
|
go_state(CELL_SEARCH);
|
||
6 years ago
|
wait_state_run();
|
||
|
wait_state_next();
|
||
7 years ago
|
pthread_mutex_unlock(&outside);
|
||
|
}
|
||
|
void run_sfn_sync() {
|
||
|
pthread_mutex_lock(&outside);
|
||
|
go_state(SFN_SYNC);
|
||
6 years ago
|
wait_state_run();
|
||
|
wait_state_next();
|
||
7 years ago
|
pthread_mutex_unlock(&outside);
|
||
|
}
|
||
|
|
||
|
|
||
|
/* Helpers below this */
|
||
|
bool is_idle() {
|
||
|
return cur_state == IDLE;
|
||
|
}
|
||
|
bool is_camping() {
|
||
|
return cur_state == CAMPING;
|
||
|
}
|
||
|
|
||
7 years ago
|
const char *to_string() {
|
||
|
switch(cur_state) {
|
||
|
case IDLE:
|
||
|
return "IDLE";
|
||
|
case CELL_SEARCH:
|
||
|
return "SEARCH";
|
||
|
case SFN_SYNC:
|
||
|
return "SYNC";
|
||
|
case CAMPING:
|
||
|
return "CAMPING";
|
||
|
default:
|
||
|
return "UNKNOWN";
|
||
|
}
|
||
|
}
|
||
|
|
||
7 years ago
|
sync_state() {
|
||
|
pthread_mutex_init(&inside, NULL);
|
||
|
pthread_mutex_init(&outside, NULL);
|
||
|
pthread_cond_init(&cvar, NULL);
|
||
|
cur_state = IDLE;
|
||
6 years ago
|
next_state = IDLE;
|
||
6 years ago
|
state_setting = false;
|
||
6 years ago
|
state_running = false;
|
||
7 years ago
|
}
|
||
|
private:
|
||
|
|
||
|
void go_state(state_t s) {
|
||
|
pthread_mutex_lock(&inside);
|
||
|
next_state = s;
|
||
6 years ago
|
state_setting = true;
|
||
|
while(state_setting) {
|
||
7 years ago
|
pthread_cond_wait(&cvar, &inside);
|
||
|
}
|
||
|
pthread_mutex_unlock(&inside);
|
||
|
}
|
||
|
|
||
|
/* Waits until there is a call to set_state() and then run_state(). Returns when run_state() returns */
|
||
6 years ago
|
void wait_state_run()
|
||
|
{
|
||
|
pthread_mutex_lock(&inside);
|
||
|
while (state_running) {
|
||
|
pthread_cond_wait(&cvar, &inside);
|
||
|
}
|
||
|
pthread_mutex_unlock(&inside);
|
||
|
}
|
||
|
void wait_state_next()
|
||
|
{
|
||
7 years ago
|
pthread_mutex_lock(&inside);
|
||
6 years ago
|
while (cur_state != next_state) {
|
||
7 years ago
|
pthread_cond_wait(&cvar, &inside);
|
||
|
}
|
||
|
pthread_mutex_unlock(&inside);
|
||
|
}
|
||
|
|
||
6 years ago
|
bool state_running, state_setting;
|
||
7 years ago
|
state_t cur_state, next_state;
|
||
|
pthread_mutex_t inside, outside;
|
||
|
pthread_cond_t cvar;
|
||
|
|
||
|
};
|
||
|
|
||
|
pthread_mutex_t rrc_mutex;
|
||
7 years ago
|
|
||
7 years ago
|
sync_state phy_state;
|
||
7 years ago
|
|
||
7 years ago
|
search::ret_code cell_search_ret;
|
||
7 years ago
|
|
||
7 years ago
|
// Sampling rate mode (find is 1.96 MHz, camp is the full cell BW)
|
||
7 years ago
|
enum {
|
||
|
SRATE_NONE=0, SRATE_FIND, SRATE_CAMP
|
||
|
} srate_mode;
|
||
7 years ago
|
float current_srate;
|
||
8 years ago
|
|
||
7 years ago
|
// This is the primary cell
|
||
7 years ago
|
srslte_cell_t cell;
|
||
7 years ago
|
bool started;
|
||
7 years ago
|
float time_adv_sec, next_time_adv_sec;
|
||
7 years ago
|
uint32_t tti;
|
||
8 years ago
|
bool do_agc;
|
||
6 years ago
|
|
||
|
uint32_t tx_worker_cnt;
|
||
|
uint32_t nof_workers;
|
||
8 years ago
|
|
||
7 years ago
|
float ul_dl_factor;
|
||
7 years ago
|
int current_earfcn;
|
||
|
uint32_t cellsearch_earfcn_index;
|
||
7 years ago
|
|
||
7 years ago
|
float dl_freq;
|
||
|
float ul_freq;
|
||
7 years ago
|
|
||
8 years ago
|
};
|
||
|
|
||
|
} // namespace srsue
|
||
|
|
||
7 years ago
|
#endif // SRSUE_PHCH_RECV_H
|