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
|
//
// Copyright 2013-2014 Ettus Research LLC
//
// 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 "n230_clk_pps_ctrl.hpp"
#include <uhd/utils/msg.hpp>
#include <uhd/utils/safe_call.hpp>
#include <boost/cstdint.hpp>
#include <boost/format.hpp>
#include <boost/foreach.hpp>
#include <stdexcept>
#include <cmath>
#include <cstdlib>
namespace uhd { namespace usrp { namespace n230 {
class n230_clk_pps_ctrl_impl : public n230_clk_pps_ctrl
{
public:
n230_clk_pps_ctrl_impl(
ad9361_ctrl::sptr codec_ctrl,
n230_ref_pll_ctrl::sptr ref_pll_ctrl,
fpga::core_misc_reg_t& core_misc_reg,
fpga::core_pps_sel_reg_t& core_pps_sel,
fpga::core_status_reg_t& core_status_reg,
const std::vector<time_core_3000::sptr>& time_cores
): _codec_ctrl(codec_ctrl),
_ref_pll_ctrl(ref_pll_ctrl),
_core_misc_reg(core_misc_reg),
_core_pps_sel_reg(core_pps_sel),
_core_status_reg(core_status_reg),
_time_cores(time_cores),
_tick_rate(0.0),
_clock_source("<undefined>"),
_time_source("<undefined>")
{
}
virtual ~n230_clk_pps_ctrl_impl()
{
}
double set_tick_rate(const double rate)
{
UHD_MSG(status) << "Configuring a tick rate of " << rate/1e6 << " MHz... ";
_tick_rate = _codec_ctrl->set_clock_rate(rate);
UHD_MSG(status) << "got " << _tick_rate/1e6 << " MHz\n";
BOOST_FOREACH(time_core_3000::sptr& time_core, _time_cores) {
time_core->set_tick_rate(_tick_rate);
time_core->self_test();
}
return _tick_rate;
}
double get_tick_rate()
{
return _tick_rate;
}
void set_clock_source(const std::string &source)
{
if (_clock_source == source) return;
if (source == "internal") {
_ref_pll_ctrl->set_lock_to_ext_ref(false);
} else if (source == "external" || source == "gpsdo") {
_ref_pll_ctrl->set_lock_to_ext_ref(true);
} else {
throw uhd::key_error("set_clock_source: unknown source: " + source);
}
_core_misc_reg.write(fpga::core_misc_reg_t::REF_SEL, (source == "gpsdo") ? 1 : 0);
_clock_source = source;
}
const std::string& get_clock_source()
{
return _clock_source;
}
uhd::sensor_value_t get_ref_locked()
{
bool locked = false;
if (_clock_source == "external" || _clock_source == "gpsdo") {
locked = (_core_status_reg.read(fpga::core_status_reg_t::REF_LOCKED) == 1);
} else {
//If the source is internal, the charge pump on the ADF4001 is tristated which
//means that the 40MHz VCTXXO is free running i.e. always "locked"
locked = true;
}
return sensor_value_t("Ref", locked, "locked", "unlocked");
}
void set_pps_source(const std::string &source)
{
if (_time_source == source) return;
if (source == "none" or source == "gpsdo") {
_core_pps_sel_reg.write(fpga::core_pps_sel_reg_t::EXT_PPS_EN, 0);
} else if (source == "external") {
_core_pps_sel_reg.write(fpga::core_pps_sel_reg_t::EXT_PPS_EN, 1);
} else {
throw uhd::key_error("update_time_source: unknown source: " + source);
}
_time_source = source;
}
const std::string& get_pps_source()
{
return _time_source;
}
private:
ad9361_ctrl::sptr _codec_ctrl;
n230_ref_pll_ctrl::sptr _ref_pll_ctrl;
fpga::core_misc_reg_t& _core_misc_reg;
fpga::core_pps_sel_reg_t& _core_pps_sel_reg;
fpga::core_status_reg_t& _core_status_reg;
std::vector<time_core_3000::sptr> _time_cores;
double _tick_rate;
std::string _clock_source;
std::string _time_source;
};
}}} //namespace
using namespace uhd::usrp::n230;
using namespace uhd::usrp;
n230_clk_pps_ctrl::sptr n230_clk_pps_ctrl::make(
ad9361_ctrl::sptr codec_ctrl,
n230_ref_pll_ctrl::sptr ref_pll_ctrl,
fpga::core_misc_reg_t& core_misc_reg,
fpga::core_pps_sel_reg_t& core_pps_sel_reg,
fpga::core_status_reg_t& core_status_reg,
const std::vector<time_core_3000::sptr>& time_cores)
{
return sptr(new n230_clk_pps_ctrl_impl(
codec_ctrl, ref_pll_ctrl, core_misc_reg, core_pps_sel_reg, core_status_reg, time_cores));
}
|