2010-02-18 23:30:34 +00:00
|
|
|
//
|
|
|
|
|
// Copyright 2010 Ettus Research LLC
|
|
|
|
|
//
|
|
|
|
|
// 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/>.
|
|
|
|
|
//
|
|
|
|
|
|
2010-04-12 23:10:29 +00:00
|
|
|
#include "usrp2_impl.hpp"
|
2010-03-26 18:45:56 +00:00
|
|
|
#include <uhd/transport/if_addrs.hpp>
|
2010-04-14 00:48:48 +00:00
|
|
|
#include <uhd/transport/udp_simple.hpp>
|
2010-04-01 22:08:52 +00:00
|
|
|
#include <uhd/usrp/device_props.hpp>
|
2010-03-27 08:02:58 +00:00
|
|
|
#include <uhd/utils/assert.hpp>
|
|
|
|
|
#include <uhd/utils/static.hpp>
|
2010-08-12 17:08:17 +00:00
|
|
|
#include <uhd/utils/algorithm.hpp>
|
2010-04-12 23:10:29 +00:00
|
|
|
#include <boost/assign/list_of.hpp>
|
2010-02-18 23:30:34 +00:00
|
|
|
#include <boost/format.hpp>
|
2010-03-26 18:45:56 +00:00
|
|
|
#include <boost/foreach.hpp>
|
2010-04-27 16:42:36 +00:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2010-02-18 23:30:34 +00:00
|
|
|
#include <boost/bind.hpp>
|
2010-04-14 00:48:48 +00:00
|
|
|
#include <boost/asio.hpp> //htonl and ntohl
|
2010-02-18 23:30:34 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
|
|
using namespace uhd;
|
2010-02-22 06:15:30 +00:00
|
|
|
using namespace uhd::usrp;
|
2010-03-03 06:07:17 +00:00
|
|
|
using namespace uhd::transport;
|
2010-03-05 02:34:28 +00:00
|
|
|
namespace asio = boost::asio;
|
2010-02-22 06:15:30 +00:00
|
|
|
|
2010-07-19 17:57:39 +00:00
|
|
|
//! wait this long for a control response when discovering devices
|
|
|
|
|
static const size_t DISCOVERY_TIMEOUT_MS = 100;
|
|
|
|
|
|
2010-06-30 23:21:46 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* Helper Functions
|
|
|
|
|
**********************************************************************/
|
2010-07-01 23:08:33 +00:00
|
|
|
template <class T> std::string num2str(T num){
|
|
|
|
|
return boost::lexical_cast<std::string>(num);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 06:15:30 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* Discovery over the udp transport
|
|
|
|
|
**********************************************************************/
|
2010-07-01 23:08:33 +00:00
|
|
|
static uhd::device_addrs_t usrp2_find(const device_addr_t &hint){
|
2010-02-22 06:15:30 +00:00
|
|
|
device_addrs_t usrp2_addrs;
|
|
|
|
|
|
2010-06-16 00:54:29 +00:00
|
|
|
//return an empty list of addresses when type is set to non-usrp2
|
|
|
|
|
if (hint.has_key("type") and hint["type"] != "usrp2") return usrp2_addrs;
|
|
|
|
|
|
2010-03-26 18:45:56 +00:00
|
|
|
//if no address was specified, send a broadcast on each interface
|
|
|
|
|
if (not hint.has_key("addr")){
|
|
|
|
|
BOOST_FOREACH(const if_addrs_t &if_addrs, get_if_addrs()){
|
2010-03-27 01:52:57 +00:00
|
|
|
//avoid the loopback device
|
|
|
|
|
if (if_addrs.inet == asio::ip::address_v4::loopback().to_string()) continue;
|
|
|
|
|
|
2010-03-26 18:45:56 +00:00
|
|
|
//create a new hint with this broadcast address
|
2010-04-27 22:20:53 +00:00
|
|
|
device_addr_t new_hint;
|
2010-03-26 18:45:56 +00:00
|
|
|
new_hint["addr"] = if_addrs.bcast;
|
|
|
|
|
|
|
|
|
|
//call discover with the new hint and append results
|
2010-07-01 23:08:33 +00:00
|
|
|
device_addrs_t new_usrp2_addrs = usrp2_find(new_hint);
|
2010-03-26 18:45:56 +00:00
|
|
|
usrp2_addrs.insert(usrp2_addrs.begin(),
|
|
|
|
|
new_usrp2_addrs.begin(), new_usrp2_addrs.end()
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
return usrp2_addrs;
|
|
|
|
|
}
|
2010-03-23 00:52:08 +00:00
|
|
|
|
2010-06-30 23:21:46 +00:00
|
|
|
//if there are multiple addresses, just return good, dont test
|
2010-08-12 17:08:17 +00:00
|
|
|
std::vector<std::string> addrs = std::split_string(hint["addr"]);
|
2010-06-30 23:21:46 +00:00
|
|
|
if (addrs.size() > 1){
|
|
|
|
|
device_addr_t new_addr;
|
|
|
|
|
new_addr["type"] = "usrp2";
|
|
|
|
|
new_addr["addr"] = hint["addr"];
|
|
|
|
|
usrp2_addrs.push_back(new_addr);
|
|
|
|
|
return usrp2_addrs;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 06:15:30 +00:00
|
|
|
//create a udp transport to communicate
|
|
|
|
|
std::string ctrl_port = boost::lexical_cast<std::string>(USRP2_UDP_CTRL_PORT);
|
2010-03-03 06:07:17 +00:00
|
|
|
udp_simple::sptr udp_transport = udp_simple::make_broadcast(
|
|
|
|
|
hint["addr"], ctrl_port
|
|
|
|
|
);
|
2010-02-22 06:15:30 +00:00
|
|
|
|
|
|
|
|
//send a hello control packet
|
|
|
|
|
usrp2_ctrl_data_t ctrl_data_out;
|
2010-08-10 01:29:13 +00:00
|
|
|
ctrl_data_out.proto_ver = htonl(USRP2_FW_COMPAT_NUM);
|
2010-05-11 23:35:01 +00:00
|
|
|
ctrl_data_out.id = htonl(USRP2_CTRL_ID_WAZZUP_BRO);
|
2010-02-22 19:42:32 +00:00
|
|
|
udp_transport->send(boost::asio::buffer(&ctrl_data_out, sizeof(ctrl_data_out)));
|
2010-02-22 06:15:30 +00:00
|
|
|
|
2010-03-05 02:34:28 +00:00
|
|
|
//loop and recieve until the timeout
|
2010-07-08 06:48:09 +00:00
|
|
|
boost::uint8_t usrp2_ctrl_data_in_mem[udp_simple::mtu]; //allocate max bytes for recv
|
|
|
|
|
const usrp2_ctrl_data_t *ctrl_data_in = reinterpret_cast<const usrp2_ctrl_data_t *>(usrp2_ctrl_data_in_mem);
|
2010-02-22 06:15:30 +00:00
|
|
|
while(true){
|
2010-07-19 17:57:39 +00:00
|
|
|
size_t len = udp_transport->recv(asio::buffer(usrp2_ctrl_data_in_mem), DISCOVERY_TIMEOUT_MS);
|
2010-02-24 00:27:49 +00:00
|
|
|
//std::cout << len << "\n";
|
2010-06-15 00:34:51 +00:00
|
|
|
if (len > offsetof(usrp2_ctrl_data_t, data)){
|
2010-02-22 06:15:30 +00:00
|
|
|
//handle the received data
|
2010-06-04 19:00:23 +00:00
|
|
|
switch(ntohl(ctrl_data_in->id)){
|
2010-05-11 23:35:01 +00:00
|
|
|
case USRP2_CTRL_ID_WAZZUP_DUDE:
|
2010-02-22 06:15:30 +00:00
|
|
|
//make a boost asio ipv4 with the raw addr in host byte order
|
2010-06-04 19:00:23 +00:00
|
|
|
boost::asio::ip::address_v4 ip_addr(ntohl(ctrl_data_in->data.ip_addr));
|
2010-02-22 06:15:30 +00:00
|
|
|
device_addr_t new_addr;
|
2010-06-16 00:54:29 +00:00
|
|
|
new_addr["type"] = "usrp2";
|
2010-02-22 06:15:30 +00:00
|
|
|
new_addr["addr"] = ip_addr.to_string();
|
|
|
|
|
usrp2_addrs.push_back(new_addr);
|
2010-03-05 02:34:28 +00:00
|
|
|
//dont break here, it will exit the while loop
|
|
|
|
|
//just continue on to the next loop iteration
|
2010-02-22 06:15:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
2010-03-05 02:34:28 +00:00
|
|
|
if (len == 0) break; //timeout
|
2010-02-22 06:15:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return usrp2_addrs;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
|
* Make
|
|
|
|
|
**********************************************************************/
|
2010-07-01 23:08:33 +00:00
|
|
|
static device::sptr usrp2_make(const device_addr_t &device_addr){
|
2010-04-27 16:42:36 +00:00
|
|
|
|
2010-06-30 23:21:46 +00:00
|
|
|
//create a ctrl and data transport for each address
|
|
|
|
|
std::vector<udp_simple::sptr> ctrl_transports;
|
|
|
|
|
std::vector<udp_zero_copy::sptr> data_transports;
|
|
|
|
|
|
2010-08-12 17:08:17 +00:00
|
|
|
BOOST_FOREACH(const std::string &addr, std::split_string(device_addr["addr"])){
|
2010-06-30 23:21:46 +00:00
|
|
|
ctrl_transports.push_back(udp_simple::make_connected(
|
|
|
|
|
addr, num2str(USRP2_UDP_CTRL_PORT)
|
|
|
|
|
));
|
|
|
|
|
data_transports.push_back(udp_zero_copy::make(
|
2010-10-05 17:30:28 +00:00
|
|
|
addr, num2str(USRP2_UDP_DATA_PORT), device_addr
|
2010-06-30 23:21:46 +00:00
|
|
|
));
|
|
|
|
|
}
|
2010-04-30 19:22:23 +00:00
|
|
|
|
2010-02-22 06:15:30 +00:00
|
|
|
//create the usrp2 implementation guts
|
2010-02-22 08:37:53 +00:00
|
|
|
return device::sptr(
|
2010-06-30 23:21:46 +00:00
|
|
|
new usrp2_impl(ctrl_transports, data_transports)
|
2010-02-22 08:37:53 +00:00
|
|
|
);
|
2010-02-22 06:15:30 +00:00
|
|
|
}
|
2010-02-18 23:30:34 +00:00
|
|
|
|
2010-07-01 23:08:33 +00:00
|
|
|
UHD_STATIC_BLOCK(register_usrp2_device){
|
|
|
|
|
device::register_device(&usrp2_find, &usrp2_make);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-18 23:30:34 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* Structors
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
usrp2_impl::usrp2_impl(
|
2010-06-30 23:21:46 +00:00
|
|
|
std::vector<udp_simple::sptr> ctrl_transports,
|
|
|
|
|
std::vector<udp_zero_copy::sptr> data_transports
|
|
|
|
|
):
|
|
|
|
|
_data_transports(data_transports)
|
|
|
|
|
{
|
2010-10-05 17:30:28 +00:00
|
|
|
//setup rx otw type
|
|
|
|
|
_rx_otw_type.width = 16;
|
|
|
|
|
_rx_otw_type.shift = 0;
|
|
|
|
|
_rx_otw_type.byteorder = uhd::otw_type_t::BO_BIG_ENDIAN;
|
|
|
|
|
|
|
|
|
|
//setup tx otw type
|
|
|
|
|
_tx_otw_type.width = 16;
|
|
|
|
|
_tx_otw_type.shift = 0;
|
|
|
|
|
_tx_otw_type.byteorder = uhd::otw_type_t::BO_BIG_ENDIAN;
|
|
|
|
|
|
|
|
|
|
//!!!!! set the otw type here before continuing, its used below
|
|
|
|
|
|
2010-06-30 23:21:46 +00:00
|
|
|
//create a new mboard handler for each control transport
|
|
|
|
|
for(size_t i = 0; i < ctrl_transports.size(); i++){
|
2010-10-05 17:30:28 +00:00
|
|
|
_mboards.push_back(usrp2_mboard_impl::sptr(new usrp2_mboard_impl(
|
|
|
|
|
i, ctrl_transports[i], this->get_max_recv_samps_per_packet()
|
|
|
|
|
)));
|
2010-06-30 23:21:46 +00:00
|
|
|
//use an empty name when there is only one mboard
|
|
|
|
|
std::string name = (ctrl_transports.size() > 1)? boost::lexical_cast<std::string>(i) : "";
|
|
|
|
|
_mboard_dict[name] = _mboards.back();
|
2010-02-20 00:53:56 +00:00
|
|
|
}
|
2010-02-22 19:42:32 +00:00
|
|
|
|
2010-03-02 00:13:30 +00:00
|
|
|
//init the send and recv io
|
|
|
|
|
io_init();
|
2010-02-23 02:47:05 +00:00
|
|
|
|
2010-02-18 23:30:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
usrp2_impl::~usrp2_impl(void){
|
2010-06-02 22:21:56 +00:00
|
|
|
/* NOP */
|
2010-02-18 23:30:34 +00:00
|
|
|
}
|
|
|
|
|
|
2010-02-22 06:15:30 +00:00
|
|
|
/***********************************************************************
|
|
|
|
|
* Device Properties
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
void usrp2_impl::get(const wax::obj &key_, wax::obj &val){
|
2010-08-15 17:51:25 +00:00
|
|
|
named_prop_t key = named_prop_t::extract(key_);
|
2010-02-22 06:15:30 +00:00
|
|
|
|
|
|
|
|
//handle the get request conditioned on the key
|
2010-03-16 00:43:10 +00:00
|
|
|
switch(key.as<device_prop_t>()){
|
2010-02-22 06:15:30 +00:00
|
|
|
case DEVICE_PROP_NAME:
|
2010-07-02 01:32:37 +00:00
|
|
|
if (_mboards.size() > 1) val = std::string("usrp2 mimo device");
|
|
|
|
|
else val = std::string("usrp2 device");
|
2010-02-22 06:15:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case DEVICE_PROP_MBOARD:
|
2010-08-15 17:51:25 +00:00
|
|
|
val = _mboard_dict[key.name]->get_link();
|
2010-02-22 06:15:30 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
case DEVICE_PROP_MBOARD_NAMES:
|
2010-06-30 23:21:46 +00:00
|
|
|
val = prop_names_t(_mboard_dict.keys());
|
2010-02-22 06:15:30 +00:00
|
|
|
return;
|
2010-03-02 00:13:30 +00:00
|
|
|
|
2010-04-26 22:20:18 +00:00
|
|
|
default: UHD_THROW_PROP_GET_ERROR();
|
2010-02-22 06:15:30 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void usrp2_impl::set(const wax::obj &, const wax::obj &){
|
2010-04-26 22:20:18 +00:00
|
|
|
UHD_THROW_PROP_SET_ERROR();
|
2010-02-22 06:15:30 +00:00
|
|
|
}
|