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.

f28069 Loading initialized memory from Flash to RAM.



Hello, 

I am currently trying to use the CLA on the F28069 control card. I wish to have the initialized sections of memory loaded to flash and then copied over to ram for execution. I have successfully done this using a modified linker file and adding the copy section routine to my source code. As long as I do not use the CLA, everything copies over and works fine.

Using the CLA while programming and running from RAM seems to work fine as well. Its combining the two things that gives rise to problems.  

When I try to use the CLA  (with the copy sections routine). it behaves unpredictably. Sometimes the code will run (minus the CLA working) and other times my code will mange to fall into the illegal interrupt service routine. I have even seen the code not follow itself properly. (jump into the wrong function while stepping through the code). I added to the copysections routine to have it take care of the CLA program space. I also tried using memcpy in the CLA initialization and still have had no luck.

Here is the code I added to the Copy Sections routine. 

I noticed that the debugger gives me this error when I try to read any variables that are stored in CLA memory space. 

I think it might be my linker file. I dont get any errors when I compile my code however various linker files seem to give me different results. I also looked at the memory .GEL file and everything looks as it should. 

I have attached the Linker file I am using. It is modified from the one included in control suite (for CLA with FLASH). 

/*
//###########################################################################
//
// FILE:    28069_RAM_CLA_C_lnk.cmd
//
// TITLE:   Linker Command File For F28069 examples that run out of RAM
//
//          This ONLY includes all SARAM blocks on the F28069 device.
//          This does not include flash or OTP.
//
//          Keep in mind that L0,L1,L2,L3 and L4 are protected by the code
//          security module.
//
//          What this means is in most cases you will want to move to
//          another memory map file which has more memory defined.
//
//###########################################################################
// $TI Release: F2806x C/C++ Header Files and Peripheral Examples V150 $ 
// $Release Date: June 16, 2015 $ 
// $Copyright: Copyright (C) 2011-2015 Texas Instruments Incorporated -
//             http://www.ti.com/ ALL RIGHTS RESERVED $
//###########################################################################
*/

/* ======================================================
// For Code Composer Studio V2.2 and later
// ---------------------------------------
// In addition to this memory linker command file,
// add the header linker command file directly to the project.
// The header linker command file is required to link the
// peripheral structures to the proper locations within
// the memory map.
//
// The header linker files are found in <base>\F2806x_headers\cmd
//
// For BIOS applications add:      F2806x_Headers_BIOS.cmd
// For nonBIOS applications add:   F2806x_Headers_nonBIOS.cmd
========================================================= */

/* ======================================================
// For Code Composer Studio prior to V2.2
// --------------------------------------
// 1) Use one of the following -l statements to include the
// header linker command file in the project. The header linker
// file is required to link the peripheral structures to the proper
// locations within the memory map                                    */

/* Uncomment this line to include file only for non-BIOS applications */
/* -l F2806x_Headers_nonBIOS.cmd */

/* Uncomment this line to include file only for BIOS applications */
/* -l F2806x_Headers_BIOS.cmd */

/* 2) In your project add the path to <base>\F2806x_headers\cmd to the
   library search path under project->build options, linker tab,
   library search path (-i).
/*========================================================= */

/* Define the memory block start/length for the F2806x
   PAGE 0 will be used to organize program sections
   PAGE 1 will be used to organize data sections

   Notes:
         Memory blocks on F28069 are uniform (ie same
         physical memory) in both PAGE 0 and PAGE 1.
         That is the same memory region should not be
         defined for both PAGE 0 and PAGE 1.
         Doing so will result in corruption of program
         and/or data.

         Contiguous SARAM memory blocks can be combined
         if required to create a larger memory block.
*/

_Cla1Prog_Start = _Cla1funcsRunStart;
-heap 0x400
-stack 0x400

// Define a size for the CLA scratchpad area that will be used
// by the CLA compiler for local symbols and temps
// Also force references to the special symbols that mark the
// scratchpad are. 
CLA_SCRATCHPAD_SIZE = 0x100;
--undef_sym=__cla_scratchpad_end
--undef_sym=__cla_scratchpad_start

