2010-06-03 19:30:00 +00:00
|
|
|
//
|
2012-02-02 23:15:54 +00:00
|
|
|
// Copyright 2010-2012 Ettus Research LLC
|
2010-06-03 19:30:00 +00:00
|
|
|
//
|
|
|
|
|
// 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/>.
|
|
|
|
|
//
|
|
|
|
|
|
2011-07-01 22:07:38 +00:00
|
|
|
#include "validate_subdev_spec.hpp"
|
2012-02-15 02:26:03 +00:00
|
|
|
#include "async_packet_handler.hpp"
|
2011-06-13 02:54:54 +00:00
|
|
|
#include "../../transport/super_recv_packet_handler.hpp"
|
|
|
|
|
#include "../../transport/super_send_packet_handler.hpp"
|
2011-06-17 22:37:30 +00:00
|
|
|
#include "e100_impl.hpp"
|
2011-05-05 02:13:33 +00:00
|
|
|
#include <uhd/utils/msg.hpp>
|
|
|
|
|
#include <uhd/utils/log.hpp>
|
2011-07-14 00:25:40 +00:00
|
|
|
#include <uhd/utils/tasks.hpp>
|
2010-06-03 19:30:00 +00:00
|
|
|
#include <boost/bind.hpp>
|
2010-06-05 00:24:16 +00:00
|
|
|
#include <boost/format.hpp>
|
2011-10-12 00:46:44 +00:00
|
|
|
#include <boost/make_shared.hpp>
|
2010-06-03 19:30:00 +00:00
|
|
|
|
|
|
|
|
using namespace uhd;
|
2010-07-07 18:44:16 +00:00
|
|
|
using namespace uhd::usrp;
|
2010-08-25 21:10:41 +00:00
|
|
|
using namespace uhd::transport;
|
2010-06-03 19:30:00 +00:00
|
|
|
|
2013-03-15 00:48:34 +00:00
|
|
|
static const size_t vrt_send_header_offset_words32 = 0;
|
2012-07-17 00:51:41 +00:00
|
|
|
|
2011-06-28 00:55:26 +00:00
|
|
|
void e100_impl::update_tick_rate(const double rate){
|
2011-10-12 00:46:44 +00:00
|
|
|
|
|
|
|
|
//update the tick rate on all existing streamers -> thread safe
|
|
|
|
|
for (size_t i = 0; i < _rx_streamers.size(); i++){
|
|
|
|
|
boost::shared_ptr<sph::recv_packet_streamer> my_streamer =
|
|
|
|
|
boost::dynamic_pointer_cast<sph::recv_packet_streamer>(_rx_streamers[i].lock());
|
|
|
|
|
if (my_streamer.get() == NULL) continue;
|
|
|
|
|
my_streamer->set_tick_rate(rate);
|
|
|
|
|
}
|
|
|
|
|
for (size_t i = 0; i < _tx_streamers.size(); i++){
|
|
|
|
|
boost::shared_ptr<sph::send_packet_streamer> my_streamer =
|
|
|
|
|
boost::dynamic_pointer_cast<sph::send_packet_streamer>(_tx_streamers[i].lock());
|
|
|
|
|
if (my_streamer.get() == NULL) continue;
|
|
|
|
|
my_streamer->set_tick_rate(rate);
|
|
|
|
|
}
|
2011-06-28 00:55:26 +00:00
|
|
|
}
|
|
|
|
|
|
2011-10-12 00:46:44 +00:00
|
|
|
void e100_impl::update_rx_samp_rate(const size_t dspno, const double rate){
|
|
|
|
|
boost::shared_ptr<sph::recv_packet_streamer> my_streamer =
|
|
|
|
|
boost::dynamic_pointer_cast<sph::recv_packet_streamer>(_rx_streamers[dspno].lock());
|
|
|
|
|
if (my_streamer.get() == NULL) return;
|
|
|
|
|
|
|
|
|
|
my_streamer->set_samp_rate(rate);
|
|
|
|
|
const double adj = _rx_dsps[dspno]->get_scaling_adjustment();
|
|
|
|
|
my_streamer->set_scale_factor(adj);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void e100_impl::update_tx_samp_rate(const size_t dspno, const double rate){
|
|
|
|
|
boost::shared_ptr<sph::send_packet_streamer> my_streamer =
|
|
|
|
|
boost::dynamic_pointer_cast<sph::send_packet_streamer>(_tx_streamers[dspno].lock());
|
|
|
|
|
if (my_streamer.get() == NULL) return;
|
|
|
|
|
|
|
|
|
|
my_streamer->set_samp_rate(rate);
|
2012-01-29 00:08:17 +00:00
|
|
|
const double adj = _tx_dsp->get_scaling_adjustment();
|
|
|
|
|
my_streamer->set_scale_factor(adj);
|
2011-06-28 00:55:26 +00:00
|
|
|
}
|
|
|
|
|
|
2011-10-12 00:46:44 +00:00
|
|
|
void e100_impl::update_rates(void){
|
|
|
|
|
const fs_path mb_path = "/mboards/0";
|
|
|
|
|
_tree->access<double>(mb_path / "tick_rate").update();
|
|
|
|
|
|
|
|
|
|
//and now that the tick rate is set, init the host rates to something
|
|
|
|
|
BOOST_FOREACH(const std::string &name, _tree->list(mb_path / "rx_dsps")){
|
|
|
|
|
_tree->access<double>(mb_path / "rx_dsps" / name / "rate" / "value").update();
|
|
|
|
|
}
|
|
|
|
|
BOOST_FOREACH(const std::string &name, _tree->list(mb_path / "tx_dsps")){
|
|
|
|
|
_tree->access<double>(mb_path / "tx_dsps" / name / "rate" / "value").update();
|
|
|
|
|
}
|
2011-06-28 00:55:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void e100_impl::update_rx_subdev_spec(const uhd::usrp::subdev_spec_t &spec){
|
2011-07-22 08:19:03 +00:00
|
|
|
fs_path root = "/mboards/0/dboards";
|
2011-06-28 00:55:26 +00:00
|
|
|
|
|
|
|
|
//sanity checking
|
2011-07-01 22:07:38 +00:00
|
|
|
validate_subdev_spec(_tree, spec, "rx");
|
2011-06-28 00:55:26 +00:00
|
|
|
|
|
|
|
|
//setup mux for this spec
|
2011-07-04 14:21:53 +00:00
|
|
|
bool fe_swapped = false;
|
2011-06-28 00:55:26 +00:00
|
|
|
for (size_t i = 0; i < spec.size(); i++){
|
|
|
|
|
const std::string conn = _tree->access<std::string>(root / spec[i].db_name / "rx_frontends" / spec[i].sd_name / "connection").get();
|
2011-07-04 14:21:53 +00:00
|
|
|
if (i == 0 and (conn == "QI" or conn == "Q")) fe_swapped = true;
|
|
|
|
|
_rx_dsps[i]->set_mux(conn, fe_swapped);
|
2011-06-28 00:55:26 +00:00
|
|
|
}
|
2011-07-04 14:21:53 +00:00
|
|
|
_rx_fe->set_mux(fe_swapped);
|
2010-06-03 19:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
2011-06-28 00:55:26 +00:00
|
|
|
void e100_impl::update_tx_subdev_spec(const uhd::usrp::subdev_spec_t &spec){
|
2011-07-22 08:19:03 +00:00
|
|
|
fs_path root = "/mboards/0/dboards";
|
2010-06-04 22:44:06 +00:00
|
|
|
|
2011-06-28 00:55:26 +00:00
|
|
|
//sanity checking
|
2011-07-01 22:07:38 +00:00
|
|
|
validate_subdev_spec(_tree, spec, "tx");
|
2011-06-28 00:55:26 +00:00
|
|
|
|
|
|
|
|
//set the mux for this spec
|
|
|
|
|
const std::string conn = _tree->access<std::string>(root / spec[0].db_name / "tx_frontends" / spec[0].sd_name / "connection").get();
|
|
|
|
|
_tx_fe->set_mux(conn);
|
2011-10-12 00:46:44 +00:00
|
|
|
}
|
2011-06-28 00:55:26 +00:00
|
|
|
|
2011-10-12 00:46:44 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* Async Recv
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
bool e100_impl::recv_async_msg(
|
|
|
|
|
async_metadata_t &async_metadata, double timeout
|
|
|
|
|
){
|
2012-07-02 21:08:12 +00:00
|
|
|
return _fifo_ctrl->pop_async_msg(async_metadata, timeout);
|
2010-06-04 22:44:06 +00:00
|
|
|
}
|
|
|
|
|
|
2010-06-03 19:30:00 +00:00
|
|
|
/***********************************************************************
|
2011-10-12 00:46:44 +00:00
|
|
|
* Receive streamer
|
2010-06-03 19:30:00 +00:00
|
|
|
**********************************************************************/
|
2011-10-12 00:46:44 +00:00
|
|
|
rx_streamer::sptr e100_impl::get_rx_stream(const uhd::stream_args_t &args_){
|
|
|
|
|
stream_args_t args = args_;
|
|
|
|
|
|
|
|
|
|
//setup defaults for unspecified values
|
|
|
|
|
args.otw_format = args.otw_format.empty()? "sc16" : args.otw_format;
|
|
|
|
|
args.channels = args.channels.empty()? std::vector<size_t>(1, 0) : args.channels;
|
|
|
|
|
|
|
|
|
|
//calculate packet size
|
2010-10-07 17:27:30 +00:00
|
|
|
static const size_t hdr_size = 0
|
|
|
|
|
+ vrt::max_if_hdr_words32*sizeof(boost::uint32_t)
|
2011-10-12 00:46:44 +00:00
|
|
|
+ sizeof(vrt::if_packet_info_t().tlr) //forced to have trailer
|
2010-10-07 17:27:30 +00:00
|
|
|
- sizeof(vrt::if_packet_info_t().cid) //no class id ever used
|
2012-02-07 00:40:42 +00:00
|
|
|
- sizeof(vrt::if_packet_info_t().tsi) //no int time ever used
|
2010-10-07 17:27:30 +00:00
|
|
|
;
|
2011-10-12 00:46:44 +00:00
|
|
|
const size_t bpp = _data_transport->get_recv_frame_size() - hdr_size;
|
2012-01-17 07:04:53 +00:00
|
|
|
const size_t bpi = convert::get_bytes_per_item(args.otw_format);
|
|
|
|
|
const size_t spp = unsigned(args.args.cast<double>("spp", bpp/bpi));
|
2011-10-12 00:46:44 +00:00
|
|
|
|
|
|
|
|
//make the new streamer given the samples per packet
|
|
|
|
|
boost::shared_ptr<sph::recv_packet_streamer> my_streamer = boost::make_shared<sph::recv_packet_streamer>(spp);
|
|
|
|
|
|
|
|
|
|
//init some streamer stuff
|
|
|
|
|
my_streamer->resize(args.channels.size());
|
|
|
|
|
my_streamer->set_vrt_unpacker(&vrt::if_hdr_unpack_le);
|
|
|
|
|
|
|
|
|
|
//set the converter
|
|
|
|
|
uhd::convert::id_type id;
|
2011-10-12 07:39:04 +00:00
|
|
|
id.input_format = args.otw_format + "_item32_le";
|
2011-10-12 00:46:44 +00:00
|
|
|
id.num_inputs = 1;
|
2011-10-12 07:39:04 +00:00
|
|
|
id.output_format = args.cpu_format;
|
2011-10-12 00:46:44 +00:00
|
|
|
id.num_outputs = 1;
|
|
|
|
|
my_streamer->set_converter(id);
|
|
|
|
|
|
|
|
|
|
//bind callbacks for the handler
|
|
|
|
|
for (size_t chan_i = 0; chan_i < args.channels.size(); chan_i++){
|
|
|
|
|
const size_t dsp = args.channels[chan_i];
|
|
|
|
|
_rx_dsps[dsp]->set_nsamps_per_packet(spp); //seems to be a good place to set this
|
2012-01-29 00:08:17 +00:00
|
|
|
_rx_dsps[dsp]->setup(args);
|
2011-10-12 00:46:44 +00:00
|
|
|
my_streamer->set_xport_chan_get_buff(chan_i, boost::bind(
|
2012-07-02 21:08:12 +00:00
|
|
|
&recv_packet_demuxer::get_recv_buff, _recv_demuxer, dsp, _1
|
2012-01-17 06:31:03 +00:00
|
|
|
), true /*flush*/);
|
2011-10-12 00:46:44 +00:00
|
|
|
my_streamer->set_overflow_handler(chan_i, boost::bind(
|
|
|
|
|
&rx_dsp_core_200::handle_overflow, _rx_dsps[dsp]
|
|
|
|
|
));
|
2013-07-15 22:44:42 +00:00
|
|
|
my_streamer->set_issue_stream_cmd(chan_i, boost::bind(
|
|
|
|
|
&rx_dsp_core_200::issue_stream_command, _rx_dsps[dsp], _1));
|
2011-10-12 00:46:44 +00:00
|
|
|
_rx_streamers[dsp] = my_streamer; //store weak pointer
|
|
|
|
|
}
|
2010-10-07 17:27:30 +00:00
|
|
|
|
2011-10-12 00:46:44 +00:00
|
|
|
//sets all tick and samp rates on this streamer
|
|
|
|
|
this->update_rates();
|
|
|
|
|
|
|
|
|
|
return my_streamer;
|
2010-06-03 19:30:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2011-10-12 00:46:44 +00:00
|
|
|
* Transmit streamer
|
2010-06-03 19:30:00 +00:00
|
|
|
**********************************************************************/
|
2011-10-12 00:46:44 +00:00
|
|
|
tx_streamer::sptr e100_impl::get_tx_stream(const uhd::stream_args_t &args_){
|
|
|
|
|
stream_args_t args = args_;
|
|
|
|
|
|
|
|
|
|
//setup defaults for unspecified values
|
|
|
|
|
args.otw_format = args.otw_format.empty()? "sc16" : args.otw_format;
|
|
|
|
|
args.channels = args.channels.empty()? std::vector<size_t>(1, 0) : args.channels;
|
|
|
|
|
|
|
|
|
|
//calculate packet size
|
2010-10-07 17:27:30 +00:00
|
|
|
static const size_t hdr_size = 0
|
2012-07-17 00:51:41 +00:00
|
|
|
+ vrt_send_header_offset_words32*sizeof(boost::uint32_t)
|
2010-10-07 17:27:30 +00:00
|
|
|
+ vrt::max_if_hdr_words32*sizeof(boost::uint32_t)
|
2012-01-31 06:23:38 +00:00
|
|
|
+ sizeof(vrt::if_packet_info_t().tlr) //forced to have trailer
|
2012-02-01 17:48:28 +00:00
|
|
|
- sizeof(vrt::if_packet_info_t().sid) //no stream id ever used
|
2010-10-07 17:27:30 +00:00
|
|
|
- sizeof(vrt::if_packet_info_t().cid) //no class id ever used
|
2012-02-07 00:40:42 +00:00
|
|
|
- sizeof(vrt::if_packet_info_t().tsi) //no int time ever used
|
2010-10-07 17:27:30 +00:00
|
|
|
;
|
2011-10-12 00:46:44 +00:00
|
|
|
static const size_t bpp = _data_transport->get_send_frame_size() - hdr_size;
|
|
|
|
|
const size_t spp = bpp/convert::get_bytes_per_item(args.otw_format);
|
|
|
|
|
|
|
|
|
|
//make the new streamer given the samples per packet
|
|
|
|
|
boost::shared_ptr<sph::send_packet_streamer> my_streamer = boost::make_shared<sph::send_packet_streamer>(spp);
|
|
|
|
|
|
|
|
|
|
//init some streamer stuff
|
|
|
|
|
my_streamer->resize(args.channels.size());
|
2012-07-17 00:51:41 +00:00
|
|
|
my_streamer->set_vrt_packer(&vrt::if_hdr_pack_le, vrt_send_header_offset_words32);
|
2011-10-12 00:46:44 +00:00
|
|
|
|
|
|
|
|
//set the converter
|
|
|
|
|
uhd::convert::id_type id;
|
2011-10-12 07:39:04 +00:00
|
|
|
id.input_format = args.cpu_format;
|
2011-10-12 00:46:44 +00:00
|
|
|
id.num_inputs = 1;
|
2011-10-12 07:39:04 +00:00
|
|
|
id.output_format = args.otw_format + "_item32_le";
|
2011-10-12 00:46:44 +00:00
|
|
|
id.num_outputs = 1;
|
|
|
|
|
my_streamer->set_converter(id);
|
|
|
|
|
|
|
|
|
|
//bind callbacks for the handler
|
|
|
|
|
for (size_t chan_i = 0; chan_i < args.channels.size(); chan_i++){
|
|
|
|
|
const size_t dsp = args.channels[chan_i];
|
|
|
|
|
UHD_ASSERT_THROW(dsp == 0); //always 0
|
2012-01-29 00:08:17 +00:00
|
|
|
_tx_dsp->setup(args);
|
2011-10-12 00:46:44 +00:00
|
|
|
my_streamer->set_xport_chan_get_buff(chan_i, boost::bind(
|
|
|
|
|
&zero_copy_if::get_send_buff, _data_transport, _1
|
|
|
|
|
));
|
2013-07-15 22:44:42 +00:00
|
|
|
my_streamer->set_async_receiver(boost::bind(&fifo_ctrl_excelsior::pop_async_msg, _fifo_ctrl, _1, _2));
|
2011-10-12 00:46:44 +00:00
|
|
|
_tx_streamers[dsp] = my_streamer; //store weak pointer
|
|
|
|
|
}
|
2010-10-07 17:27:30 +00:00
|
|
|
|
2011-10-12 00:46:44 +00:00
|
|
|
//sets all tick and samp rates on this streamer
|
|
|
|
|
this->update_rates();
|
2010-08-11 07:16:34 +00:00
|
|
|
|
2011-10-12 00:46:44 +00:00
|
|
|
return my_streamer;
|
2010-08-11 07:16:34 +00:00
|
|
|
}
|