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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
//
// Copyright 2016 Ettus Research LLC
//
// SPDX-License-Identifier: GPL-3.0
//
#include "graph_impl.hpp"
#include <uhd/rfnoc/source_block_ctrl_base.hpp>
#include <uhd/rfnoc/sink_block_ctrl_base.hpp>
#include <uhd/utils/log.hpp>
using namespace uhd::rfnoc;
/****************************************************************************
* Structors
***************************************************************************/
graph_impl::graph_impl(
const std::string &name,
boost::weak_ptr<uhd::device3> device_ptr
//async_msg_handler::sptr msg_handler
) : _name(name)
, _device_ptr(device_ptr)
{
UHD_LOG_TRACE("RFNOC", "Instantiating RFNoC graph " << _name);
}
/****************************************************************************
* Connection API
***************************************************************************/
void graph_impl::connect(
const block_id_t &src_block,
size_t src_block_port,
const block_id_t &dst_block,
size_t dst_block_port,
const size_t pkt_size_
) {
device3::sptr device_ptr = _device_ptr.lock();
if (not device_ptr) {
throw uhd::runtime_error("Invalid device");
}
uhd::rfnoc::source_block_ctrl_base::sptr src =
device_ptr->get_block_ctrl<rfnoc::source_block_ctrl_base>(src_block);
uhd::rfnoc::sink_block_ctrl_base::sptr dst =
device_ptr->get_block_ctrl<rfnoc::sink_block_ctrl_base>(dst_block);
UHD_LOGGER_TRACE("RFNOC")
<< "[" << _name << "] Attempting to connect "
<< src_block << ":" << src_block_port << " --> "
<< dst_block << ":" << dst_block_port
;
/********************************************************************
* 1. Draw the edges (logically connect the nodes)
********************************************************************/
size_t actual_src_block_port = src->connect_downstream(
boost::dynamic_pointer_cast<uhd::rfnoc::node_ctrl_base>(dst),
src_block_port
);
if (src_block_port == uhd::rfnoc::ANY_PORT) {
src_block_port = actual_src_block_port;
} else if (src_block_port != actual_src_block_port) {
throw uhd::runtime_error(str(
boost::format("Can't connect to port %d on block %s.")
% src_block_port % src->unique_id()
));
}
size_t actual_dst_block_port = dst->connect_upstream(
boost::dynamic_pointer_cast<uhd::rfnoc::node_ctrl_base>(src),
dst_block_port
);
if (dst_block_port == uhd::rfnoc::ANY_PORT) {
dst_block_port = actual_dst_block_port;
} else if (dst_block_port != actual_dst_block_port) {
throw uhd::runtime_error(str(
boost::format("Can't connect to port %d on block %s.")
% dst_block_port % dst->unique_id()
));
}
src->set_downstream_port(actual_src_block_port, actual_dst_block_port);
dst->set_upstream_port(actual_dst_block_port, actual_src_block_port);
// At this point, ports are locked and no one else can simply connect
// into them.
UHD_LOGGER_TRACE("RFNOC")
<< "[" << _name << "] Connecting "
<< src_block << ":" << actual_src_block_port << " --> "
<< dst_block << ":" << actual_dst_block_port
;
/********************************************************************
* 2. Check IO signatures match
********************************************************************/
if (not rfnoc::stream_sig_t::is_compatible(
src->get_output_signature(actual_src_block_port),
dst->get_input_signature(actual_dst_block_port)
)) {
throw uhd::runtime_error(str(
boost::format("Can't connect block %s to %s: IO signature mismatch\n(%s is incompatible with %s).")
% src->get_block_id().get() % dst->get_block_id().get()
% src->get_output_signature(actual_src_block_port)
% dst->get_input_signature(actual_dst_block_port)
));
}
UHD_LOG_TRACE("RFNOC", "IO signatures match.");
/********************************************************************
* 3. Configure the source block's destination
********************************************************************/
// Calculate SID
sid_t sid = dst->get_address(dst_block_port);
sid.set_src(src->get_address(src_block_port));
// Set SID on source block
src->set_destination(sid.get(), src_block_port);
/********************************************************************
* 4. Configure flow control
********************************************************************/
size_t pkt_size = (pkt_size_ != 0) ? pkt_size_ : src->get_output_signature(src_block_port).packet_size;
if (pkt_size == 0) { // Unspecified packet rate. Assume max packet size.
UHD_LOGGER_WARNING("RFNOC") << "Assuming max packet size for " << src->get_block_id() ;
pkt_size = uhd::rfnoc::MAX_PACKET_SIZE;
}
// FC window (in packets) depends on FIFO size... ...and packet size.
size_t buf_size_pkts = dst->get_fifo_size(dst_block_port) / pkt_size;
if (buf_size_pkts == 0) {
throw uhd::runtime_error(str(
boost::format("Input FIFO for block %s is too small (%d kiB) for packets of size %d kiB\n"
"coming from block %s.")
% dst->get_block_id().get() % (dst->get_fifo_size(dst_block_port) / 1024)
% (pkt_size / 1024) % src->get_block_id().get()
));
}
src->configure_flow_control_out(buf_size_pkts, src_block_port);
// On the same crossbar, use lots of FC packets
size_t pkts_per_ack = std::min(
uhd::rfnoc::DEFAULT_FC_XBAR_PKTS_PER_ACK,
buf_size_pkts - 1
);
// Over the network, use less or we'd flood the transport
if (sid.get_src_addr() != sid.get_dst_addr()) {
pkts_per_ack = std::max<size_t>(buf_size_pkts / uhd::rfnoc::DEFAULT_FC_TX_RESPONSE_FREQ, 1);
}
dst->configure_flow_control_in(
0, // Default to not use cycles
pkts_per_ack,
dst_block_port
);
/********************************************************************
* 5. Configure error policy
********************************************************************/
dst->set_error_policy("next_burst");
}
void graph_impl::connect(
const block_id_t &src_block,
const block_id_t &dst_block
) {
connect(src_block, ANY_PORT, dst_block, ANY_PORT);
}
void graph_impl::connect_src(
const block_id_t &src_block,
const size_t src_block_port,
const uhd::sid_t dst_sid,
const size_t buf_size_dst_bytes,
const size_t pkt_size_
) {
device3::sptr device_ptr = _device_ptr.lock();
if (not device_ptr) {
throw uhd::runtime_error("Invalid device");
}
UHD_LOGGER_DEBUG("RFNOC")
<< "[" << _name << "] Connecting "
<< src_block << ":" << src_block_port << " --> "
<< dst_sid.to_pp_string_hex();
uhd::rfnoc::source_block_ctrl_base::sptr src =
device_ptr->get_block_ctrl<rfnoc::source_block_ctrl_base>(src_block);
src->set_destination(dst_sid.get(), src_block_port);
size_t pkt_size = (pkt_size_ != 0)
? pkt_size_
: src->get_output_signature(src_block_port).packet_size;
if (pkt_size == 0) { // Unspecified packet rate. Assume max packet size.
UHD_LOGGER_WARNING("RFNOC")
<< "Assuming max packet size for " << src->get_block_id();
pkt_size = uhd::rfnoc::MAX_PACKET_SIZE;
}
size_t buf_size_pkts = buf_size_dst_bytes / pkt_size;
if (buf_size_pkts == 0) {
throw uhd::runtime_error(str(
boost::format("Input FIFO for unknown destination is too small "
"(%d kiB) for packets of size %d kiB\n coming from "
"block %s.")
% (buf_size_dst_bytes / 1024)
% (pkt_size / 1024)
% src->get_block_id().get()
));
}
src->configure_flow_control_out(buf_size_pkts, src_block_port);
}
void graph_impl::connect_sink(
const block_id_t &sink_block,
const size_t dst_block_port,
const size_t pkts_per_ack
) {
device3::sptr device_ptr = _device_ptr.lock();
if (not device_ptr) {
throw uhd::runtime_error("Invalid device");
}
UHD_LOGGER_DEBUG("RFNOC")
<< "[" << _name << "] Connecting unknown source to"
<< sink_block << ":" << dst_block_port;
uhd::rfnoc::sink_block_ctrl_base::sptr dst =
device_ptr->get_block_ctrl<rfnoc::sink_block_ctrl_base>(sink_block);
dst->configure_flow_control_in(
0,
pkts_per_ack,
dst_block_port
);
/********************************************************************
* 5. Configure error policy
********************************************************************/
dst->set_error_policy("next_burst");
}
|