Skip to content
Snippets Groups Projects
Select Git revision
  • 8b5ab2e812b773bfee88ccf57d0437a43c74393b
  • main default protected
  • feat_dma230_dataio
  • feat_qspi_rom
  • feat_extio
  • feat_dmax4
  • feat_dma350
  • feat_nanosoc_regions
  • feat_accel_decouple
  • dev
  • feat_accel_hash_stream
  • nanosoc-2023
12 results

cmsdk_bootloader.ld

Blame
  • cmsdk_bootloader.ld 1.36 KiB
    /*
     *-----------------------------------------------------------------------------
     * The confidential and proprietary information contained in this file may
     * only be used by a person authorised under and to the extent permitted
     * by a subsisting licensing agreement from Arm Limited or its affiliates.
     *
     *            (C) COPYRIGHT 2010-2013 Arm Limited or its affiliates.
     *                ALL RIGHTS RESERVED
     *
     * This entire notice must be reproduced on all copies of this file
     * and copies of this file may only be made by a person if such person is
     * permitted to do so under the terms of a subsisting license agreement
     * from Arm Limited or its affiliates.
     *
     *      SVN Information
     *
     *      Checked In          : $Date: $
     *
     *      Revision            : $Revision: $
     *
     *      Release Information : Cortex-M System Design Kit-r1p1-00rel0
     *-----------------------------------------------------------------------------
     */
    /* Linker script to configure memory regions.
     * Need modifying for a specific board.
     *   FLASH.ORIGIN: starting address of boot loader
     *   FLASH.LENGTH: length of flash
     *   RAM.ORIGIN: starting address of RAM bank 0
     *   RAM.LENGTH: length of RAM bank 0
     */
    
    INCLUDE "lib-nosys.ld"
    
    MEMORY
    {
      FLASH (rx) : ORIGIN = 0x10000000, LENGTH =  0x1000 /*  4K */
      RAM (rwx)  : ORIGIN = 0x30000000, LENGTH = 0x3C00 /* 15K */
    }
    
    INCLUDE "sections.ld"