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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
//
// Copyright 2017 Ettus Research
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
#include "magnesium_radio_ctrl_impl.hpp"
#include <uhd/utils/log.hpp>
#include <uhd/rfnoc/node_ctrl_base.hpp>
#include <uhd/transport/chdr.hpp>
#include <uhd/utils/math.hpp>
#include <boost/algorithm/string.hpp>
#include <boost/make_shared.hpp>
#include <boost/format.hpp>
#include <sstream>
using namespace uhd;
using namespace uhd::usrp;
using namespace uhd::rfnoc;
static const size_t IO_MASTER_RADIO = 0;
static const double MAGNESIUM_TICK_RATE = 125e6; // Hz
static const double MAGNESIUM_RADIO_RATE = 125e6; // Hz
static const double MAGNESIUM_CENTER_FREQ = 2.5e9; // Hz
static const double MAGNESIUM_DEFAULT_GAIN = 0.0; // dB
static const double MAGNESIUM_DEFAULT_BANDWIDTH = 40e6; // Hz TODO: fix
static const size_t MAGNESIUM_NUM_TX_CHANS = 2;
static const size_t MAGNESIUM_NUM_RX_CHANS = 2;
std::string _get_which(direction_t dir, size_t chan)
{
std::stringstream ss;
switch (dir)
{
case RX_DIRECTION:
ss << "RX";
break;
case TX_DIRECTION:
ss << "TX";
break;
default:
UHD_THROW_INVALID_CODE_PATH();
}
switch (chan)
{
case 0:
ss << "1";
break;
case 1:
ss << "2";
break;
default:
throw uhd::runtime_error("invalid channel number");
}
return ss.str();
}
UHD_RFNOC_RADIO_BLOCK_CONSTRUCTOR(magnesium_radio_ctrl)
{
UHD_LOG_TRACE("MAGNESIUM", "magnesium_radio_ctrl_impl::ctor() ");
_radio_slot = (get_block_id().get_block_count() == IO_MASTER_RADIO) ? "A" : "B";
_slot_prefix = (get_block_id().get_block_count() == IO_MASTER_RADIO) ? "db_0_" : "db_1_";
UHD_LOG_TRACE("MAGNESIUM", "Radio slot: " << _radio_slot);
const size_t num_rx_chans = get_output_ports().size();
UHD_ASSERT_THROW(num_rx_chans == MAGNESIUM_NUM_RX_CHANS);
const size_t num_tx_chans = get_input_ports().size();
UHD_ASSERT_THROW(num_tx_chans == MAGNESIUM_NUM_TX_CHANS);
UHD_LOG_TRACE("MAGNESIUM", "Setting tick rate to " << MAGNESIUM_TICK_RATE / 1e6 << " MHz");
radio_ctrl_impl::set_rate(MAGNESIUM_TICK_RATE);
for (size_t chan = 0; chan < num_rx_chans; chan++) {
radio_ctrl_impl::set_rx_frequency(MAGNESIUM_CENTER_FREQ, chan);
radio_ctrl_impl::set_rx_gain(MAGNESIUM_DEFAULT_GAIN, chan);
// TODO: fix antenna name
radio_ctrl_impl::set_rx_antenna(str(boost::format("RX%d") % (chan+1)), chan);
radio_ctrl_impl::set_rx_bandwidth(MAGNESIUM_DEFAULT_BANDWIDTH, chan);
}
for (size_t chan = 0; chan < num_tx_chans; chan++) {
radio_ctrl_impl::set_tx_frequency(MAGNESIUM_CENTER_FREQ, chan);
radio_ctrl_impl::set_tx_gain(MAGNESIUM_DEFAULT_GAIN, chan);
// TODO: fix antenna name
radio_ctrl_impl::set_tx_antenna(str(boost::format("TX%d") % (chan + 1)), chan);
}
/**** Set up legacy compatible properties ******************************/
// For use with multi_usrp APIs etc.
// For legacy prop tree init:
// TODO: determine DB number
fs_path fe_base = fs_path("dboards") / _radio_slot;
std::vector<std::string> fe({ "rx_frontends" , "tx_frontends" });
std::vector<std::string> ant({ "RX" , "TX" });
UHD_ASSERT_THROW(MAGNESIUM_NUM_RX_CHANS == MAGNESIUM_NUM_TX_CHANS);
for (size_t fe_idx = 0; fe_idx < fe.size(); ++fe_idx)
{
fs_path fe_direction_path = fe_base / fe[fe_idx];
for (size_t chan = 0; chan < MAGNESIUM_NUM_RX_CHANS; ++chan) {
fs_path fe_path = fe_direction_path / chan;
UHD_LOG_TRACE("MAGNESIUM", "Adding FE at " << fe_path);
_tree->create<std::string>(fe_path / "name")
.set(str(boost::format("Magnesium %s %d") % ant[fe_idx] % chan))
;
_tree->create<std::string>(fe_path / "connection")
.set("IQ")
;
// TODO: fix antenna name
_tree->create<std::string>(fe_path / "antenna" / "value")
.set(str(boost::format("%s%d") % ant[fe_idx] % (chan+1)))
.add_coerced_subscriber(boost::bind(&magnesium_radio_ctrl_impl::set_rx_antenna, this, _1, chan))
.set_publisher(boost::bind(&radio_ctrl_impl::get_rx_antenna, this, chan))
;
_tree->create<std::vector<std::string>>(fe_path / "antenna" / "options")
.set(std::vector<std::string>(1, str(boost::format("%s%d") % ant[fe_idx] % (chan + 1))))
;
_tree->create<double>(fe_path / "freq" / "value")
.set(MAGNESIUM_CENTER_FREQ)
.set_coercer(boost::bind(&magnesium_radio_ctrl_impl::set_rx_frequency, this, _1, chan))
.set_publisher(boost::bind(&radio_ctrl_impl::get_rx_frequency, this, chan))
;
_tree->create<meta_range_t>(fe_path / "freq" / "range")
.set(meta_range_t(MAGNESIUM_CENTER_FREQ, MAGNESIUM_CENTER_FREQ))
;
_tree->create<double>(fe_path / "gains" / "null" / "value")
.set(MAGNESIUM_DEFAULT_GAIN)
.set_coercer(boost::bind(&magnesium_radio_ctrl_impl::set_rx_gain, this, _1, chan))
.set_publisher(boost::bind(&radio_ctrl_impl::get_rx_gain, this, chan))
;
_tree->create<meta_range_t>(fe_path / "gains" / "null" / "range")
.set(meta_range_t(MAGNESIUM_DEFAULT_GAIN, MAGNESIUM_DEFAULT_GAIN))
;
_tree->create<double>(fe_path / "bandwidth" / "value")
.set(MAGNESIUM_DEFAULT_BANDWIDTH)
.set_coercer(boost::bind(&magnesium_radio_ctrl_impl::set_rx_bandwidth, this, _1, chan))
.set_publisher(boost::bind(&radio_ctrl_impl::get_rx_bandwidth, this, chan))
;
_tree->create<meta_range_t>(fe_path / "bandwidth" / "range")
.set(meta_range_t(MAGNESIUM_DEFAULT_BANDWIDTH, MAGNESIUM_DEFAULT_BANDWIDTH))
;
}
}
// TODO change codec names
_tree->create<int>("rx_codecs" / _radio_slot / "gains");
_tree->create<int>("tx_codecs" / _radio_slot / "gains");
_tree->create<std::string>("rx_codecs" / _radio_slot / "name").set("AD9361 Dual ADC");
_tree->create<std::string>("tx_codecs" / _radio_slot / "name").set("AD9361 Dual DAC");
// TODO remove this dirty hack
if (not _tree->exists("tick_rate"))
{
_tree->create<double>("tick_rate").set(MAGNESIUM_TICK_RATE);
}
}
magnesium_radio_ctrl_impl::~magnesium_radio_ctrl_impl()
{
UHD_LOG_TRACE("MAGNESIUM", "magnesium_radio_ctrl_impl::dtor() ");
}
double magnesium_radio_ctrl_impl::set_rate(double rate)
{
// TODO: implement
if (rate != get_rate()) {
UHD_LOG_WARNING("MAGNESIUM", "Attempting to set sampling rate to invalid value " << rate);
}
return get_rate();
}
void magnesium_radio_ctrl_impl::set_tx_antenna(const std::string &ant, const size_t chan)
{
// TODO: implement
UHD_LOG_WARNING("MAGNESIUM", "Ignoring attempt to set Tx antenna");
// CPLD control?
}
void magnesium_radio_ctrl_impl::set_rx_antenna(const std::string &ant, const size_t chan)
{
// TODO: implement
UHD_LOG_WARNING("MAGNESIUM", "Ignoring attempt to set Rx antenna");
// CPLD control?
}
double magnesium_radio_ctrl_impl::set_tx_frequency(const double freq, const size_t chan)
{
return _set_freq(freq, chan, TX_DIRECTION);
}
double magnesium_radio_ctrl_impl::set_rx_frequency(const double freq, const size_t chan)
{
return _set_freq(freq, chan, RX_DIRECTION);
}
double magnesium_radio_ctrl_impl::set_rx_bandwidth(const double bandwidth, const size_t chan)
{
// TODO: implement
return get_rx_bandwidth(chan);
}
double magnesium_radio_ctrl_impl::set_tx_gain(const double gain, const size_t chan)
{
return _set_gain(gain, chan, TX_DIRECTION);
}
double magnesium_radio_ctrl_impl::set_rx_gain(const double gain, const size_t chan)
{
return _set_gain(gain, chan, RX_DIRECTION);
}
size_t magnesium_radio_ctrl_impl::get_chan_from_dboard_fe(const std::string &fe, const direction_t dir)
{
UHD_LOG_TRACE("MAGNESIUM", "get_chan_from_dboard_fe " << fe << " returns " << boost::lexical_cast<size_t>(fe));
return boost::lexical_cast<size_t>(fe);
}
std::string magnesium_radio_ctrl_impl::get_dboard_fe_from_chan(const size_t chan, const direction_t dir)
{
UHD_LOG_TRACE("MAGNESIUM", "get_dboard_fe_from_chan " << chan << " returns " << std::to_string(chan));
return std::to_string(chan);
}
double magnesium_radio_ctrl_impl::get_output_samp_rate(size_t port)
{
return 125e6;
}
void magnesium_radio_ctrl_impl::set_rpc_client(
uhd::rpc_client::sptr rpcc,
const uhd::device_addr_t &block_args
)
{
_rpcc = rpcc;
_block_args = block_args;
}
double magnesium_radio_ctrl_impl::_set_freq(const double freq, const size_t chan, const direction_t dir)
{
auto which = _get_which(dir, chan);
UHD_LOG_TRACE("MAGNESIUM", "calling " << _slot_prefix << "set_freq on " << which << " with " << freq);
return _rpcc->request_with_token<double>(_slot_prefix + "set_freq", which, freq, false);
}
double magnesium_radio_ctrl_impl::_set_gain(const double gain, const size_t chan, const direction_t dir)
{
auto which = _get_which(dir, chan);
UHD_LOG_TRACE("MAGNESIUM", "calling " << _slot_prefix << "set_gain on " << which << " with " << gain);
return _rpcc->request_with_token<double>(_slot_prefix + "set_gain", which, gain);
}
UHD_RFNOC_BLOCK_REGISTER(magnesium_radio_ctrl, "MagnesiumRadio");
|