FrontPanel Programmer's Interface
Public Member Functions

okCPLL22393 Class Reference

This is mainly a container class which holds the appropriate configuration parameters for a Cypress 22393 PLL. More...

List of all members.

Public Member Functions

 okCPLL22393 ()
 Default constructor.
int GetOutputDivider (int n)
 Get the divider value for output number N.
double GetOutputFrequency (int n)
 Gets the current output frequency for a particular output.
ClockSource GetOutputSource (int n)
 Gets the current output clock source for a particular output.
double GetPLLFrequency (int n)
 Get the PLL output frequency.
int GetPLLP (int n)
 Get the PLL P(total) value.
int GetPLLQ (int n)
 Get the PLL Q(total) value.
void GetProgrammingInfo (unsigned char *buf)
 Loads 'buf' with alternating address/data for programming the PLL.
double GetReference ()
 Get the current reference crystal frequency.
void InitFromProgrammingInfo (unsigned char *buf)
 Generates the PLL data from I2C programming data.
bool IsPLLEnabled (int n)
 Returns true is the specified PLL is enabled.
bool IsOutputEnabled (int n)
 Returns true is the specified output is enabled.
bool SetCrystalLoad (double capload)
 Set the crystal load capacitance.
void SetOutputEnable (int n, bool enable)
 Set the output enable for a particular output.
bool SetOutputDivider (int n, int div)
 Set the divider value for output number N.
bool SetOutputSource (int n, ClockSource clksrc)
 Set the source for a particular output.
bool SetPLLParameters (int n, int p, int q, bool enable=true)
 Set the PLL P(total) and Q(total) values for PLL number N.
bool SetPLLLF (int n, int lf)
 Manually set the PLL loop filter value for optimal performance.
void SetReference (double freq)
 Sets the reference crystal frequency for output frequency computations.

Detailed Description

This is a container class which holds the appropriate configuration parameters for a Cypress 22393 PLL. The PLL has a single VCO but mutliple outputs with frequencies derived from dividers and switching blocks.

Python Note: Under Python, this class is simply called PLL22393. Therefore, if you import the ok library, you would refer to this class as ok.PLL22393.

Note that this object does not communicate with the XEM. That is, it does not reflect the state of the actual PLL. It is simply a container class used to configure and query the on-board PLL.

Typically, PLL settings will be set with the FrontPanel application and stored in EEPROM. In some cases, however, you may want your code to configure the PLL. Refer to the Cypress documentation to see how the various settings affect the output. The following example configures PLL #0 to operate at 400 MHz and sets up two outputs at 100 MHz and 50 MHz. (PLL 0 throughout the API corresponds to Cypress PLL #1 and so on.)

 okCPLL22393 *pll = new okCPLL22393
 pll->SetReference(48.0f);
 pll->SetPLLParameters(0, 400, 48);
 pll->SetOutputSource(0, okCPLL22393::ClkSrc_PLL0_0);
 pll->SetOutputDivider(0, 4);
 pll->SetOutputEnable(0, true);
 pll->SetOutputSource(1, okCPLL22393::ClkSrc_PLL0_0);
 pll->SetOutputDivider(1, 8);
 pll->SetOutputEnable(1, true);

At this point, the pll instance may be passed to SetPLLConfiguration to configure the on-board PLL. You can also use okCPLL22393::GetOutputFrequency to verify that the output frequency is set properly.


Member Function Documentation

bool okCPLL22393::SetPLLLF ( int  n,
int  lf 
)

Sets the loop filter bits for a particular PLL.

The loop filter bits can be tuned to maintain stability for a given value of Ptotal. These bits are automatically set according to the datasheet when SetPLLParameters() is called. However, a particular application may override this setting by calling this function after calling SetPLLParameters().


Copyright (c) 2005 Opal Kelly Incorporated