This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
This problem is unrelated to anything you're doing with platforms or software.
This is a basic emulation issue and should probably be handled in another forum.
I suspect you are using an incorrect target configuration.
Or possibly, you need to connect to the DSP first before connecting to the A8.
Alan
I've launched both core. But still can't come into main function. I did follow steps:
1. Import SYS/BIOS examples into CCS (for both core). And add config files.
2. launch target config and connect CortexA8 target
3. Run script IVA_GEM_startup. I don't know what is this, I just saw it in one documentation (not TI doc!!!).
4. Connect DSP target ( without any errors)
5. Run both cores
6. Suspend, in order to make debug. Here I got text: " No source available..."
May be it will help to find solution of my problem ? Why program doesn't enter into main function?
Are you loading the respective programs into each core before running?
Alan
The data abort exception appears to be coming from a read of a GP Timer 2 register.
(Notice the value of DFAR in the exception register dump: 0x49032010.)
I suspect the clock to the GP Timer is not being enabled which results in a bus error when the CPU tries to read any of the timer registers.
The user is responsible for enabling the clocks to the Timers used by the application. This is usually done by either GEL script code during development or runtime C code when the application is deployed.
Alan