Hi experts,
I'm trying to restart the Network Coprocessor after reloading an out file on an C6670 DSP.
At the first run the application will work fine.
But after a reload I get an PSC timeout error.
After the Code which I started was:
CSL_PSC_PDSTATE pdstate=PSC_PDSTATE_OFF;
/* Check whether PA is enabled or not */
pdstate = CSL_PSC_getPowerDomainState (CSL_PSC_PD_PASS);
if(pdstate != PSC_PDSTATE_OFF)
{
/* Turn off the PA power domain */
{
// Disable the domain
CSL_PSC_disablePowerDomain (CSL_PSC_PD_PASS);
/* Start the state transition */
CSL_PSC_startStateTransition(CSL_PSC_PD_PASS);
// Wait for it to finish
while (! CSL_PSC_isStateTransitionDone (CSL_PSC_PD_PASS));
}
}
I got a PDSTAT2 value of 0x00000317 and a PTSTAT value of 0x00000004.
Does anyone has a glue what I can make to solve this?
Regards Frank
pdstat