/* * Copyright (c) 2013, Texas Instruments Incorporated * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * * Neither the name of Texas Instruments Incorporated nor the names of * its contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * ======== TMDXDOCKH52C1.cmd ======== * Define the memory block start/length for the F28M35H52C1 M3 */ MEMORY { BOOTROM (RX) : origin = 0x00000000, length = 0x10000 CSM_ECSL_Z1 : origin = 0x00200000, length = 0x00000024 // Reserved to avoid permanent board lock CSM_RSVD_Z1 : origin = 0x00200024, length = 0x0000000C // Reserved to avoid permanent board lock RSVD_BOOTLOADER (R) : origin = 0x00200030, length = 0x0001FFD0 // Reserved for bootloader (part of sector N and sector M) FLASH_BOOT (RWX) : origin = 0x00220000, length = 0x00000004 FLASH_FIRMWARE (RWX) : origin = 0x00220004, length = 0x0005FEFC // Starts at sector xxx CSM_RSVD_Z2 : origin = 0x0027FF00, length = 0x000000DC // Reserved to avoid permanent board lock CSM_ECSL_Z2 : origin = 0x0027FFDC, length = 0x00000024 // Reserved to avoid permanent board lock C03SRAM (RWX) : origin = 0x20000000, length = 0x00008000 S05SHRAM (RWX) : origin = 0x20008000, length = 0xC000 S6SHRAM (RWX) : origin = 0x20014000, length = 0x2000 S7SHRAM (RWX) : origin = 0x20016000, length = 0x2000 CTOMMSGRAM (R) : origin = 0x2007F000, length = 0x800 MTOCMSGRAM (RW) : origin = 0x2007F800, length = 0x800 MAC_OTP (R) : origin = 0x680810, length = 0x8 } SECTIONS { /* Allocate program areas: */ .resetVecs: load > FLASH_FIRMWARE .text : > FLASH_FIRMWARE .binit : > FLASH_FIRMWARE .cinit : > FLASH_FIRMWARE .pinit : > FLASH_FIRMWARE /* Initialized sections go in Flash */ .const : > FLASH_FIRMWARE /* Allocate uninitalized data sections: */ .data : > S05SHRAM .bss : >> C03SRAM | S05SHRAM .dma : > S05SHRAM .sysmem : > C03SRAM .stack : > S05SHRAM .cio : > C03SRAM .neardata : > C03SRAM .rodata : > C03SRAM .args : > C03SRAM .MtoCshared : > S6SHRAM .CtoMshared : > S7SHRAM .MACOTP : > MAC_OTP //.ti_catalog_arm_cortexm3_concertoInit_begin: load > FLASH_FIRMWARE_BOOT // Not able to overwrite FLASH_BOOT... .ti_catalog_arm_cortexm3_concertoInit_flashfuncs : LOAD = FLASH_FIRMWARE, RUN = C03SRAM, table(BINIT) } __STACK_TOP = __stack + 1024;