aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/x300/x300_dac_ctrl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/lib/usrp/x300/x300_dac_ctrl.cpp')
-rw-r--r--host/lib/usrp/x300/x300_dac_ctrl.cpp123
1 files changed, 85 insertions, 38 deletions
diff --git a/host/lib/usrp/x300/x300_dac_ctrl.cpp b/host/lib/usrp/x300/x300_dac_ctrl.cpp
index a9d9a7730..62fe55c35 100644
--- a/host/lib/usrp/x300/x300_dac_ctrl.cpp
+++ b/host/lib/usrp/x300/x300_dac_ctrl.cpp
@@ -43,7 +43,13 @@ class x300_dac_ctrl_impl : public x300_dac_ctrl
{
public:
x300_dac_ctrl_impl(uhd::spi_iface::sptr iface, const size_t slaveno, const double refclk):
- _iface(iface), _slaveno(slaveno)
+ _iface(iface), _slaveno(slaveno), _refclk(refclk)
+ {
+ init();
+ check_pll();
+ }
+
+ void init()
{
write_ad9146_reg(0x00, 0x20); // Take DAC into reset.
write_ad9146_reg(0x00, 0x80); // Enable SPI reads and come out of reset
@@ -51,43 +57,31 @@ public:
// Calculate N0 to be VCO friendly.
// Aim for VCO between 1 and 2GHz, assert otherwise.
- // const int N1 = 4;
- const int N1 = 4;
+ // const int N1 = 4;
+ const int N1 = 4;
int N0_val, N0;
for (N0_val = 0; N0_val < 3; N0_val++)
{
N0 = (1 << N0_val); //1, 2, 4
- if ((refclk * N0 * N1) >= 1e9) break;
+ if ((_refclk * N0 * N1) >= 1e9) break;
}
- UHD_ASSERT_THROW((refclk * N0 * N1) >= 1e9);
- UHD_ASSERT_THROW((refclk * N0 * N1) <= 2e9);
+ UHD_ASSERT_THROW((_refclk * N0 * N1) >= 1e9);
+ UHD_ASSERT_THROW((_refclk * N0 * N1) <= 2e9);
/* Start PLL */
//write_ad9146_reg(0x0C, 0xD1); // Narrow PLL loop filter, Midrange charge pump.
write_ad9146_reg(0x0D, 0xD1 | (N0_val << 2)); // N1=4, N2=16, N0 as calculated
- //write_ad9146_reg(0x0D, 0x90 | (N0_val << 2)); // N1=2, N2=8, N0 as calculated
+ //write_ad9146_reg(0x0D, 0x90 | (N0_val << 2)); // N1=2, N2=8, N0 as calculated
write_ad9146_reg(0x0A, 0xCF); // Auto init VCO band training as per datasheet
write_ad9146_reg(0x0A, 0xA0); // See above.
- // Verify PLL is Locked. 1 sec timeout.
- // NOTE: Data sheet inconsistant about which pins give PLL lock status. FIXME!
- const time_spec_t exit_time = time_spec_t::get_system_time() + time_spec_t(1.0);
- while (true)
- {
- const size_t reg_e = read_ad9146_reg(0x0E); /* Expect bit 7 = 1 */
- if ((exit_time < time_spec_t::get_system_time()) && ((reg_e & (1 << 7)) == 0))
- throw uhd::runtime_error("x300_dac_ctrl: timeout waiting for DAC PLL to lock");
- else if ((reg_e & ((1 << 7) | (1 << 6))) != 0) break;
- boost::this_thread::sleep(boost::posix_time::milliseconds(10));
- }
-
/* Skew DCI signal to find stable data eye */
//write_ad9146_reg(0x16, 0x04); //Disable delay in DCI
//write_ad9146_reg(0x16, 0x00); //165ps delay in DCI
//write_ad9146_reg(0x16, 0x01); //375ps delay in DCI
write_ad9146_reg(0x16, 0x02); //615ps delay in DCI
//write_ad9146_reg(0x16, 0x03); //720ps delay in DCI
-
+
write_ad9146_reg(0x03, 0x00); // 2's comp, I first, byte wide interface
//fpga wants I,Q in the sample word:
@@ -97,7 +91,14 @@ public:
write_ad9146_reg(0x03, (1 << 6)); //2s comp, i first, byte mode
write_ad9146_reg(0x10, 0x48); // Disable SYNC mode.
- write_ad9146_reg(0x17, 0x04); // FIFO write pointer offset
+
+ // FIFO write pointer offset
+ // It was found that the read was happening before the write
+ // so the FIFO was maintainining a depth of 3 during operation.
+ // Setting it to 5 to ensure it maintains the ideal depth of 4.
+ // TODO: Investigate RefClk -> DCI clock timing.
+ write_ad9146_reg(0x17, 0x05);
+
write_ad9146_reg(0x18, 0x02); // Request soft FIFO align
write_ad9146_reg(0x18, 0x00); // (See above)
write_ad9146_reg(0x1B, 0xE4); // Bypass: Modulator, InvSinc, IQ Bal
@@ -106,6 +107,8 @@ public:
write_ad9146_reg(0x1C, 0x00); // Configure HB1
write_ad9146_reg(0x1D, 0x00); // Configure HB2
+ // Clear event flags
+ write_ad9146_reg(0x06, 0xFF);
}
@@ -118,27 +121,71 @@ public:
)
}
- void arm_dac_sync(void)
- {
- //
- // Attempt to synchronize AD9146's
- //
- write_ad9146_reg(0x10, 0xCF); // Enable SYNC mode. Sync Averaging set to 128.
-
- const time_spec_t exit_time = time_spec_t::get_system_time() + time_spec_t(1.0);
- while (true)
- {
- const size_t reg_12 = read_ad9146_reg(0x12); /* Expect bit 7 = 0, bit 6 = 1 */
- if ((exit_time < time_spec_t::get_system_time()) && (((reg_12 & (1 << 6)) == 0) || ((reg_12 & (1 << 7)) != 0)))
- throw uhd::runtime_error("x300_dac_ctrl: timeout waiting for backend synchronization");
- else if (((reg_12 & (1 << 6)) != 0) && ((reg_12 & (1 << 7)) == 0)) break;
- boost::this_thread::sleep(boost::posix_time::milliseconds(10));
- }
- }
+ void arm_dac_sync(void)
+ {
+ //
+ // Attempt to synchronize AD9146's
+ //
+ write_ad9146_reg(0x10, 0x48); // Disable SYNC mode.
+ write_ad9146_reg(0x06, 0x30); // Clear Sync event flags
+ write_ad9146_reg(0x10, 0xCF); // Enable SYNC mode. Sync Averaging set to 128.
+ }
+
+ void reset()
+ {
+ init();
+ }
+
+ void check_pll()
+ {
+ // Verify PLL is Locked. 1 sec timeout.
+ // NOTE: Data sheet inconsistant about which pins give PLL lock status. FIXME!
+ const time_spec_t exit_time = time_spec_t::get_system_time() + time_spec_t(1.0);
+ while (true)
+ {
+ const size_t reg_e = read_ad9146_reg(0x0E); // PLL Status (Expect bit 7 = 1)
+ const size_t reg_6 = read_ad9146_reg(0x06); // Event Flags (Expect bit 7 = 0 and bit 6 = 1)
+ if ((((reg_e >> 7) & 0x1) == 0x1) && (((reg_6 >> 6) & 0x3) == 0x1))
+ break;
+ if (exit_time < time_spec_t::get_system_time())
+ throw uhd::runtime_error("x300_dac_ctrl: timeout waiting for DAC PLL to lock");
+ if (reg_6 & (1 << 7)) // Sync lost?
+ write_ad9146_reg(0x06, 0xC0); // Clear PLL event flags
+ boost::this_thread::sleep(boost::posix_time::milliseconds(10));
+ }
+ }
+
+ void check_dac_sync()
+ {
+ const time_spec_t exit_time = time_spec_t::get_system_time() + time_spec_t(1.0);
+ while (true)
+ {
+ boost::this_thread::sleep(boost::posix_time::milliseconds(1)); // wait for sync to complete
+ const size_t reg_12 = read_ad9146_reg(0x12); // Sync Status (Expect bit 7 = 0, bit 6 = 1)
+ const size_t reg_6 = read_ad9146_reg(0x06); // Event Flags (Expect bit 5 = 0 and bit 4 = 1)
+ if ((((reg_12 >> 6) & 0x3) == 0x1) && (((reg_6 >> 4) & 0x3) == 0x1))
+ break;
+ if (exit_time < time_spec_t::get_system_time())
+ throw uhd::runtime_error("x300_dac_ctrl: timeout waiting for backend synchronization");
+ if (reg_12 & (1 << 7)) // Sync acquired and lost?
+ arm_dac_sync(); // Re-arm and try again
+ else if (reg_6 & (1 << 5))
+ write_ad9146_reg(0x06, 0x30); // Clear Sync event flags
+ }
+ }
+
+ void check_frontend_sync()
+ {
+ // Register 0x19 has a thermometer indicator of the FIFO depth
+ const size_t reg_19 = read_ad9146_reg(0x19);
+ if ((reg_19 & 0xFF) != 0xF)
+ UHD_MSG(warning) << "x300_dac_ctrl: unexpected FIFO depth [0x" << std::hex << (reg_19 & 0xFF) << std::dec << "]" << std::endl;
+ }
private:
uhd::spi_iface::sptr _iface;
const size_t _slaveno;
+ const double _refclk;
};
/***********************************************************************