1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
//
// Copyright 2019 Ettus Research, a National Instruments Brand
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#ifndef INCLUDED_MPMD_MB_IFACE_HPP
#define INCLUDED_MPMD_MB_IFACE_HPP
#include "mpmd_impl.hpp"
#include "mpmd_link_if_mgr.hpp"
#include <uhdlib/rfnoc/mb_iface.hpp>
#include <uhdlib/usrp/common/io_service_mgr.hpp>
#include <unordered_map>
#include <map>
namespace uhd { namespace mpmd {
class mpmd_mboard_impl::mpmd_mb_iface : public uhd::rfnoc::mb_iface
{
public:
using uptr = std::unique_ptr<mpmd_mb_iface>;
using clock_iface_list_t = std::vector<std::map<std::string, std::string>>;
mpmd_mb_iface(const uhd::device_addr_t& mb_args, uhd::rpc_client::sptr rpc);
~mpmd_mb_iface() override = default;
/*** mpmd_mb_iface API calls *****************************************/
//! Initialize transports
void init();
/*** mb_iface API calls **********************************************/
uint16_t get_proto_ver() override;
uhd::rfnoc::chdr_w_t get_chdr_w() override;
uhd::endianness_t get_endianness(
const uhd::rfnoc::device_id_t local_device_id) override;
uhd::rfnoc::device_id_t get_remote_device_id() override;
std::vector<uhd::rfnoc::device_id_t> get_local_device_ids() override;
uhd::transport::adapter_id_t get_adapter_id(
const uhd::rfnoc::device_id_t local_device_id) override;
void reset_network() override;
uhd::rfnoc::clock_iface::sptr get_clock_iface(const std::string& clock_name) override;
uhd::rfnoc::chdr_ctrl_xport::sptr make_ctrl_transport(
uhd::rfnoc::device_id_t local_device_id,
const uhd::rfnoc::sep_id_t& local_epid) override;
uhd::rfnoc::chdr_rx_data_xport::uptr make_rx_data_transport(
uhd::rfnoc::mgmt::mgmt_portal& mgmt_portal,
const uhd::rfnoc::sep_addr_pair_t& addrs,
const uhd::rfnoc::sep_id_pair_t& epids,
const uhd::rfnoc::sw_buff_t pyld_buff_fmt,
const uhd::rfnoc::sw_buff_t mdata_buff_fmt,
const uhd::device_addr_t& xport_args,
const std::string& streamer_id) override;
uhd::rfnoc::chdr_tx_data_xport::uptr make_tx_data_transport(
uhd::rfnoc::mgmt::mgmt_portal& mgmt_portal,
const uhd::rfnoc::sep_addr_pair_t& addrs,
const uhd::rfnoc::sep_id_pair_t& epids,
const uhd::rfnoc::sw_buff_t pyld_buff_fmt,
const uhd::rfnoc::sw_buff_t mdata_buff_fmt,
const uhd::device_addr_t& xport_args,
const std::string& streamer_id) override;
private:
uhd::device_addr_t _mb_args;
uhd::rpc_client::sptr _rpc;
xport::mpmd_link_if_mgr::uptr _link_if_mgr;
uhd::rfnoc::device_id_t _remote_device_id;
std::map<uhd::rfnoc::device_id_t, size_t> _local_device_id_map;
std::unordered_map<uhd::rfnoc::device_id_t, uhd::transport::adapter_id_t>
_adapter_map;
std::map<std::string, uhd::rfnoc::clock_iface::sptr> _clock_ifaces;
uhd::usrp::io_service_mgr::sptr _io_srv_mgr;
};
}} /* namespace uhd::mpmd */
#endif /* INCLUDED_MPMD_MB_IFACE_HPP */
|