Hello,
I am using custom board DM6467 (HW-6467-CORE-Z729), as per the document ARM runs at 365MHz and DSP runs at 729MHz. Unfortunately, am unable to determine DSP speed. I just used the following code to check,
-----------------------------------------------------------------
#define DM6467_DSP_CLOCKS_PER_SEC (1/729000000.0) /* 729 MHz */
long long tsc_end = 0;
long long tsc_diff = 0;
unsigned int dsp_profile = 0;
TSCL = 0;
tsc_start = _itoll(TSCH, TSCL);
for(i=0; i<(640*480); i++)
{
*dst++ = *src++;
}
tsc_end = _itoll(TSCH, TSCL);