diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-12-06 12:34:22 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-12-08 14:30:39 -0800 |
commit | a2e59940dcdeb7ba120339a823c34f8d31cf322e (patch) | |
tree | 94836e8242c2bad268483cfbb6780e02034f3132 /host/lib/usrp/x300/x300_impl.hpp | |
parent | ccd681e45937216b400f6bda326f11627a7e6def (diff) | |
download | uhd-a2e59940dcdeb7ba120339a823c34f8d31cf322e.tar.gz uhd-a2e59940dcdeb7ba120339a823c34f8d31cf322e.tar.bz2 uhd-a2e59940dcdeb7ba120339a823c34f8d31cf322e.zip |
x300: Make PCIe muxing and connection multi-usrp capable
Diffstat (limited to 'host/lib/usrp/x300/x300_impl.hpp')
-rw-r--r-- | host/lib/usrp/x300/x300_impl.hpp | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/host/lib/usrp/x300/x300_impl.hpp b/host/lib/usrp/x300/x300_impl.hpp index ff18b1a22..db5396008 100644 --- a/host/lib/usrp/x300/x300_impl.hpp +++ b/host/lib/usrp/x300/x300_impl.hpp @@ -191,6 +191,19 @@ private: std::string current_refclk_src; std::vector<uhd::rfnoc::x300_radio_ctrl_impl::sptr> radios; + + // PCIe specific components: + + //! Maps SID -> DMA channel + std::map<uint32_t, uint32_t> _dma_chan_pool; + //! Control transport for one PCIe connection + uhd::transport::muxed_zero_copy_if::sptr ctrl_dma_xport; + + /*! Allocate or return a previously allocated PCIe channel pair + * + * Note the SID is always the transmit SID (i.e. from host to device). + */ + uint32_t allocate_pcie_dma_chan(const uhd::sid_t &tx_sid, const xport_type_t xport_type); }; std::vector<mboard_members_t> _mb; @@ -224,15 +237,6 @@ private: */ frame_size_t determine_max_frame_size(const std::string &addr, const frame_size_t &user_mtu); - std::map<uint32_t, uint32_t> _dma_chan_pool; - uhd::transport::muxed_zero_copy_if::sptr _ctrl_dma_xport; - - /*! Allocate or return a previously allocated PCIe channel pair - * - * Note the SID is always the transmit SID (i.e. from host to device). - */ - uint32_t allocate_pcie_dma_chan(const uhd::sid_t &tx_sid, const xport_type_t xport_type); - //////////////////////////////////////////////////////////////////// // //Caching for transport interface re-use -- like sharing a DMA. |