Hi
I can't figure out how this is done? The CLKIN1 is 33 MHz yet the tcf file says
/* BIOS Timer Fix - This can be removed later */
bios.GBL.CLKOUT = 891.0000;
bios.CLK.SPECIFYRATE = 1;
bios.CLK.INPUTCLK = 148.5000;
Where does the 148.5 come from? Shouldn't this be set to 33? Or maybe this has nothing to do with the PLLM setup? The BIOS must be setting PLLM for PLL1 up somewhere but I can't figure out where.
How is the PLLM for PLL2 setup by the BIOS? (DDR clock)
The sd_loopback example is in:
C:\dvsdk_1_10_00_26_DM648\pspdrivers_1_10_00_09\packages\ti\sdo\pspdrivers\system\dm648\bios\evmDM648\video\sample\build
One other question. The example defines the struct below. Where is it used?
Thx
/* I2C Default Initial Parameters */
PSP_I2cConfig I2C_devParams =
{
/** Driver operation mode */
PSP_OPMODE_INTERRUPT,
/**< Own address (7 or 10 bit) */
I2C_OWN_ADDR,
/**< Number of bits/byte to be sent/received */
I2C_NUM_BITS,
/**< I2C Bus Frequency */
I2C_BUS_FREQ,
/**< Module input clock freq */
I2C_INPUT_BUS_FREQ,
/**< 7bit/10bit Addressing mode */
FALSE,
/**< Digital Loob Back (DLB) mode enabled */
FALSE
};