2015-11-22 20:23:41 +08:00
|
|
|
/*
|
2015-12-01 04:29:39 +08:00
|
|
|
* Copyright (c) 2014-2015 Wind River Systems, Inc.
|
2015-11-22 20:23:41 +08:00
|
|
|
*
|
2017-01-19 09:01:01 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2015-11-22 20:23:41 +08:00
|
|
|
*/
|
|
|
|
|
2015-12-01 04:29:39 +08:00
|
|
|
/**
|
|
|
|
* @brief Linker script for the Quark SE platform, both standard images and XIP
|
|
|
|
* images.
|
|
|
|
*/
|
2015-11-22 20:23:41 +08:00
|
|
|
|
|
|
|
/* Flash base address and size */
|
2016-04-24 09:37:48 +08:00
|
|
|
#define FLASH_START CONFIG_FLASH_BASE_ADDRESS /* Flash bank 1 */
|
|
|
|
#define FLASH_SIZE CONFIG_FLASH_SIZE
|
2015-11-22 20:23:41 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* SRAM base address and size
|
|
|
|
*
|
|
|
|
* Internal SRAM includes the exception vector table at reset, which is at
|
|
|
|
* the beginning of the region.
|
|
|
|
*/
|
2016-04-24 09:37:48 +08:00
|
|
|
#define SRAM_START CONFIG_SRAM_BASE_ADDRESS
|
|
|
|
#define SRAM_SIZE CONFIG_SRAM_SIZE
|
2015-11-22 20:23:41 +08:00
|
|
|
|
|
|
|
/* Data Closely Coupled Memory (DCCM) base address and size */
|
2016-04-24 09:37:48 +08:00
|
|
|
#define DCCM_START CONFIG_DCCM_BASE_ADDRESS
|
|
|
|
#define DCCM_SIZE CONFIG_DCCM_SIZE
|
2015-11-22 20:23:41 +08:00
|
|
|
|
2017-09-22 02:45:14 +08:00
|
|
|
#include <generated_dts_board.h>
|
2016-05-05 04:13:56 +08:00
|
|
|
#include <arch/arc/v2/linker.ld>
|