MEMORY
{
PAGE 0 :
   /* BEGIN is used for the "boot to SARAM" bootloader mode   */

	BEGIN     		: origin = 0x3F7FF6, length = 0x000002 //start at flash and not RAM. 
  
   RAML5L8          : origin = 0x00C000, length = 0x006000
   RAML8	        : origin = 0x012000, length = 0x002000
   FLASH_AB   		: origin = 0x3F0000, length = 0x007F80     /* on-chip FLASH */
  /* RAML0_L2       : origin = 0x008000, length = 0x001000 */	 
   RAML3		    : origin = 0x009000, length = 0x001000  
   RESET      		: origin = 0x3FFFC0, length = 0x000002

   /* FPU Tables in Boot ROM */
   FPUTABLES        : origin = 0x3FD860, length = 0x0006A0	

    /* IQ Math Tables in Boot ROM */
   IQTABLES   		: origin = 0x3FDF00, length = 0x000B50 
   IQTABLES2  		: origin = 0x3FEA50, length = 0x00008C 
   IQTABLES3  		: origin = 0x3FEADC, length = 0x0000AA	

   BOOTROM    		: origin = 0x3FF3B0, length = 0x000C10


//PAGE 1 :

   /* Part of M0, BOOT rom will use this for stack */
   BOOT_RSVD   	        : origin = 0x000002, length = 0x00004E
   /* on-chip RAM block M1 */
   RAMM0      			: origin = 0x000050, length = 0x000400
   RAMM1       	        : origin = 0x000480, length = 0x000380     
   CLARAM0              : origin = 0x008800, length = 0x000400
   CLARAM1              : origin = 0x008C00, length = 0x000400
   CLARAM2				: origin = 0x008000, length = 0x000800
   /* on-chip RAM block L4-L8 */
   RAML4            	: origin = 0x00A000, length = 0x002000 
  /* RAML5              : origin = 0x00C000, length = 0x002000 */
  /* RAML6       	    : origin = 0x00E000, length = 0x002000 */
  /* RAML7       		: origin = 0x010000, length = 0x002000 */
  /* RAML8       		: origin = 0x012000, length = 0x002000 */
   FLASH_CD    			: origin = 0x3E8000, length = 0x008000     /* on-chip FLASH */
   CLA1_MSGRAMLOW       : origin = 0x001480, length = 0x000080
   CLA1_MSGRAMHIGH      : origin = 0x001500, length = 0x000080
}


