From bba75b29feed2d3b42f9b6c4eb4bc574c09924c7 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Wed, 5 Jun 2019 12:05:30 -0700 Subject: rfnoc: Add mb_controller base class and X300/MPMD implementations --- host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'host/lib/include') diff --git a/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp b/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp index 7197bc9c4..1c2997f80 100644 --- a/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp +++ b/host/lib/include/uhdlib/rfnoc/rfnoc_device.hpp @@ -9,6 +9,7 @@ #include #include +#include #include #include #include @@ -41,6 +42,12 @@ public: return *_iface_registry.at(mb_idx); } + //! Return a reference to an MB controller + mb_controller::sptr get_mb_controller(const size_t mb_idx) const + { + return _mbc_registry.at(mb_idx); + } + /*! Return the number of motherboards in this device */ size_t get_num_mbs() @@ -73,8 +80,14 @@ protected: _iface_registry.emplace(mb_idx, std::move(mb_if)); } + void register_mb_controller(const size_t mb_idx, mb_controller::sptr mbc) + { + _mbc_registry.emplace(mb_idx, mbc); + } + private: std::unordered_map _iface_registry; + std::unordered_map _mbc_registry; }; // class rfnoc_device }}} // namespace uhd::rfnoc::detail -- cgit v1.2.3