// // 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 . // #include #include #include "usrp2_impl.hpp" using namespace uhd; using namespace uhd::usrp; namespace asio = boost::asio; /*********************************************************************** * Constants **********************************************************************/ typedef std::complex fc32_t; typedef std::complex sc16_t; static const float shorts_per_float = pow(2.0, 15); static const float floats_per_short = 1.0/shorts_per_float; /*********************************************************************** * Helper Functions **********************************************************************/ void usrp2_impl::io_init(void){ //initially empty spillover buffer _splillover_buff = asio::buffer(_spillover_mem, 0); //send a small data packet so the usrp2 knows the udp source port uint32_t zero_data = 0; _data_transport->send(boost::asio::buffer(&zero_data, sizeof(zero_data))); } #define unrolled_loop(__i, __len, __inst) {\ size_t __i = 0; \ while(__i < (__len & ~0x7)){ \ __inst; __i++; __inst; __i++; \ __inst; __i++; __inst; __i++; \ __inst; __i++; __inst; __i++; \ __inst; __i++; __inst; __i++; \ } \ while(__i < __len){ \ __inst; __i++;\ } \ } static inline void host_floats_to_usrp2_items( uint32_t *usrp2_items, const fc32_t *host_floats, size_t num_samps ){ unrolled_loop(i, num_samps,{ int16_t real = host_floats[i].real()*shorts_per_float; int16_t imag = host_floats[i].imag()*shorts_per_float; usrp2_items[i] = htonl(((real << 16) & 0xffff) | ((imag << 0) & 0xffff)); }); } static inline void usrp2_items_to_host_floats( fc32_t *host_floats, const uint32_t *usrp2_items, size_t num_samps ){ unrolled_loop(i, num_samps,{ uint32_t item = ntohl(usrp2_items[i]); int16_t real = (item >> 16) & 0xffff; int16_t imag = (item >> 0) & 0xffff; host_floats[i] = fc32_t(real*floats_per_short, imag*floats_per_short); }); } static inline void host_items_to_usrp2_items( uint32_t *usrp2_items, const uint32_t *host_items, size_t num_samps ){ unrolled_loop(i, num_samps, usrp2_items[i] = htonl(host_items[i]) ); } static inline void usrp2_items_to_host_items( uint32_t *host_items, const uint32_t *usrp2_items, size_t num_samps ){ unrolled_loop(i, num_samps, host_items[i] = ntohl(usrp2_items[i]) ); } /*********************************************************************** * Send Raw Data **********************************************************************/ size_t usrp2_impl::send_raw( const boost::asio::const_buffer &buff, const uhd::metadata_t &metadata ){ std::vector buffs(2); uint32_t vrt_hdr[7]; //max size uint32_t vrt_hdr_flags = 0; size_t num_vrt_hdr_words = 1; //load the vrt header and flags if(metadata.has_stream_id){ vrt_hdr_flags |= (0x1 << 28); //IF Data packet with Stream Identifier vrt_hdr[num_vrt_hdr_words++] = htonl(metadata.stream_id); } if(metadata.has_time_spec){ vrt_hdr_flags |= (0x3 << 22) | (0x1 << 20); //TSI: Other, TSF: Sample Count Timestamp vrt_hdr[num_vrt_hdr_words++] = htonl(metadata.time_spec.secs); vrt_hdr[num_vrt_hdr_words++] = htonl(metadata.time_spec.ticks); vrt_hdr[num_vrt_hdr_words++] = 0; //unused part of fractional seconds } vrt_hdr_flags |= (metadata.start_of_burst)? (0x1 << 25) : 0; vrt_hdr_flags |= (metadata.end_of_burst)? (0x1 << 24) : 0; num_vrt_hdr_words += asio::buffer_size(buff)/sizeof(uint32_t); //fill in complete header word vrt_hdr[0] = htonl(vrt_hdr_flags | ((_tx_stream_id_to_packet_seq[metadata.stream_id]++ & 0xf) << 16) | (num_vrt_hdr_words & 0xffff) ); //load the buffer vector size_t vrt_hdr_size = num_vrt_hdr_words*sizeof(uint32_t); buffs[0] = asio::buffer(&vrt_hdr, vrt_hdr_size); buffs[1] = buff; //send and return number of samples return (_data_transport->send(buffs) - vrt_hdr_size)/sizeof(sc16_t); } /*********************************************************************** * Receive Raw Data **********************************************************************/ size_t usrp2_impl::recv_raw( const boost::asio::mutable_buffer &buff, uhd::metadata_t &metadata ){ //handle the case where there is spillover if (asio::buffer_size(_splillover_buff) != 0){ size_t bytes_to_copy = std::min( asio::buffer_size(_splillover_buff), asio::buffer_size(buff) ); std::memcpy( asio::buffer_cast(buff), asio::buffer_cast(_splillover_buff), bytes_to_copy ); _splillover_buff = asio::buffer( asio::buffer_cast(_splillover_buff)+bytes_to_copy, asio::buffer_size(_splillover_buff)-bytes_to_copy ); //std::cout << boost::format("Copied spillover %d samples") % (bytes_to_copy/sizeof(sc16_t)) << std::endl; return bytes_to_copy/sizeof(sc16_t); } //load the buffer vector std::vector buffs(3); uint32_t vrt_hdr[USRP2_HOST_RX_VRT_HEADER_WORDS32]; buffs[0] = asio::buffer(vrt_hdr, sizeof(vrt_hdr)); buffs[1] = buff; buffs[2] = asio::buffer(_spillover_mem, _mtu); //receive into the buffers size_t bytes_recvd = _data_transport->recv(buffs); //failure case if (bytes_recvd < sizeof(vrt_hdr)) return 0; //unpack the vrt header metadata = uhd::metadata_t(); uint32_t vrt_header = ntohl(vrt_hdr[0]); metadata.has_stream_id = true; metadata.stream_id = ntohl(vrt_hdr[1]); metadata.has_time_spec = true; metadata.time_spec.secs = ntohl(vrt_hdr[2]); metadata.time_spec.ticks = ntohl(vrt_hdr[3]); size_t my_seq = (vrt_header >> 16) & 0xf; //std::cout << "seq " << my_seq << std::endl; if (my_seq != ((_rx_stream_id_to_packet_seq[metadata.stream_id]+1) & 0xf)) std::cout << "bad seq " << my_seq << std::endl; _rx_stream_id_to_packet_seq[metadata.stream_id] = my_seq; //extract the number of bytes received size_t num_words = (vrt_header & 0xffff); num_words -= USRP2_HOST_RX_VRT_HEADER_WORDS32; num_words -= USRP2_HOST_RX_VRT_TRAILER_WORDS32; size_t num_bytes = num_words*sizeof(uint32_t); //handle the case where spillover memory was used size_t spillover_size = num_bytes - std::min(num_bytes, asio::buffer_size(buff)); _splillover_buff = asio::buffer(_spillover_mem, spillover_size); return (num_bytes - spillover_size)/sizeof(sc16_t); } /*********************************************************************** * Send Data **********************************************************************/ size_t usrp2_impl::send( const boost::asio::const_buffer &buff, const uhd::metadata_t &metadata, const std::string &type ){ if (type == "32fc"){ size_t num_samps = asio::buffer_size(buff)/sizeof(fc32_t); boost::asio::mutable_buffer raw_buff(_tmp_send_mem, num_samps*sizeof(sc16_t)); host_floats_to_usrp2_items( asio::buffer_cast(raw_buff), asio::buffer_cast(buff), num_samps ); return send_raw(raw_buff, metadata); } if (type == "16sc"){ #ifdef HAVE_BIG_ENDIAN return send_raw(buff, metadata); #else size_t num_samps = asio::buffer_size(buff)/sizeof(sc16_t); boost::asio::mutable_buffer raw_buff(_tmp_send_mem, num_samps*sizeof(sc16_t)); host_items_to_usrp2_items( asio::buffer_cast(raw_buff), asio::buffer_cast(buff), num_samps ); return send_raw(raw_buff, metadata); #endif } throw std::runtime_error(str(boost::format("usrp2 send: cannot handle type \"%s\"") % type)); } /*********************************************************************** * Receive Data **********************************************************************/ size_t usrp2_impl::recv( const boost::asio::mutable_buffer &buff, uhd::metadata_t &metadata, const std::string &type ){ if (type == "32fc"){ size_t num_samps = asio::buffer_size(buff)/sizeof(fc32_t); boost::asio::mutable_buffer raw_buff(_tmp_recv_mem, num_samps*sizeof(sc16_t)); num_samps = recv_raw(raw_buff, metadata); usrp2_items_to_host_floats( asio::buffer_cast(buff), asio::buffer_cast(raw_buff), num_samps ); return num_samps; } if (type == "16sc"){ #ifdef HAVE_BIG_ENDIAN return recv_raw(buff, metadata); #else size_t num_samps = asio::buffer_size(buff)/sizeof(sc16_t); boost::asio::mutable_buffer raw_buff(_tmp_recv_mem, num_samps*sizeof(sc16_t)); num_samps = recv_raw(raw_buff, metadata); usrp2_items_to_host_items( asio::buffer_cast(buff), asio::buffer_cast(raw_buff), num_samps ); return num_samps; #endif } throw std::runtime_error(str(boost::format("usrp2 recv: cannot handle type \"%s\"") % type)); }