diff options
Diffstat (limited to 'host/lib/include/uhdlib/rfnoc/rfnoc_common.hpp')
-rw-r--r-- | host/lib/include/uhdlib/rfnoc/rfnoc_common.hpp | 25 |
1 files changed, 1 insertions, 24 deletions
diff --git a/host/lib/include/uhdlib/rfnoc/rfnoc_common.hpp b/host/lib/include/uhdlib/rfnoc/rfnoc_common.hpp index 9c4944fe2..7b2900832 100644 --- a/host/lib/include/uhdlib/rfnoc/rfnoc_common.hpp +++ b/host/lib/include/uhdlib/rfnoc/rfnoc_common.hpp @@ -7,7 +7,7 @@ #pragma once #include <uhd/rfnoc/defaults.hpp> -#include <uhdlib/transport/link_if.hpp> +#include <uhd/rfnoc/rfnoc_types.hpp> #include <memory> namespace uhd { namespace rfnoc { @@ -16,25 +16,6 @@ namespace uhd { namespace rfnoc { // Types //---------------------------------------------- -//! Type that indicates the CHDR Width in bits -enum chdr_w_t { CHDR_W_64 = 0, CHDR_W_128 = 1, CHDR_W_256 = 2, CHDR_W_512 = 3 }; -//! Conversion from chdr_w_t to a number of bits -constexpr size_t chdr_w_to_bits(chdr_w_t chdr_w) -{ - switch (chdr_w) { - case CHDR_W_64: - return 64; - case CHDR_W_128: - return 128; - case CHDR_W_256: - return 256; - case CHDR_W_512: - return 512; - default: - return 0; - } -} - //! Device ID Type using device_id_t = uint16_t; //! Stream Endpoint Instance Number Type @@ -43,8 +24,6 @@ using sep_inst_t = uint16_t; using sep_addr_t = std::pair<device_id_t, sep_inst_t>; //! Stream Endpoint Physical Address Type (first = source, second = destination) using sep_addr_pair_t = std::pair<sep_addr_t, sep_addr_t>; -//! Stream Endpoint ID Type -using sep_id_t = uint16_t; //! Stream Endpoint pair Type (first = source, second = destination) using sep_id_pair_t = std::pair<sep_id_t, sep_id_t>; //! Stream Endpoint Virtual Channel Type @@ -85,8 +64,6 @@ constexpr sw_buff_t bits_to_sw_buff(size_t bits) // Constants //---------------------------------------------- -constexpr uint16_t RFNOC_PROTO_VER = 0x0100; - constexpr uint64_t MAX_FC_CAPACITY_BYTES = (uint64_t(1) << 40) - 1; constexpr uint32_t MAX_FC_CAPACITY_PKTS = (uint32_t(1) << 24) - 1; constexpr uint64_t MAX_FC_FREQ_BYTES = (uint64_t(1) << 40) - 1; |