SECTIONS
{


/*** User Defined Sections ***/
   	codestart       : > BEGIN,			PAGE = 0        /* Used by file CodeStartBranch.asm */
   	wddisable		: > FLASH_AB,		PAGE = 0		/* Used by file CodeStartBranch.asm */		
  	copysections	: > FLASH_AB,		PAGE = 0		/* Used by file SectionCopy.asm */
   ramfuncs         : > RAMM1,     PAGE = 0
  // .text            : > RAML5L8,   PAGE = 0
  // .cinit           : > RAMM0,     PAGE = 0
  // .pinit           : > RAMM0,     PAGE = 0
  // .switch          : > RAMM0,     PAGE = 0
   .reset           : > RESET,     PAGE = 0, TYPE = DSECT /* not used, */

   .stack           : > RAMM0,     PAGE = 0
   .ebss            : > RAML4,     PAGE = 0
  // .econst          : > RAML4,     PAGE = 0
   .esysmem         : > RAML4,     PAGE = 0
   .sysmem          : > RAML4,     PAGE = 0
   .cio             : > RAML4,     PAGE = 0

   .scratchpad      : > CLARAM0,   PAGE = 0
   .bss_cla		    : > CLARAM0,   PAGE = 0
   .const_cla	    : > CLARAM0,   PAGE = 0 
   
   IQmath           : > RAML4,	   PAGE = 0
   IQmathTables     : > IQTABLES,  PAGE = 0, TYPE = NOLOAD
   
   /* Allocate FPU math areas: */
   FPUmathTables    : > FPUTABLES, PAGE = 0, TYPE = NOLOAD
   
   
     .cinit			:	LOAD = FLASH_AB,	PAGE = 0	/* Load section to Flash */ 
                		RUN = RAML5L8 ,  	PAGE = 0    /* Run section from RAM */
                		LOAD_START(_cinit_loadstart),
                		RUN_START(_cinit_runstart),
						SIZE(_cinit_size)

	.const			:   LOAD = FLASH_AB,  	PAGE = 0    /* Load section to Flash */
                		RUN = RAML5L8 , 	PAGE = 0    /* Run section from RAM */
                		LOAD_START(_const_loadstart),
                		RUN_START(_const_runstart),
						SIZE(_const_size)

	.econst			:   LOAD = FLASH_CD,  	PAGE = 0   	/* Load section to Flash */ 
                		RUN = RAML4,	  	PAGE = 0    /* Run section from RAM */
                		LOAD_START(_econst_loadstart),
                		RUN_START(_econst_runstart),
						SIZE(_econst_size)

	.pinit			:   LOAD = FLASH_AB,  	PAGE = 0    /* Load section to Flash */
                		RUN = RAML5L8 ,   	PAGE = 0    /* Run section from RAM */
                		LOAD_START(_pinit_loadstart),
                		RUN_START(_pinit_runstart),
						SIZE(_pinit_size)

	.switch			:   LOAD = FLASH_AB,  	PAGE = 0   	/* Load section to Flash */ 
                		RUN = RAML5L8 ,   	PAGE = 0    /* Run section from RAM */
                		LOAD_START(_switch_loadstart),
                		RUN_START(_switch_runstart),
						SIZE(_switch_size)

	.text			:   LOAD = FLASH_AB, 	PAGE = 0    /* Load section to Flash */ 
                		RUN = RAML5L8 ,   	PAGE = 0    /* Run section from RAM */
                		LOAD_START(_text_loadstart),
                		RUN_START(_text_runstart),
						SIZE(_text_size)
   
 
   
	Cla1Prog        : 	 LOAD = FLASH_CD,	PAGE = 0
                         RUN = RAML8,		PAGE = 0
                         LOAD_START(_Cla1funcsLoadStart),
                         LOAD_END(_Cla1funcsLoadEnd),
						 RUN_START(_Cla1funcsRunStart),
						 LOAD_SIZE(_Cla1funcsLoadSize)
                         
   
   Cla1ToCpuMsgRAM  : > CLA1_MSGRAMLOW,   PAGE = 0
   CpuToCla1MsgRAM  : > CLA1_MSGRAMHIGH,  PAGE = 0
   Cla1DataRam0		: > CLARAM0,		  PAGE = 0
   Cla1DataRam1		: > CLARAM1,		  PAGE = 0
   Cla1DataRam2		: > CLARAM2,		  PAGE = 0

   CLA1mathTables	: > CLARAM1,
                      LOAD_START(_Cla1mathTablesLoadStart),
                      LOAD_END(_Cla1mathTablesLoadEnd), 
                      LOAD_SIZE(_Cla1mathTablesLoadSize),
                      RUN_START(_Cla1mathTablesRunStart),
                      PAGE = 0

   CLAscratch       : 
                     { *.obj(CLAscratch)
                     . += CLA_SCRATCHPAD_SIZE;
                     *.obj(CLAscratch_end) } > CLARAM0,
					 PAGE = 0

  /* Uncomment the section below if calling the IQNexp() or IQexp()
      functions from the IQMath.lib library in order to utilize the
      relevant IQ Math table in Boot ROM (This saves space and Boot ROM
      is 1 wait-state). If this section is not uncommented, IQmathTables2
      will be loaded into other memory (SARAM, Flash, etc.) and will take
      up space, but 0 wait-state is possible.
   */
   /*
   IQmathTables2    : > IQTABLES2, PAGE = 0, TYPE = NOLOAD
   {

              IQmath.lib<IQNexpTable.obj> (IQmathTablesRam)

   }
   */
   /* Uncomment the section below if calling the IQNasin() or IQasin()
      functions from the IQMath.lib library in order to utilize the
      relevant IQ Math table in Boot ROM (This saves space and Boot ROM
      is 1 wait-state). If this section is not uncommented, IQmathTables2
      will be loaded into other memory (SARAM, Flash, etc.) and will take
      up space, but 0 wait-state is possible.
   */
   /*
   IQmathTables3    : > IQTABLES3, PAGE = 0, TYPE = NOLOAD
   {

              IQmath.lib<IQNasinTable.obj> (IQmathTablesRam)

   }
   */

}

/*
//===========================================================================
// End of file.
//===========================================================================
*/

Thanks for you time and help, 

Matt

  • HI,

    On the 28069, the CLA code only runs out of RAML3, phyiscal memory at 0x9000. You cannot load it to any arbitrary RAM. What i'd suggest is allocate Cla1Prog to a RUN mem of RAMLS3 and then memcpy() the section at runtime just to ensure your code works. Once its does you can proceed to use the assembly copy code you are using.
  • Thanks for the advice! Completely overlooked that. Now however when I press the debug button the play, pause and pretty much all of the other debug functions do not work. I have since modified the code and have been working out of ram in the mean time so the code is different than when it was kind of working.
  • I found the error. In the Linker file provided for CLA FLASH programming the begin section is in RAM and not flash. FLASH A is not truncated to fit the Begin_flash section of code like in the linker files that have all code in FLASH and not just CLA code. I truncated the FLASH A size from 0x7F80 to 0x3F80 and everything worked great. Thank you for your advice.

    Regards,

    Matt