F28035_FLASH_HVBLDC_Sensored.CMD 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*==================================================================================*/
  2. /* User specific Linker command file for running from FLASH */
  3. /*==================================================================================*/
  4. /* FILE: F28035_FLASH_HVBLDC_Sensored.CMD */
  5. /* */
  6. /* Description: Linker command file for User custom sections targetted to run */
  7. /* from FLASH. */
  8. /* */
  9. /* Target: TMS320F28035 */
  10. /* */
  11. /* Version: 1.00 */
  12. /* */
  13. /*----------------------------------------------------------------------------------*/
  14. /* Copyright Texas Instruments 锟� 2009 */
  15. /*----------------------------------------------------------------------------------*/
  16. /* Revision History: */
  17. /*----------------------------------------------------------------------------------*/
  18. /* Date | Description */
  19. /*----------------------------------------------------------------------------------*/
  20. /* 4/13/09 | Release 1.0 New release. */
  21. /*----------------------------------------------------------------------------------*/
  22. /* Define the memory block start/length for the F28035
  23. PAGE 0 will be used to organize program sections
  24. PAGE 1 will be used to organize data sections
  25. Notes:
  26. Memory blocks on F2803x are uniform (ie same
  27. physical memory) in both PAGE 0 and PAGE 1.
  28. That is the same memory region should not be
  29. defined for both PAGE 0 and PAGE 1.
  30. Doing so will result in corruption of program
  31. and/or data.
  32. L0 memory block is mirrored - that is
  33. it can be accessed in high memory or low memory.
  34. For simplicity only one instance is used in this
  35. linker file.
  36. Contiguous SARAM memory blocks or flash sectors can be
  37. be combined if required to create a larger memory block.
  38. */
  39. MEMORY
  40. {
  41. /* Note that the memory allocation below does not create sections as necessary for
  42. the CLA on the F2803x.
  43. */
  44. PAGE 0:
  45. progRAM : origin = 0x008000, length = 0x001000 /* on-chip RAM (L0-L2)*/
  46. OTP : origin = 0x3D7800, length = 0x000400 /* on-chip OTP */
  47. FLASHD : origin = 0x3E8000, length = 0x004000 /* on-chip FLASH */
  48. FLASHC : origin = 0x3EC000, length = 0x004000 /* on-chip FLASH */
  49. FLASHA : origin = 0x3F4000, length = 0x003F80 /* on-chip FLASH */
  50. CSM_RSVD : origin = 0x3F7F80, length = 0x000076 /* Part of FLASHA. Program with all 0x0000 when CSM is in use. */
  51. BEGIN : origin = 0x3F7FF6, length = 0x000002 /* Part of FLASHA. Used for "boot to Flash" bootloader mode. */
  52. CSM_PWL : origin = 0x3F7FF8, length = 0x000008 /* Part of FLASHA. CSM password locations in FLASHA */
  53. IQTABLES : origin = 0x3FE000, length = 0x000B50 /* IQ Math Tables in Boot ROM */
  54. IQTABLES2 : origin = 0x3FEB50, length = 0x00008C /* IQ Math Tables in Boot ROM */
  55. IQTABLES3 : origin = 0x3FEBDC, length = 0x0000AA /* IQ Math Tables in Boot ROM */
  56. BOOTROM : origin = 0x3FF27C, length = 0x000D44 /* Boot ROM */
  57. RESET : origin = 0x3FFFC0, length = 0x000002 /* part of boot ROM */
  58. VECTORS : origin = 0x3FFFC2, length = 0x00003E /* part of boot ROM */
  59. PAGE 1 :
  60. BOOT_RSVD : origin = 0x000000, length = 0x000050 /* Part of M0, BOOT rom will use this for stack */
  61. RAMM0 : origin = 0x000050, length = 0x0003B0 /* on-chip RAM block M0 */
  62. RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
  63. dataRAM : origin = 0x009000, length = 0x001000 /* data RAM (L3) */
  64. FLASHB : origin = 0x3F0000, length = 0x004000 /* on-chip FLASH */
  65. CLA_CPU_MSGRAM : origin = 0x001480, length = 0x000080 /* CLA-R/W, CPU-R message RAM */
  66. CPU_CLA_MSGRAM : origin = 0x001500, length = 0x000080 /* CPU-R/W, CLA-R message RAM */
  67. }
  68. SECTIONS
  69. {
  70. /* Allocate program areas: */
  71. .cinit : > FLASHD, PAGE = 0
  72. .pinit : > FLASHD, PAGE = 0
  73. .text : > FLASHD, PAGE = 0
  74. codestart : > BEGIN PAGE = 0
  75. ramfuncs : LOAD = FLASHC,
  76. RUN = progRAM,
  77. LOAD_START(_RamfuncsLoadStart),
  78. LOAD_END(_RamfuncsLoadEnd),
  79. RUN_START(_RamfuncsRunStart),
  80. PAGE = 0
  81. csmpasswds : > CSM_PWL PAGE = 0
  82. csm_rsvd : > CSM_RSVD PAGE = 0
  83. /* Allocate uninitalized data sections: */
  84. .stack : > RAMM0, PAGE = 1
  85. .ebss : > dataRAM, PAGE = 1
  86. .esysmem : > dataRAM, PAGE = 1
  87. /* Initalized sections go in Flash */
  88. /* For SDFlash to program these, they must be allocated to page 0 */
  89. .econst : > FLASHD PAGE = 0
  90. .switch : > FLASHD PAGE = 0
  91. /* Allocate IQ math areas: */
  92. IQmath : > FLASHD PAGE = 0 /* Math Code */
  93. IQmathTables : > IQTABLES PAGE = 0, TYPE = NOLOAD /* Math Tables In ROM */
  94. Cla1ToCpuMsgRAM : > CLA_CPU_MSGRAM PAGE = 1
  95. CpuToCla1MsgRAM : > CPU_CLA_MSGRAM PAGE = 1
  96. .reset : > RESET, PAGE = 0, TYPE = DSECT
  97. vectors : > VECTORS PAGE = 0, TYPE = DSECT
  98. MemoryFile : > RAMM1 PAGE = 1
  99. /* Uncomment the section below if calling the IQNexp() or IQexp()
  100. functions from the IQMath.lib library in order to utilize the
  101. relevant IQ Math table in Boot ROM (This saves space and Boot ROM
  102. is 1 wait-state). If this section is not uncommented, IQmathTables2
  103. will be loaded into other memory (SARAM, Flash, etc.) and will take
  104. up space, but 0 wait-state is possible.
  105. */
  106. /*
  107. IQmathTables2 : > IQTABLES2, PAGE = 0, TYPE = NOLOAD
  108. {
  109. IQmath.lib<IQNexpTable.obj> (IQmathTablesRam)
  110. }
  111. */
  112. /* Uncomment the section below if calling the IQNasin() or IQasin()
  113. functions from the IQMath.lib library in order to utilize the
  114. relevant IQ Math table in Boot ROM (This saves space and Boot ROM
  115. is 1 wait-state). If this section is not uncommented, IQmathTables2
  116. will be loaded into other memory (SARAM, Flash, etc.) and will take
  117. up space, but 0 wait-state is possible.
  118. */
  119. /*
  120. IQmathTables3 : > IQTABLES3, PAGE = 0, TYPE = NOLOAD
  121. {
  122. IQmath.lib<IQNasinTable.obj> (IQmathTablesRam)
  123. }
  124. */
  125. }
  126. SECTIONS
  127. {
  128. Net_terminals: > dataRAM,PAGE = 1
  129. DLOG:> dataRAM,PAGE=1
  130. }