Hi all,
There is a routine for waiting PLL1 is locked in UBL,
in DaVinci-PSP-SDK-03.21.00.04/src/boot-strap/flash-utils-03.21.00.04/DM36x/Common/src/device.c
at line 650.
// Wait for PLL to LOCK
while(! (((SYSTEM->PLL0_CONFIG) & 0x07000000) == 0x07000000));
but the lock state value is 0x0E000000 because of the Document (sprufg5a.pdf) at page 159
for PLL2 the routine is located in same file and at line 710
// Wait for PLL to LOCK
while(! (((SYSTEM->PLL1_CONFIG) & 0x07000000) == 0x07000000));
Is the source code wrong? or Documents wrong?
Any one know about this?
Sorry for my poor English