/*! * \file fpga_multicorrelator_8sc.cc * \brief High optimized CPU vector multiTAP correlator class * \authors * * Class that implements a high optimized vector multiTAP correlator class for CPUs * * ------------------------------------------------------------------------- * * Copyright (C) 2010-2015 (see AUTHORS file for a list of contributors) * * GNSS-SDR is a software defined Global Navigation * Satellite Systems receiver * * This file is part of GNSS-SDR. * * GNSS-SDR is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * GNSS-SDR 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with GNSS-SDR. If not, see . * * ------------------------------------------------------------------------- */ #include "fpga_multicorrelator_8sc.h" #include bool fpga_multicorrelator_8sc::init( int max_signal_length_samples, int n_correlators) { // ALLOCATE MEMORY FOR INTERNAL vectors size_t size = max_signal_length_samples * sizeof(lv_16sc_t); d_n_correlators = n_correlators; d_local_codes_resampled = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(lv_16sc_t*), volk_gnsssdr_get_alignment())); for (int n = 0; n < n_correlators; n++) { d_local_codes_resampled[n] = static_cast(volk_gnsssdr_malloc(size, volk_gnsssdr_get_alignment())); } // FPGA stuff d_initial_index = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); d_initial_interp_counter = static_cast(volk_gnsssdr_malloc(n_correlators * sizeof(unsigned), volk_gnsssdr_get_alignment())); return true; } bool fpga_multicorrelator_8sc::set_local_code_and_taps( int code_length_chips, const lv_16sc_t* local_code_in, float *shifts_chips) { d_local_code_in = local_code_in; d_shifts_chips = shifts_chips; d_code_length_chips = code_length_chips; // FPGA parameters d_gps_code = static_cast(volk_gnsssdr_malloc(code_length_chips * sizeof(char), volk_gnsssdr_get_alignment())); return true; } bool fpga_multicorrelator_8sc::set_input_output_vectors(lv_16sc_t* corr_out, const lv_16sc_t* sig_in) { // Save CPU pointers d_sig_in = sig_in; d_corr_out = corr_out; return true; } void fpga_multicorrelator_8sc::update_local_code(int correlator_length_samples, float rem_code_phase_chips, float code_phase_step_chips) { volk_gnsssdr_16ic_xn_resampler_16ic_xn(d_local_codes_resampled, d_local_code_in, rem_code_phase_chips, code_phase_step_chips, d_shifts_chips, d_code_length_chips, d_n_correlators, correlator_length_samples); } bool fpga_multicorrelator_8sc::Carrier_wipeoff_multicorrelator_resampler( float rem_carrier_phase_in_rad, float phase_step_rad, float rem_code_phase_chips, float code_phase_step_chips, int signal_length_samples) { update_local_code(signal_length_samples, rem_code_phase_chips, code_phase_step_chips); // Regenerate phase at each call in order to avoid numerical issues lv_32fc_t phase_offset_as_complex[1]; phase_offset_as_complex[0] = lv_cmake(std::cos(rem_carrier_phase_in_rad), -std::sin(rem_carrier_phase_in_rad)); // call VOLK_GNSSSDR kernel volk_gnsssdr_16ic_x2_rotator_dot_prod_16ic_xn(d_corr_out, d_sig_in, std::exp(lv_32fc_t(0, -phase_step_rad)), phase_offset_as_complex, (const lv_16sc_t**)d_local_codes_resampled, d_n_correlators, signal_length_samples); return true; } fpga_multicorrelator_8sc::fpga_multicorrelator_8sc() { d_sig_in = nullptr; d_local_code_in = nullptr; d_shifts_chips = nullptr; d_corr_out = nullptr; d_local_codes_resampled = nullptr; d_code_length_chips = 0; d_n_correlators = 0; } fpga_multicorrelator_8sc::~fpga_multicorrelator_8sc() { if(d_local_codes_resampled != nullptr) { fpga_multicorrelator_8sc::free(); } } bool fpga_multicorrelator_8sc::free() { // Free memory if (d_local_codes_resampled != nullptr) { for (int n = 0; n < d_n_correlators; n++) { volk_gnsssdr_free(d_local_codes_resampled[n]); } volk_gnsssdr_free(d_local_codes_resampled); d_local_codes_resampled = nullptr; } // FPGA stuff if (d_initial_index != nullptr) { volk_gnsssdr_free(d_initial_index); d_initial_index = nullptr; } if (d_initial_interp_counter != nullptr) { volk_gnsssdr_free(d_initial_interp_counter); d_initial_interp_counter = nullptr; } if (d_gps_code != nullptr) { volk_gnsssdr_free(d_gps_code); d_gps_code = nullptr; } return true; }