GNSS-SDR  0.0.17
An Open Source GNSS Software Defined Receiver
gps_l2_m_pcps_acquisition_fpga.h
Go to the documentation of this file.
1 /*!
2  * \file gps_l2_m_pcps_acquisition_fpga.h
3  * \brief Adapts an FPGA-offloaded PCPS acquisition block
4  * to an AcquisitionInterface for GPS L2 M signals
5  * \authors <ul>
6  * <li> Javier Arribas, 2019. jarribas(at)cttc.es
7  * </ul>
8  *
9  * -----------------------------------------------------------------------------
10  *
11  * GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
12  * This file is part of GNSS-SDR.
13  *
14  * Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
15  * SPDX-License-Identifier: GPL-3.0-or-later
16  *
17  * -----------------------------------------------------------------------------
18  */
19 
20 #ifndef GNSS_SDR_GPS_L2_M_PCPS_ACQUISITION_FPGA_H
21 #define GNSS_SDR_GPS_L2_M_PCPS_ACQUISITION_FPGA_H
22 
23 #include "channel_fsm.h"
24 #include "pcps_acquisition_fpga.h"
25 #include <gnuradio/runtime_types.h> // for basic_block_sptr, top_block_sptr
26 #include <volk_gnsssdr/volk_gnsssdr_alloc.h>
27 #include <cstddef> // for size_t
28 #include <memory> // for weak_ptr
29 #include <string> // for string
30 
31 /** \addtogroup Acquisition
32  * \{ */
33 /** \addtogroup Acq_adapters
34  * \{ */
35 
36 
37 class Gnss_Synchro;
39 
40 /*!
41  * \brief This class adapts a PCPS acquisition block off-loaded on an FPGA
42  * to an AcquisitionInterface for GPS L2 M signals
43  */
45 {
46 public:
48  const ConfigurationInterface* configuration,
49  const std::string& role,
50  unsigned int in_streams,
51  unsigned int out_streams);
52 
53  ~GpsL2MPcpsAcquisitionFpga() = default;
54 
55  inline std::string role() override
56  {
57  return role_;
58  }
59 
60  /*!
61  * \brief Returns "GPS_L2_M_PCPS_Acquisition_Fpga"
62  */
63  inline std::string implementation() override
64  {
65  return "GPS_L2_M_PCPS_Acquisition_Fpga";
66  }
67 
68  inline size_t item_size() override
69  {
70  return sizeof(float);
71  }
72 
73  void connect(gr::top_block_sptr top_block) override;
74  void disconnect(gr::top_block_sptr top_block) override;
75  gr::basic_block_sptr get_left_block() override;
76  gr::basic_block_sptr get_right_block() override;
77 
78  /*!
79  * \brief Set acquisition/tracking common Gnss_Synchro object pointer
80  * to efficiently exchange synchronization data between acquisition and
81  * tracking blocks
82  */
83  void set_gnss_synchro(Gnss_Synchro* p_gnss_synchro) override;
84 
85  /*!
86  * \brief Set acquisition channel unique ID
87  */
88  inline void set_channel(unsigned int channel) override
89  {
90  channel_ = channel;
91  acquisition_fpga_->set_channel(channel_);
92  }
93 
94  /*!
95  * \brief Set channel fsm associated to this acquisition instance
96  */
97  inline void set_channel_fsm(std::weak_ptr<ChannelFsm> channel_fsm) override
98  {
99  channel_fsm_ = channel_fsm;
100  acquisition_fpga_->set_channel_fsm(channel_fsm);
101  }
102 
103  /*!
104  * \brief Set statistics threshold of PCPS algorithm
105  */
106  void set_threshold(float threshold) override;
107 
108  /*!
109  * \brief Set maximum Doppler off grid search
110  */
111  void set_doppler_max(unsigned int doppler_max) override;
112 
113  /*!
114  * \brief Set Doppler steps for the grid search
115  */
116  void set_doppler_step(unsigned int doppler_step) override;
117 
118  /*!
119  * \brief Initializes acquisition algorithm.
120  */
121  void init() override;
122 
123  /*!
124  * \brief Sets local code for GPS L2/M PCPS acquisition algorithm.
125  */
126  void set_local_code() override;
127 
128  /*!
129  * \brief Returns the maximum peak of grid search
130  */
131  signed int mag() override;
132 
133  /*!
134  * \brief Restart acquisition algorithm
135  */
136  void reset() override;
137 
138  /*!
139  * \brief If state = 1, it forces the block to start acquiring from the first sample
140  */
141  void set_state(int state) override;
142 
143  /*!
144  * \brief Stop running acquisition
145  */
146  void stop_acquisition() override;
147 
148  void set_resampler_latency(uint32_t latency_samples __attribute__((unused))) override{};
149 
150 private:
151  const std::string acquisition_device_name = "acquisition_S00_AXI"; // UIO device name
152 
153  static const uint32_t NUM_PRNs = 32;
154  static const uint32_t QUANT_BITS_LOCAL_CODE = 16;
155  static const uint32_t SELECT_LSBits = 0x0000FFFF; // Select the 10 LSbits out of a 20-bit word
156  static const uint32_t SELECT_MSBbits = 0xFFFF0000; // Select the 10 MSbits out of a 20-bit word
157  static const uint32_t SELECT_ALL_CODE_BITS = 0xFFFFFFFF; // Select a 20 bit word
158  static const uint32_t SHL_CODE_BITS = 65536; // shift left by 10 bits
159 
160  pcps_acquisition_fpga_sptr acquisition_fpga_;
161  volk_gnsssdr::vector<uint32_t> d_all_fft_codes_; // memory that contains all the code ffts
162  std::weak_ptr<ChannelFsm> channel_fsm_;
163  Gnss_Synchro* gnss_synchro_;
164  std::string item_type_;
165  std::string dump_filename_;
166  std::string role_;
167  int64_t fs_in_;
168  float threshold_;
169  unsigned int channel_;
170  unsigned int doppler_max_;
171  unsigned int doppler_step_;
172  unsigned int in_streams_;
173  unsigned int out_streams_;
174 };
175 
176 
177 /** \} */
178 /** \} */
179 #endif // GNSS_SDR_GPS_L2_M_PCPS_ACQUISITION_FPGA_H
void set_channel_fsm(std::weak_ptr< ChannelFsm > channel_fsm) override
Set channel fsm associated to this acquisition instance.
void reset() override
Restart acquisition algorithm.
signed int mag() override
Returns the maximum peak of grid search.
void init() override
Initializes acquisition algorithm.
void set_doppler_max(unsigned int doppler_max) override
Set maximum Doppler off grid search.
Interface of the State Machine for channel.
This abstract class represents an interface to an acquisition GNSS block.
void set_gnss_synchro(Gnss_Synchro *p_gnss_synchro) override
Set acquisition/tracking common Gnss_Synchro object pointer to efficiently exchange synchronization d...
This is the class that contains the information that is shared by the processing blocks.
Definition: gnss_synchro.h:38
This abstract class represents an interface to configuration parameters.
std::string implementation() override
Returns "GPS_L2_M_PCPS_Acquisition_Fpga".
void set_state(int state) override
If state = 1, it forces the block to start acquiring from the first sample.
This class implements a Parallel Code Phase Search Acquisition for the FPGA.
void set_threshold(float threshold) override
Set statistics threshold of PCPS algorithm.
void set_local_code() override
Sets local code for GPS L2/M PCPS acquisition algorithm.
void stop_acquisition() override
Stop running acquisition.
This class adapts a PCPS acquisition block off-loaded on an FPGA to an AcquisitionInterface for GPS L...
void set_doppler_step(unsigned int doppler_step) override
Set Doppler steps for the grid search.
void set_channel(unsigned int channel) override
Set acquisition channel unique ID.