/*! * \file galileo_e5b_pcps_acquisition_fpga.h * \brief Adapts a PCPS acquisition block to an AcquisitionInterface for * Galileo E5b data and pilot Signals for the FPGA * \author Piyush Gupta, 2020. piyush04111999@gmail.com * \note Code added as part of GSoC 2020 Program. * * ----------------------------------------------------------------------------- * * GNSS-SDR is a Global Navigation Satellite System software-defined receiver. * This file is part of GNSS-SDR. * * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors) * SPDX-License-Identifier: GPL-3.0-or-later * * ----------------------------------------------------------------------------- */ #ifndef GNSS_SDR_GALILEO_E5B_PCPS_ACQUISITION_FPGA_H #define GNSS_SDR_GALILEO_E5B_PCPS_ACQUISITION_FPGA_H #include "channel_fsm.h" #include "gnss_synchro.h" #include "pcps_acquisition_fpga.h" #include #include #include /** \addtogroup Acquisition * \{ */ /** \addtogroup Acq_adapters * \{ */ class ConfigurationInterface; /*! * \brief This class adapts a PCPS acquisition block off-loaded on an FPGA * to an AcquisitionInterface for Galileo E5b signals */ class GalileoE5bPcpsAcquisitionFpga : public AcquisitionInterface { public: /*! * \brief Constructor */ GalileoE5bPcpsAcquisitionFpga(const ConfigurationInterface* configuration, const std::string& role, unsigned int in_streams, unsigned int out_streams); /*! * \brief Destructor */ ~GalileoE5bPcpsAcquisitionFpga() = default; /*! * \brief Role */ inline std::string role() override { return role_; } /*! * \brief Returns "Galileo_E5b_Pcps_Acquisition_Fpga" */ inline std::string implementation() override { return "Galileo_E5b_PCPS_Acquisition_FPGA"; } /*! * \brief Returns size of lv_16sc_t */ inline size_t item_size() override { return sizeof(int16_t); } /*! * \brief Connect */ void connect(gr::top_block_sptr top_block) override; /*! * \brief Disconnect */ void disconnect(gr::top_block_sptr top_block) override; /*! * \brief Get left block */ gr::basic_block_sptr get_left_block() override; /*! * \brief Get right block */ gr::basic_block_sptr get_right_block() override; /*! * \brief Set acquisition/tracking common Gnss_Synchro object pointer * to efficiently exchange synchronization data between acquisition and * tracking blocks */ void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) override; /*! * \brief Set acquisition channel unique ID */ inline void set_channel(unsigned int channel) override { channel_ = channel; acquisition_fpga_->set_channel(channel_); } /*! * \brief Set channel fsm associated to this acquisition instance */ inline void set_channel_fsm(std::weak_ptr channel_fsm) override { channel_fsm_ = channel_fsm; acquisition_fpga_->set_channel_fsm(channel_fsm); } /*! * \brief Set statistics threshold of PCPS algorithm */ void set_threshold(float threshold) override; /*! * \brief Set maximum Doppler off grid search */ void set_doppler_max(unsigned int doppler_max) override; /*! * \brief Set Doppler steps for the grid search */ void set_doppler_step(unsigned int doppler_step) override; /*! * \brief Set Doppler center for the grid search */ void set_doppler_center(int doppler_center) override; /*! * \brief Initializes acquisition algorithm. */ void init() override; /*! * \brief Sets local Galileo E5b code for PCPS acquisition algorithm. */ void set_local_code() override; /*! * \brief Returns the maximum peak of grid search */ signed int mag() override; /*! * \brief Restart acquisition algorithm */ void reset() override; /*! * \brief If set to 1, ensures that acquisition starts at the * first available sample. * \param state - int=1 forces start of acquisition */ void set_state(int state) override; /*! * \brief This function is only used in the unit tests */ void set_single_doppler_flag(unsigned int single_doppler_flag); /*! * \brief Stop running acquisition */ void stop_acquisition() override; /*! * \brief Set resampler latency */ void set_resampler_latency(uint32_t latency_samples __attribute__((unused))) override{}; private: const std::string acquisition_device_name = "acquisition_S00_AXI"; // UIO device name // the following flags are FPGA-specific and they are using arrange the values of the fft of the local code in the way the FPGA // expects. This arrangement is done in the initialisation to avoid consuming unnecessary clock cycles during tracking. static const uint32_t quant_bits_local_code = 16; static const uint32_t select_lsbits = 0x0000FFFF; // Select the 10 LSbits out of a 20-bit word static const uint32_t select_msbits = 0xFFFF0000; // Select the 10 MSbits out of a 20-bit word static const uint32_t select_all_code_bits = 0xFFFFFFFF; // Select a 20 bit word static const uint32_t shl_code_bits = 65536; // shift left by 10 bits pcps_acquisition_fpga_sptr acquisition_fpga_; volk_gnsssdr::vector d_all_fft_codes_; // memory that contains all the code ffts std::weak_ptr channel_fsm_; Gnss_Synchro* gnss_synchro_; std::string item_type_; std::string dump_filename_; std::string role_; int32_t doppler_center_; uint32_t channel_; uint32_t doppler_max_; uint32_t doppler_step_; unsigned int in_streams_; unsigned int out_streams_; bool acq_pilot_; bool acq_iq_; }; /** \} */ /** \} */ #endif // GNSS_SDR_GALILEO_E5B_PCPS_ACQUISITION_FPGA_H