forked from M-Labs/artiq
firmware: add si5324 programming functions
This commit is contained in:
parent
6c685205ce
commit
13c45c8766
|
@ -11,8 +11,12 @@ include!(concat!(env!("BUILDINC_DIRECTORY"), "/generated/csr.rs"));
|
|||
pub mod spr;
|
||||
pub mod irq;
|
||||
pub mod clock;
|
||||
|
||||
#[cfg(has_i2c)]
|
||||
pub mod i2c;
|
||||
#[cfg(has_i2c)]
|
||||
pub mod si5324;
|
||||
|
||||
#[cfg(has_ad9516)]
|
||||
#[allow(dead_code)]
|
||||
mod ad9516_reg;
|
||||
|
|
|
@ -0,0 +1,163 @@
|
|||
use i2c;
|
||||
use clock;
|
||||
|
||||
const BUSNO: u32 = 0;
|
||||
const ADDRESS: u8 = 0x68;
|
||||
|
||||
#[cfg(soc_platform = "kc705")]
|
||||
fn pca9548_select(channel: u8) -> Result<(), &'static str> {
|
||||
i2c::start(BUSNO);
|
||||
if !i2c::write(BUSNO, (0x74 << 1)) {
|
||||
return Err("PCA9548 failed to ack write address")
|
||||
}
|
||||
if !i2c::write(BUSNO, 1 << channel) {
|
||||
return Err("PCA9548 failed to ack control word")
|
||||
}
|
||||
i2c::stop(BUSNO);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
// NOTE: the logical parameters DO NOT MAP to physical values written
|
||||
// into registers. They have to be mapped; see the datasheet.
|
||||
// DSPLLsim reports the logical parameters in the design summary, not
|
||||
// the physical register values (but those are present separately).
|
||||
pub struct FrequencySettings {
|
||||
n1_hs: u8,
|
||||
nc1_ls: u32,
|
||||
n2_hs: u8,
|
||||
n2_ls: u32,
|
||||
n31: u32,
|
||||
n32: u32
|
||||
}
|
||||
|
||||
fn map_frequency_settings(settings: &FrequencySettings) -> Result<FrequencySettings, &'static str> {
|
||||
if settings.nc1_ls != 0 && (settings.nc1_ls % 2) == 1 {
|
||||
return Err("NC1_LS must be 0 or even")
|
||||
}
|
||||
if settings.nc1_ls > (1 << 20) {
|
||||
return Err("NC1_LS is too high")
|
||||
}
|
||||
if (settings.n2_ls % 2) == 1 {
|
||||
return Err("N2_LS must be even")
|
||||
}
|
||||
if settings.n2_ls > (1 << 20) {
|
||||
return Err("N2_LS is too high")
|
||||
}
|
||||
if settings.n31 > (1 << 19) {
|
||||
return Err("N31 is too high")
|
||||
}
|
||||
if settings.n32 > (1 << 19) {
|
||||
return Err("N32 is too high")
|
||||
}
|
||||
let r = FrequencySettings {
|
||||
n1_hs: match settings.n1_hs {
|
||||
4 => 0b000,
|
||||
5 => 0b001,
|
||||
6 => 0b010,
|
||||
7 => 0b011,
|
||||
8 => 0b100,
|
||||
9 => 0b101,
|
||||
10 => 0b110,
|
||||
11 => 0b111,
|
||||
_ => return Err("n1_hs has an invalid value")
|
||||
},
|
||||
nc1_ls: settings.nc1_ls - 1,
|
||||
n2_hs: match settings.n2_hs {
|
||||
4 => 0b000,
|
||||
5 => 0b001,
|
||||
6 => 0b010,
|
||||
7 => 0b011,
|
||||
8 => 0b100,
|
||||
9 => 0b101,
|
||||
10 => 0b110,
|
||||
11 => 0b111,
|
||||
_ => return Err("n2_hs has an invalid value")
|
||||
},
|
||||
n2_ls: settings.n2_ls - 1,
|
||||
n31: settings.n31 - 1,
|
||||
n32: settings.n32 - 1
|
||||
};
|
||||
Ok(r)
|
||||
}
|
||||
|
||||
fn write(reg: u8, val: u8) -> Result<(), &'static str> {
|
||||
i2c::start(BUSNO);
|
||||
if !i2c::write(BUSNO, (ADDRESS << 1)) {
|
||||
return Err("Si5324 failed to ack write address")
|
||||
}
|
||||
if !i2c::write(BUSNO, reg) {
|
||||
return Err("Si5324 failed to ack register")
|
||||
}
|
||||
if !i2c::write(BUSNO, val) {
|
||||
return Err("Si5324 failed to ack value")
|
||||
}
|
||||
i2c::stop(BUSNO);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn read(reg: u8) -> Result<u8, &'static str> {
|
||||
i2c::start(BUSNO);
|
||||
if !i2c::write(BUSNO, (ADDRESS << 1)) {
|
||||
return Err("Si5324 failed to ack write address")
|
||||
}
|
||||
if !i2c::write(BUSNO, reg) {
|
||||
return Err("Si5324 failed to ack register")
|
||||
}
|
||||
i2c::restart(BUSNO);
|
||||
if !i2c::write(BUSNO, (ADDRESS << 1) | 1) {
|
||||
return Err("Si5324 failed to ack read address")
|
||||
}
|
||||
let val = i2c::read(BUSNO, false);
|
||||
i2c::stop(BUSNO);
|
||||
Ok(val)
|
||||
}
|
||||
|
||||
fn ident() -> Result<u16, &'static str> {
|
||||
Ok(((read(134)? as u16) << 8) | (read(135)? as u16))
|
||||
}
|
||||
|
||||
fn locked() -> Result<bool, &'static str> {
|
||||
Ok((read(130)? & 0x01) == 0) // LOL_INT=1
|
||||
}
|
||||
|
||||
pub fn setup_hitless_clock_switching(settings: &FrequencySettings) -> Result<(), &'static str> {
|
||||
let s = map_frequency_settings(settings)?;
|
||||
|
||||
#[cfg(soc_platform = "kc705")]
|
||||
pca9548_select(7)?;
|
||||
|
||||
if ident()? != 0x0182 {
|
||||
return Err("Si5324 does not have expected product number");
|
||||
}
|
||||
|
||||
write(0, 0b01010000)?; // FREE_RUN=1
|
||||
write(1, 0b11100100)?; // CK_PRIOR2=1 CK_PRIOR1=0
|
||||
write(2, 0b0010 | (4 << 4))?; // BWSEL=4
|
||||
write(3, 0b0101 | 0x10)?; // SQ_ICAL=1
|
||||
write(4, 0b10010010)?; // AUTOSEL_REG=b10
|
||||
write(6, 0x07)?; // SFOUT1_REG=b111
|
||||
write(25, (s.n1_hs << 5 ) as u8)?;
|
||||
write(31, (s.nc1_ls >> 16) as u8)?;
|
||||
write(32, (s.nc1_ls >> 8 ) as u8)?;
|
||||
write(33, (s.nc1_ls) as u8)?;
|
||||
write(40, (s.n2_hs << 5 ) as u8 | (s.n2_ls >> 16) as u8)?;
|
||||
write(41, (s.n2_ls >> 8 ) as u8)?;
|
||||
write(42, (s.n2_ls) as u8)?;
|
||||
write(43, (s.n31 >> 16) as u8)?;
|
||||
write(44, (s.n31 >> 8) as u8)?;
|
||||
write(45, (s.n31) as u8)?;
|
||||
write(46, (s.n32 >> 16) as u8)?;
|
||||
write(47, (s.n32 >> 8) as u8)?;
|
||||
write(48, (s.n32) as u8)?;
|
||||
write(137, 0x01)?; // FASTLOCK=1
|
||||
write(136, 0x40)?; // ICAL=1
|
||||
|
||||
let t = clock::get_ms();
|
||||
while !locked()? {
|
||||
if clock::get_ms() > t + 1000 {
|
||||
return Err("Si5324 lock timeout");
|
||||
}
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
Loading…
Reference in New Issue