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
77
78
79
80
81
82
83
|
//
// Copyright 2014-2015 Ettus Research LLC
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <uhd/rfnoc/blockdef.hpp>
#include <stdint.h>
#include <boost/format.hpp>
#include <boost/test/unit_test.hpp>
#include <iostream>
#include <map>
using namespace uhd::rfnoc;
BOOST_AUTO_TEST_CASE(test_lookup)
{
const std::map<uint64_t, std::string> blocknames{{0, "NullSrcSink"},
{0xFF70000000000000, "FFT"},
{0xF112000000000001, "FIR"},
{0xF1F0000000000000, "FIFO"},
{0xD053000000000000, "Window"},
{0x5CC0000000000000, "SchmidlCox"}};
std::cout << blocknames.size() << std::endl;
for (const auto block : blocknames) {
std::cout << "Testing " << block.second << " => "
<< str(boost::format("%016X") % block.first) << std::endl;
auto block_definition = blockdef::make_from_noc_id(block.first);
// If the previous function fails, it'll return a NULL pointer
BOOST_REQUIRE(block_definition);
BOOST_CHECK(block_definition->is_block());
BOOST_CHECK_EQUAL(block_definition->get_name(), block.second);
}
}
BOOST_AUTO_TEST_CASE(test_ports)
{
// Create an FFT:
blockdef::sptr block_definition = blockdef::make_from_noc_id(0xFF70000000000000);
blockdef::ports_t in_ports = block_definition->get_input_ports();
BOOST_REQUIRE_EQUAL(in_ports.size(), 1);
BOOST_CHECK_EQUAL(in_ports[0]["name"], "in");
BOOST_CHECK_EQUAL(in_ports[0]["type"], "sc16");
BOOST_CHECK(in_ports[0].has_key("vlen"));
BOOST_CHECK(in_ports[0].has_key("pkt_size"));
blockdef::ports_t out_ports = block_definition->get_output_ports();
BOOST_REQUIRE_EQUAL(out_ports.size(), 1);
BOOST_CHECK_EQUAL(out_ports[0]["name"], "out");
BOOST_CHECK(out_ports[0].has_key("vlen"));
BOOST_CHECK(out_ports[0].has_key("pkt_size"));
BOOST_CHECK_EQUAL(block_definition->get_all_port_numbers().size(), 1);
BOOST_CHECK_EQUAL(block_definition->get_all_port_numbers()[0], 0);
}
BOOST_AUTO_TEST_CASE(test_args)
{
// Create an FFT:
blockdef::sptr block_definition = blockdef::make_from_noc_id(0xFF70000000000000);
blockdef::args_t args = block_definition->get_args();
BOOST_REQUIRE_EQUAL(args.size(), 7);
BOOST_CHECK_EQUAL(args[0]["name"], "spp");
BOOST_CHECK_EQUAL(args[0]["type"], "int");
BOOST_CHECK_EQUAL(args[0]["value"], "256");
}
BOOST_AUTO_TEST_CASE(test_regs)
{
// Create an FFT:
blockdef::sptr block_definition = blockdef::make_from_noc_id(0xFF70000000000000);
blockdef::registers_t sregs = block_definition->get_settings_registers();
BOOST_REQUIRE_EQUAL(sregs.size(), 6);
BOOST_CHECK_EQUAL(sregs["FFT_RESET"], 131);
BOOST_CHECK_EQUAL(sregs["FFT_SIZE_LOG2"], 132);
BOOST_CHECK_EQUAL(sregs["MAGNITUDE_OUT"], 133);
blockdef::registers_t user_regs = block_definition->get_readback_registers();
BOOST_REQUIRE_EQUAL(user_regs.size(), 6);
BOOST_CHECK_EQUAL(user_regs["RB_FFT_RESET"], 0);
BOOST_CHECK_EQUAL(user_regs["RB_MAGNITUDE_OUT"], 1);
}
|