diff options
author | Derek Kozel <derek.kozel@ettus.com> | 2017-12-07 18:04:36 +0000 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-12-08 12:07:52 -0800 |
commit | 85a707d7fff008e15e8f83c66dbbe253d6093479 (patch) | |
tree | 2f98f8f240b06a713a053cf44067d54b75b3876b /host/lib/usrp/dboard/twinrx | |
parent | 298a13ac3d9f9e785bf031e85060569541ca4b6f (diff) | |
download | uhd-85a707d7fff008e15e8f83c66dbbe253d6093479.tar.gz uhd-85a707d7fff008e15e8f83c66dbbe253d6093479.tar.bz2 uhd-85a707d7fff008e15e8f83c66dbbe253d6093479.zip |
TwinRX: Added ADF5356 synth and TwinRX Rev C support
ADF5355 and ADF5356 support merged into adf535x class
Default register values moved into regmap
Reviewed-By: Martin Braun <martin.braun@ettus.com>
Reviewed-By: Ashish Chaudhari <ashish@ettus.com>
Reviewed-By: Mark Meserve <mark.meserve@ni.com>
Diffstat (limited to 'host/lib/usrp/dboard/twinrx')
-rw-r--r-- | host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp | 77 | ||||
-rw-r--r-- | host/lib/usrp/dboard/twinrx/twinrx_ctrl.hpp | 10 | ||||
-rw-r--r-- | host/lib/usrp/dboard/twinrx/twinrx_ids.hpp | 16 |
3 files changed, 65 insertions, 38 deletions
diff --git a/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp b/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp index 00be82e1a..1ce2f0e0e 100644 --- a/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp +++ b/host/lib/usrp/dboard/twinrx/twinrx_ctrl.cpp @@ -1,42 +1,38 @@ // -// Copyright 2015 Ettus Research LLC +// Copyright 2015-2017 Ettus Research, A National Instruments Company // -// This program 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. -// -// This program 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 this program. If not, see <http://www.gnu.org/licenses/>. +// SPDX-License-Identifier: GPL-3.0 // -#include <boost/thread/thread.hpp> -#include <uhd/utils/math.hpp> -#include <uhd/utils/safe_call.hpp> #include "twinrx_ctrl.hpp" +#include "twinrx_ids.hpp" #include "adf435x.hpp" -#include "adf5355.hpp" +#include "adf535x.hpp" +#include <uhd/utils/math.hpp> +#include <uhd/utils/safe_call.hpp> +#include <boost/thread/thread.hpp> using namespace uhd; using namespace usrp; using namespace dboard::twinrx; -typedef twinrx_cpld_regmap rm; -static uint32_t bool2bin(bool x) { return x ? 1 : 0; } +namespace { + typedef twinrx_cpld_regmap rm; -static const double TWINRX_DESIRED_REFERENCE_FREQ = 50e6; + uint32_t bool2bin(bool x) { return x ? 1 : 0; } + + const double TWINRX_DESIRED_REFERENCE_FREQ = 50e6; + const double TWINRX_REV_AB_PFD_FREQ = 6.25e6; + const double TWINRX_REV_C_PFD_FREQ = 12.6e6; +} class twinrx_ctrl_impl : public twinrx_ctrl { public: twinrx_ctrl_impl( dboard_iface::sptr db_iface, twinrx_gpio::sptr gpio_iface, - twinrx_cpld_regmap::sptr cpld_regmap + twinrx_cpld_regmap::sptr cpld_regmap, + const dboard_id_t rx_id ) : _db_iface(db_iface), _gpio_iface(gpio_iface), _cpld_regs(cpld_regmap) { @@ -50,10 +46,24 @@ public: } } //Initialize synthesizer objects - _lo1_iface[size_t(CH1)] = adf5355_iface::make( - boost::bind(&twinrx_ctrl_impl::_write_lo_spi, this, dboard_iface::UNIT_TX, _1)); - _lo1_iface[size_t(CH2)] = adf5355_iface::make( - boost::bind(&twinrx_ctrl_impl::_write_lo_spi, this, dboard_iface::UNIT_TX, _1)); + if (rx_id == twinrx::TWINRX_REV_C_ID) { + _lo1_iface[size_t(CH1)] = adf535x_iface::make_adf5356( + std::bind(&twinrx_ctrl_impl::_write_lo_spi, this, dboard_iface::UNIT_TX, std::placeholders::_1)); + _lo1_iface[size_t(CH2)] = adf535x_iface::make_adf5356( + std::bind(&twinrx_ctrl_impl::_write_lo_spi, this, dboard_iface::UNIT_TX, std::placeholders::_1)); + + _lo1_iface[size_t(CH1)]->set_pfd_freq(TWINRX_REV_C_PFD_FREQ); + _lo1_iface[size_t(CH2)]->set_pfd_freq(TWINRX_REV_C_PFD_FREQ); + + } else { + _lo1_iface[size_t(CH1)] = adf535x_iface::make_adf5355( + std::bind(&twinrx_ctrl_impl::_write_lo_spi, this, dboard_iface::UNIT_TX, std::placeholders::_1)); + _lo1_iface[size_t(CH2)] = adf535x_iface::make_adf5355( + std::bind(&twinrx_ctrl_impl::_write_lo_spi, this, dboard_iface::UNIT_TX, std::placeholders::_1)); + + _lo1_iface[size_t(CH1)]->set_pfd_freq(TWINRX_REV_AB_PFD_FREQ); + _lo1_iface[size_t(CH2)]->set_pfd_freq(TWINRX_REV_AB_PFD_FREQ); + } _lo2_iface[size_t(CH1)] = adf435x_iface::make_adf4351( boost::bind(&twinrx_ctrl_impl::_write_lo_spi, this, dboard_iface::UNIT_RX, _1)); @@ -104,11 +114,9 @@ public: for (size_t i = 0; i < NUM_CHANS; i++) { _config_lo1_route(i==0?LO_CONFIG_CH1:LO_CONFIG_CH2); _config_lo2_route(i==0?LO_CONFIG_CH1:LO_CONFIG_CH2); - _lo1_iface[i]->set_output_power(adf5355_iface::OUTPUT_POWER_5DBM); + _lo1_iface[i]->set_output_power(adf535x_iface::OUTPUT_POWER_5DBM); _lo1_iface[i]->set_reference_freq(TWINRX_DESIRED_REFERENCE_FREQ); - // Divided feedback did not appear to be correctly implemented during bringup. Necessary for phase resync -// _lo1_iface[i]->set_feedback_select(adf5355_iface::FB_SEL_DIVIDED); - _lo1_iface[i]->set_muxout_mode(adf5355_iface::MUXOUT_DLD); + _lo1_iface[i]->set_muxout_mode(adf535x_iface::MUXOUT_DLD); _lo1_iface[i]->set_frequency(3e9, 1.0e3); _lo2_iface[i]->set_feedback_select(adf435x_iface::FB_SEL_DIVIDED); _lo2_iface[i]->set_output_power(adf435x_iface::OUTPUT_POWER_5DBM); @@ -535,8 +543,8 @@ private: //Functions _lo2_src[size_t(CH1)] == LO_COMPANION || _lo2_export == LO_CH2_SYNTH; - _lo1_iface[size_t(CH1)]->set_output_enable(adf5355_iface::RF_OUTPUT_A, _lo1_enable[size_t(CH1)].get()); - _lo1_iface[size_t(CH2)]->set_output_enable(adf5355_iface::RF_OUTPUT_A, _lo1_enable[size_t(CH2)].get()); + _lo1_iface[size_t(CH1)]->set_output_enable(adf535x_iface::RF_OUTPUT_A, _lo1_enable[size_t(CH1)].get()); + _lo1_iface[size_t(CH2)]->set_output_enable(adf535x_iface::RF_OUTPUT_A, _lo1_enable[size_t(CH2)].get()); _lo2_iface[size_t(CH1)]->set_output_enable(adf435x_iface::RF_OUTPUT_A, _lo2_enable[size_t(CH1)].get()); _lo2_iface[size_t(CH2)]->set_output_enable(adf435x_iface::RF_OUTPUT_A, _lo2_enable[size_t(CH2)].get()); @@ -624,7 +632,7 @@ private: //Members dboard_iface::sptr _db_iface; twinrx_gpio::sptr _gpio_iface; twinrx_cpld_regmap::sptr _cpld_regs; - adf5355_iface::sptr _lo1_iface[NUM_CHANS]; + adf535x_iface::sptr _lo1_iface[NUM_CHANS]; adf435x_iface::sptr _lo2_iface[NUM_CHANS]; lo_source_t _lo1_src[NUM_CHANS]; lo_source_t _lo2_src[NUM_CHANS]; @@ -639,7 +647,8 @@ private: //Members twinrx_ctrl::sptr twinrx_ctrl::make( dboard_iface::sptr db_iface, twinrx_gpio::sptr gpio_iface, - twinrx_cpld_regmap::sptr cpld_regmap + twinrx_cpld_regmap::sptr cpld_regmap, + const dboard_id_t rx_id ) { - return sptr(new twinrx_ctrl_impl(db_iface, gpio_iface, cpld_regmap)); + return std::make_shared<twinrx_ctrl_impl>(db_iface, gpio_iface, cpld_regmap, rx_id); } diff --git a/host/lib/usrp/dboard/twinrx/twinrx_ctrl.hpp b/host/lib/usrp/dboard/twinrx/twinrx_ctrl.hpp index 2439addc4..866a7c54d 100644 --- a/host/lib/usrp/dboard/twinrx/twinrx_ctrl.hpp +++ b/host/lib/usrp/dboard/twinrx/twinrx_ctrl.hpp @@ -18,20 +18,22 @@ #ifndef INCLUDED_DBOARD_TWINRX_CTRL_HPP #define INCLUDED_DBOARD_TWINRX_CTRL_HPP -#include <boost/noncopyable.hpp> -#include <uhd/types/wb_iface.hpp> #include "twinrx_io.hpp" +#include <uhd/types/wb_iface.hpp> +#include <boost/noncopyable.hpp> namespace uhd { namespace usrp { namespace dboard { namespace twinrx { class twinrx_ctrl : public boost::noncopyable { public: - typedef boost::shared_ptr<twinrx_ctrl> sptr; + typedef std::shared_ptr<twinrx_ctrl> sptr; static sptr make( dboard_iface::sptr db_iface, twinrx_gpio::sptr gpio_iface, - twinrx_cpld_regmap::sptr cpld_regmap); + twinrx_cpld_regmap::sptr cpld_regmap, + dboard_id_t rx_id + ); virtual ~twinrx_ctrl() {} diff --git a/host/lib/usrp/dboard/twinrx/twinrx_ids.hpp b/host/lib/usrp/dboard/twinrx/twinrx_ids.hpp new file mode 100644 index 000000000..599b1d456 --- /dev/null +++ b/host/lib/usrp/dboard/twinrx/twinrx_ids.hpp @@ -0,0 +1,16 @@ + +#ifndef _TWINRX_IDS_HPP +#define _TWINRX_IDS_HPP + +#include <uhd/usrp/dboard_id.hpp> + +using namespace uhd; +using namespace usrp; + +namespace twinrx { + const dboard_id_t TWINRX_REV_A_ID(0x91); + const dboard_id_t TWINRX_REV_B_ID(0x93); + const dboard_id_t TWINRX_REV_C_ID(0x95); +} + +#endif |