F2812.cmd
上传用户:qingfan3
上传日期:2014-10-27
资源大小:31439k
文件大小:8k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2. //###########################################################################
  3. //
  4. // FILE: F2812.cmd
  5. //
  6. // TITLE: Linker Command File For F2812 Device
  7. //
  8. //###########################################################################
  9. //
  10. //  Ver | dd mmm yyyy | Who  | Description of changes
  11. // =====|=============|======|===============================================
  12. //  1.00| 11 Sep 2003 | L.H  | Changes since previous version (v.58 Alpha)
  13. //      |             |      | Removed .bss, .const and .sysmem
  14. //      |             |      |    These are for a small memory model.  All examples
  15. //      |             |      |    use the large model.
  16. //      |             |      | Added ECANA_LAM ECANA_MOTO and ECANA_MOTS memory
  17. //      |             |      |    blocks.  Also allocated the register files
  18. //      |             |      |    to these memory blocks.
  19. //      |             |      | Added CSM Password locations to Page 0
  20. //      |             |      |    in order to program new passwords
  21. //      |             |      | Moved peripheral register files to DSP28_Headers_BIOS.cmd
  22. //      |             |      |    and DSP28_Headers_nonBIOS.cmd
  23. //      |             |      | Added CSM_RSVD memory section in FLASHA - this region
  24. //      |             |      |    should be programmed with all 0x0000 when using the CSM
  25. //###########################################################################
  26. */
  27. /* ======================================================
  28. // For Code Composer Studio V2.2 and later
  29. // ---------------------------------------
  30. // In addition to this memory linker command file, 
  31. // add the header linker command file directly to the project. 
  32. // The header linker command file is required to link the
  33. // peripheral structures to the proper locations within 
  34. // the memory map.
  35. //
  36. // The header linker files are found in <base>DSP281x_Headerscmd
  37. //   
  38. // For BIOS applications add:      DSP281x_Headers_nonBIOS.cmd
  39. // For nonBIOS applications add:   DSP281x_Headers_nonBIOS.cmd    
  40. ========================================================= */
  41. /* ======================================================
  42. // For Code Composer Studio prior to V2.2
  43. // --------------------------------------
  44. // 1) Use one of the following -l statements to include the 
  45. // header linker command file in the project. The header linker
  46. // file is required to link the peripheral structures to the proper 
  47. // locations within the memory map                                    */
  48. /* Uncomment this line to include file only for non-BIOS applications */
  49. /* -l DSP281x_Headers_nonBIOS.cmd */
  50. /* Uncomment this line to include file only for BIOS applications */
  51. /* -l DSP281x_Headers_BIOS.cmd */
  52. /* 2) In your project add the path to <base>DSP281x_headerscmd to the
  53.    library search path under project->build options, linker tab, 
  54.    library search path (-i).
  55. /*========================================================= */
  56. /* Define the memory block start/length for the F2812  
  57.    PAGE 0 will be used to organize program sections
  58.    PAGE 1 will be used to organize data sections
  59.    Notes: 
  60.          Memory blocks on F2812 are uniform (ie same
  61.          physical memory) in both PAGE 0 and PAGE 1.  
  62.          That is the same memory region should not be
  63.          defined for both PAGE 0 and PAGE 1.
  64.          Doing so will result in corruption of program 
  65.          and/or data. 
  66. */
  67. MEMORY
  68. {
  69. PAGE 0:    /* Program Memory */
  70.            /* Memory (RAM/FLASH/OTP) blocks can be moved to PAGE1 for data allocation */
  71.    ZONE0       : origin = 0x002000, length = 0x002000     /* XINTF zone 0 */
  72.    ZONE1       : origin = 0x004000, length = 0x002000     /* XINTF zone 1 */
  73.    RAML0       : origin = 0x008000, length = 0x001000     /* on-chip RAM block L0 */
  74.    ZONE2       : origin = 0x080000, length = 0x080000     /* XINTF zone 2 */
  75.    ZONE6       : origin = 0x100000, length = 0x080000     /* XINTF zone 6 */
  76.    OTP         : origin = 0x3D7800, length = 0x000800     /* on-chip OTP */
  77.    FLASHJ      : origin = 0x3D8000, length = 0x002000     /* on-chip FLASH */
  78.    FLASHI      : origin = 0x3DA000, length = 0x002000     /* on-chip FLASH */
  79.    FLASHH      : origin = 0x3DC000, length = 0x004000     /* on-chip FLASH */
  80.    FLASHG      : origin = 0x3E0000, length = 0x004000     /* on-chip FLASH */
  81.    FLASHF      : origin = 0x3E4000, length = 0x004000     /* on-chip FLASH */
  82.    FLASHE      : origin = 0x3E8000, length = 0x004000     /* on-chip FLASH */
  83.    FLASHD      : origin = 0x3EC000, length = 0x004000     /* on-chip FLASH */
  84.    FLASHC      : origin = 0x3F0000, length = 0x004000     /* on-chip FLASH */
  85.    FLASHA      : origin = 0x3F6000, length = 0x001F80     /* on-chip FLASH */
  86.    CSM_RSVD    : origin = 0x3F7F80, length = 0x000076     /* Part of FLASHA.  Program with all 0x0000 when CSM is in use. */
  87.    BEGIN       : origin = 0x3F7FF6, length = 0x000002     /* Part of FLASHA.  Used for "boot to Flash" bootloader mode. */
  88.    CSM_PWL     : origin = 0x3F7FF8, length = 0x000008     /* Part of FLASHA.  CSM password locations in FLASHA */
  89.    
  90. /* ZONE7       : origin = 0x3FC000, length = 0x003FC0     /* XINTF zone 7 available if MP/MCn=1 */ 
  91.    ROM         : origin = 0x3FF000, length = 0x000FC0     /* Boot ROM available if MP/MCn=0 */
  92.    RESET       : origin = 0x3FFFC0, length = 0x000002     /* part of boot ROM (MP/MCn=0) or XINTF zone 7 (MP/MCn=1) */
  93.    VECTORS     : origin = 0x3FFFC2, length = 0x00003E     /* part of boot ROM (MP/MCn=0) or XINTF zone 7 (MP/MCn=1) */
  94. PAGE 1 :   /* Data Memory */
  95.            /* Memory (RAM/FLASH/OTP) blocks can be moved to PAGE0 for program allocation */
  96.            /* Registers remain on PAGE1                                                  */
  97.    RAMM0       : origin = 0x000000, length = 0x000400     /* on-chip RAM block M0 */
  98.    RAMM1       : origin = 0x000400, length = 0x000400     /* on-chip RAM block M1 */
  99.    RAML1       : origin = 0x009000, length = 0x001000     /* on-chip RAM block L1 */
  100.    FLASHB      : origin = 0x3F4000, length = 0x002000     /* on-chip FLASH */
  101.    RAMH0       : origin = 0x3F8000, length = 0x002000     /* on-chip RAM block H0 */
  102. }
  103. /* Allocate sections to memory blocks.
  104.    Note:
  105.          codestart user defined section in DSP28_CodeStartBranch.asm used to redirect code 
  106.                    execution when booting to flash
  107.          ramfuncs  user defined section to store functions that will be copied from Flash into RAM
  108. */ 
  109.  
  110. SECTIONS
  111. {
  112.  
  113.    /* Allocate program areas: */
  114.    .cinit              : > FLASHA      PAGE = 0
  115.    .pinit              : > FLASHA,     PAGE = 0
  116.    .text               : > FLASHA      PAGE = 0
  117.    codestart           : > BEGIN       PAGE = 0
  118.    ramfuncs            : LOAD = FLASHD, 
  119.                          RUN = RAML0, 
  120.                          LOAD_START(_RamfuncsLoadStart),
  121.                          LOAD_END(_RamfuncsLoadEnd),
  122.                          RUN_START(_RamfuncsRunStart),
  123.                          PAGE = 0
  124.    csmpasswds          : > CSM_PWL     PAGE = 0
  125.    csm_rsvd            : > CSM_RSVD    PAGE = 0
  126.    
  127.    /* Allocate uninitalized data sections: */
  128.    .stack              : > RAMM0       PAGE = 1
  129.    .ebss               : > RAML1       PAGE = 1
  130.    .esysmem            : > RAMH0       PAGE = 1
  131.    /* Initalized sections go in Flash */
  132.    /* For SDFlash to program these, they must be allocated to page 0 */
  133.    .econst             : > FLASHA      PAGE = 0
  134.    .switch             : > FLASHA      PAGE = 0      
  135.    /* Allocate IQ math areas: */
  136.    IQmath              : > FLASHC      PAGE = 0                  /* Math Code */
  137.    IQmathTables        : > ROM         PAGE = 0, TYPE = NOLOAD   /* Math Tables In ROM */
  138.    /* .reset is a standard section used by the compiler.  It contains the */ 
  139.    /* the address of the start of _c_int00 for C Code.   /*
  140.    /* When using the boot ROM this section and the CPU vector */
  141.    /* table is not needed.  Thus the default type is set here to  */
  142.    /* DSECT  */ 
  143.    .reset              : > RESET,      PAGE = 0, TYPE = DSECT
  144.    vectors             : > VECTORS     PAGE = 0, TYPE = DSECT
  145. }