Reply by Jeff Brower January 10, 20122012-01-10
Waiser-

> Thanks for your response.
>
> 1. The emulation connection are OK.
> 2. Yes. I can view memory and can make read/write.
> 3. Yes. The values of PMST, BSCR etc are changed after loading GEL file.
>
> Looking for your response.

It sounds more likely the problem is related to software build and not system/JTAG. Suggest to look in your .map file
and verify there is *no* code or data section prior to 0x60. It's possible that everything is fine, then you start to
download code and inadvertently overwrite an onchip register location, causing the process to go bad.

If you're absolutely sure that location 0x60 is the first one accessed, then suggest to manually try loading section
0x60. After loading a few words, recheck your register view and make sure nothing has changed. If you can get past
0x60, then find the next section CCS will download, and repeat. In other words, try to manually reproduce what CCS is
doing, step by step, and find the first instance that something goes wrong. Whenever that is, will be the key.

In doing this type of low level debug, it might help to write a very small program, like a main() function that
contains only a couple of lines of code -- no other .c files, no libraries, etc.

-Jeff

> On Fri, Jan 6, 2012 at 12:44 AM, Jeff Brower wrote:
>
>> Waiser-
>>
>> > We are trying to load the code on TMS320VC5416 using Ashling
>> > XDS560. we are unable to load the code
>> >
>> > 1. In start we are unable to load the GEL file. When we tried
>> > to load the GEL file. Emulator hangs and unable to load GEL file.
>>
>> Before loading code, did you verify the emulator connection? What are the
>> results of
>> SDConfig? If SDConfig doesn't pass then you may have a basic issue like
>> the DSP
>> being held in Reset, TRST signal doesn't have a pull-down R, etc.
>>
>> Assuming SDConfig passes...
>>
>> -your first failure below is at 0x80, have you tried
>> using Memory View to manually read/write that location?
>>
>> -if you display registers, do they make sense? For
>> example based on your GEL reset, you should see
>> specific values for PMST, BSCR, etc. Do you see
>> those
>>
>> -Jeff
>>
>> > Here is the GEL File.
>> >
>> > /*--------------------------*/
>> > /* StartUp() */
>> > /* This function is called each time CCS is started. */
>> > /* Customize this function to perform desired initialization. */
>> > /*--------------------------*/
>> > StartUp()
>> > {
>> > setup_memory_map();
>> > OnTargetConnect();
>> > }
>> > OnTargetConnect()
>> > {
>> >
>> > GEL_Reset();
>> > setup_extended_memory_map();
>> > reset_cpu( );
>> > GEL_TextOut("Gel StartUp Complete.\n");
>> >
>> > }
>> >
>> > setup_memory_map()
>> > {
>> > /* All memory maps are based on the PMST value of 0xFFE0 */
>> > GEL_MapOn();
>> > GEL_MapReset();
>> > GEL_MapAdd( 0x00080u, 0, 0x07F80u, 1, 1 ); // DARAM
>> > GEL_MapAdd( 0x08000u, 0, 0x08000u, 1, 1 ); // External
>> > GEL_MapAdd( 0x00000u, 1, 0x00060u, 1, 1 ); // MMRs
>> > GEL_MapAdd( 0x00060u, 1, 0x07FA0u, 1, 1 ); // DARAM
>> >
>> > GEL_MapAdd( 0x08000u, 1, 0x08000u, 1, 1 ); // DARAM
>> > GEL_MapAdd( 0x00000u, 2, 0x10000u, 1, 1 ); // IO Space
>> > }
>> >
>> > /*--------------------------*/
>> > /* setup_extended_memory_map() */
>> > /* Extended memory map setup */
>> > /*--------------------------*/
>> > setup_extended_memory_map()
>> > {
>> > /* Turn on the Extended Memory Map */
>> >
>> > GEL_XMDef( 0x0000u, 0x01eu, 1, 0x8000u, 0x7f );
>> > GEL_XMOn();
>> >
>> > GEL_MapAdd( 0x18000u, 0, 0x08000u, 1, 1 ); // DARAM
>> > GEL_MapAdd( 0x28000u, 0, 0x08000u, 1, 1 ); // SARAM
>> > GEL_MapAdd( 0x38000u, 0, 0x08000u, 1, 1 ); // SARAM
>> > }
>> >
>> > /*--------------------------*/
>> > /* clear_memory_map() */
>> > /* Memory map disable */
>> > /*--------------------------*/
>> > clear_memory_map()
>> > {
>> > GEL_MapOff();
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_cpu() */
>> > /* Reset the CPU */
>> > /*--------------------------*/
>> > reset_cpu()
>> > {
>> > /* Set PMST to: OVLY on; DROM on, CLKOUT off */
>> > #define PMST_VAL 0x7fa8u
>> >
>> > /* Set wait-state control reg for: 2 wait states, 4 for I/O */
>> > #define SWWSR_VAL 0x4492u
>> >
>> > /* Set external-banks switch control for: set CONSEC and BH,
>> CLKOUT/=2 */
>> > #define BSCR_VAL 0xa002u
>> >
>> > PMST = PMST_VAL;
>> > // *(int *)0x0000001D = 0x7faC;
>> > /*------------------*/
>> > /* Don't change the wait states, let the application */
>> > /* code handle it. */
>> > /* Note: at power up all wait states will be the */
>> > /* maximum (7) */
>> > /* SWWSR = SWWSR_VAL; */
>> > /*------------------*/
>> >
>> > BSCR = BSCR_VAL;
>> >
>> > disable_flash();
>> >
>> > reset_peripherals();
>> >
>> > GEL_TextOut("CPU Reset Complete.\n");
>> > }
>> >
>> > /*--------------------------*/
>> > /* disable_flash() */
>> > /* Disable Flash and Enable SRAM */
>> > /*--------------------------*/
>> > disable_flash()
>> > {
>> > /* Disable Flash so SRAM is visible */
>> > // *(int*)0x0005@io = 0x40;
>> >
>> > GEL_TextOut("Flash is disabled.\n");
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_peripherals() */
>> > /* Peripheral Reset */
>> > /*--------------------------*/
>> > reset_peripherals()
>> > {
>> > IFR = 0xFFFFu;
>> > IFR = 0x0000u;
>> >
>> > reset_dma();
>> > reset_mcbsp0();
>> > reset_mcbsp1();
>> > reset_mcbsp2();
>> > reset_timer0();
>> > reset_gpio();
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_dma() */
>> > /* DMA Reset */
>> > /*--------------------------*/
>> > reset_dma()
>> > {
>> > /* Set Peripheral Control Register Addresses for DEV_RESET */
>> > #define DMPREC 0x0054u
>> > #define DMSA 0x0055u
>> > #define DMSDI 0x0056u
>> >
>> > #define DMA_CH0_DMFSC_SUB_ADDR 0x0003u
>> > #define DMA_CH1_DMFSC_SUB_ADDR 0x0008u
>> > #define DMA_CH2_DMFSC_SUB_ADDR 0x000Du
>> > #define DMA_CH3_DMFSC_SUB_ADDR 0x0012u
>> > #define DMA_CH4_DMFSC_SUB_ADDR 0x0017u
>> > #define DMA_CH5_DMFSC_SUB_ADDR 0x001cu
>> >
>> > *(int *)DMPREC = 0;
>> >
>> > *(int *)DMSA = DMA_CH0_DMFSC_SUB_ADDR;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSA = DMA_CH1_DMFSC_SUB_ADDR;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSA = DMA_CH2_DMFSC_SUB_ADDR;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSA = DMA_CH3_DMFSC_SUB_ADDR;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSA = DMA_CH4_DMFSC_SUB_ADDR;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSA = DMA_CH2_DMFSC_SUB_ADDR;
>> > *(int *)DMSDI = 0;
>> > *(int *)DMSDI = 0;
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_mcbsp0() */
>> > /* MCBSP0 Reset */
>> > /*--------------------------*/
>> > reset_mcbsp0()
>> > {
>> > #define MCBSP0_SPSA 0x0038u
>> > #define MCBSP0_SPSD 0x0039u
>> >
>> > #define MCBSP_SPCR1_SUB_ADDR 0x0000u
>> > #define MCBSP_SPCR2_SUB_ADDR 0x0001u
>> > #define MCBSP_SRGR1_SUB_ADDR 0x0006u
>> > #define MCBSP_SRGR2_SUB_ADDR 0x0007u
>> > #define MCBSP_MCR1_SUB_ADDR 0x0008u
>> > #define MCBSP_MCR2_SUB_ADDR 0x0009u
>> > #define SRGR1_INIT 0x0001u
>> >
>> > *(int *)MCBSP0_SPSA = MCBSP_SPCR1_SUB_ADDR;
>> > *(int *)MCBSP0_SPSD = 0;
>> > *(int *)MCBSP0_SPSA = MCBSP_SPCR2_SUB_ADDR;
>> > *(int *)MCBSP0_SPSD = 0;
>> >
>> > *(int *)MCBSP0_SPSA = MCBSP_SRGR1_SUB_ADDR;
>> > *(int *)MCBSP0_SPSD = SRGR1_INIT;
>> > *(int *)MCBSP0_SPSA = MCBSP_SRGR2_SUB_ADDR;
>> > *(int *)MCBSP0_SPSD = 0;
>> >
>> > *(int *)MCBSP0_SPSA = MCBSP_MCR1_SUB_ADDR;
>> > *(int *)MCBSP0_SPSD = 0;
>> > *(int *)MCBSP0_SPSA = MCBSP_MCR2_SUB_ADDR;
>> > *(int *)MCBSP0_SPSD = 0;
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_mcbsp1() */
>> > /* MCBSP1 Reset */
>> > /*--------------------------*/
>> > reset_mcbsp1()
>> > {
>> > #define MCBSP1_SPSA 0x0048u
>> > #define MCBSP1_SPSD 0x0049u
>> >
>> > #define MCBSP_SPCR1_SUB_ADDR 0x0000u
>> > #define MCBSP_SPCR2_SUB_ADDR 0x0001u
>> > #define MCBSP_SRGR1_SUB_ADDR 0x0006u
>> > #define MCBSP_SRGR2_SUB_ADDR 0x0007u
>> > #define MCBSP_MCR1_SUB_ADDR 0x0008u
>> > #define MCBSP_MCR2_SUB_ADDR 0x0009u
>> > #define SRGR1_INIT 0x0001u
>> >
>> > *(int *)MCBSP1_SPSA = MCBSP_SPCR1_SUB_ADDR;
>> > *(int *)MCBSP1_SPSD = 0;
>> > *(int *)MCBSP1_SPSA = MCBSP_SPCR2_SUB_ADDR;
>> > *(int *)MCBSP1_SPSD = 0;
>> >
>> > *(int *)MCBSP1_SPSA = MCBSP_SRGR1_SUB_ADDR;
>> > *(int *)MCBSP1_SPSD = SRGR1_INIT;
>> > *(int *)MCBSP1_SPSA = MCBSP_SRGR2_SUB_ADDR;
>> > *(int *)MCBSP1_SPSD = 0;
>> >
>> > *(int *)MCBSP1_SPSA = MCBSP_MCR1_SUB_ADDR;
>> > *(int *)MCBSP1_SPSD = 0;
>> > *(int *)MCBSP1_SPSA = MCBSP_MCR2_SUB_ADDR;
>> > *(int *)MCBSP1_SPSD = 0;
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_mcbsp2() */
>> > /* MCBSP2 Reset */
>> > /*--------------------------*/
>> > reset_mcbsp2()
>> > {
>> > #define MCBSP2_SPSA 0x0034u
>> > #define MCBSP2_SPSD 0x0035u
>> >
>> > #define MCBSP_SPCR1_SUB_ADDR 0x0000u
>> > #define MCBSP_SPCR2_SUB_ADDR 0x0001u
>> > #define MCBSP_SRGR1_SUB_ADDR 0x0006u
>> > #define MCBSP_SRGR2_SUB_ADDR 0x0007u
>> > #define MCBSP_MCR1_SUB_ADDR 0x0008u
>> > #define MCBSP_MCR2_SUB_ADDR 0x0009u
>> > #define SRGR1_INIT 0x0001u
>> >
>> > *(int *)MCBSP2_SPSA = MCBSP_SPCR1_SUB_ADDR;
>> > *(int *)MCBSP2_SPSD = 0;
>> > *(int *)MCBSP2_SPSA = MCBSP_SPCR2_SUB_ADDR;
>> > *(int *)MCBSP2_SPSD = 0;
>> >
>> > *(int *)MCBSP2_SPSA = MCBSP_SRGR1_SUB_ADDR;
>> > *(int *)MCBSP2_SPSD = SRGR1_INIT;
>> > *(int *)MCBSP2_SPSA = MCBSP_SRGR2_SUB_ADDR;
>> > *(int *)MCBSP2_SPSD = 0;
>> >
>> > *(int *)MCBSP2_SPSA = MCBSP_MCR1_SUB_ADDR;
>> > *(int *)MCBSP2_SPSD = 0;
>> > *(int *)MCBSP2_SPSA = MCBSP_MCR2_SUB_ADDR;
>> > *(int *)MCBSP2_SPSD = 0;
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_timer0() */
>> > /* Timer0 Reset */
>> > /*--------------------------*/
>> > reset_timer0()
>> > {
>> > #define PRD0 0x0025u
>> > #define TCR0 0x0026u
>> >
>> > #define PRD1 0x0031u
>> > #define TCR1 0x0032u
>> >
>> > #define TIMER_STOP 0x0010u
>> > #define TIMER_RESET 0x0020u
>> > #define PRD_DEFAULT 0xFFFFu
>> >
>> > *(int *)TCR0 = TIMER_STOP;
>> > *(int *)PRD0 = PRD_DEFAULT;
>> > *(int *)TCR0 = TIMER_RESET;
>> > }
>> >
>> > /*--------------------------*/
>> > /* reset_gpio() */
>> > /* GPIO Reset */
>> > /*--------------------------*/
>> > reset_gpio()
>> > {
>> > #define GPIOCR 0x0010u
>> >
>> > *(int *)GPIOCR = 0;
>> > }
>> >
>> > /*--------------------------*/
>> > /* DSK5416 MENU */
>> > /*--------------------------*/
>> > menuitem "DSK5416 Functions";
>> >
>> > hotmenu Reset()
>> > {
>> > GEL_Reset();
>> > reset_cpu( );
>> > }
>> >
>> > /*--------------------------*/
>> > /* MEMORY MAP MENU */
>> > /*--------------------------*/
>> > menuitem "Memory Map";
>> >
>> > hotmenu SetMemoryMap()
>> > {
>> > setup_memory_map();
>> > }
>> > hotmenu SetExtendedMemoryMap()
>> > {
>> > setup_extended_memory_map();
>> > }
>> > hotmenu ClearMemoryMap()
>> > {
>> > clear_memory_map();
>> > }
>> >
>> > After commenting the following function in the GEL File reset_mcbsp0()
>> and reset_mcbsp1(). The GEL File is loaded successfully.
>> >
>> > reset_peripherals()
>> > {
>> > IFR = 0xFFFFu;
>> > IFR = 0x0000u;
>> >
>> > reset_dma();
>> > // reset_mcbsp0();
>> > // reset_mcbsp1();
>> > reset_mcbsp2();
>> > reset_timer0();
>> > reset_gpio();
>> > }
>> >
>> > 2.After modifying GEL file and loading successfully. We have tried to
>> load code but we are not successful. Here is our linker command file:
>> >
>> > /*************Linker Command File*******************/
>> > -c
>> >
>> > -l C:\CCStudio_v3.3\C5400\cgtools\lib\rts_ext.lib
>> >
>> > MEMORY
>> > {
>> >
>> > PAGE 0 : PROG : origin = 80h length = 7F80h
>> > PAGE 1 : DATA: origin = 8000h length = 2000h
>> >
>> >
>> > }
>> > SECTIONS
>> > {
>> > .text : > PROG PAGE 0
>> > .cinit : > PROG PAGE 0
>> > .switch : > PROG PAGE 0
>> >
>> >
>> > .bss : > DATA PAGE 1
>> > .const : > DATA PAGE 1
>> > .sysmem : > DATA PAGE 1
>> > .stack : > DATA PAGE 1
>> > }
>> >
>> > /****************************************/
>> >
>> > We get following error, when we try to load the code.
>> >
>> > Data Verification failed at 0x80.
>> >
>> > After modifying the Linker command file for loading code at 0x28000.
>> > PAGE 0 : PROG : origin = 28000h length = 8000h
>> > We get the following error
>> >
>> > Data Verification failed at 0x28000.
>> >
>> > Similarly for 0x38000.
>> >
>> > Our development is stuck due to this issue.
>> > Please let us know if we are doing something wrong in GEL file or linker
>> command file.
>> >
>> > Our Ashling XDS560 emulator is worked fine with TMS320DM6446. Let us
>> know if XDS560 have any issue with TMS320vc5416.
>> >
>> > We are waiting for quick response.
>> >
>> > Regards
>> > Waiser
>> --
> Regards
> Waiser Mehmood
> Design Engineer
> C@RE Pvt. Ltd.

OMAP35x EVM jump-starts low-power apps
The modular and extensible OMAP35x Evaluation Module (EVM) enables developers to start building applications based on the OMAP35x architecture: http://www.DSPRelated.com/omap35x