| * Copyright (c) 2018 Synopsys, Inc. All rights reserved. |
| * SPDX-License-Identifier: Apache-2.0 |
| * @brief Linker script for the Synopsys EM Starterkit platform. |
| #include <generated_dts_board.h> |
| * DRAM base address and size |
| * DRAM includes the exception vector table at reset, which is at |
| * the beginning of the region. |
| #if defined(CONFIG_SRAM_BASE_ADDRESS) && (CONFIG_SRAM_SIZE > 0) |
| #define SRAM_START CONFIG_SRAM_BASE_ADDRESS |
| #define SRAM_SIZE CONFIG_SRAM_SIZE |
| /* TODO: Using SRAM config for now, even though this is really DRAM. */ |
| /* Instruction Closely Coupled Memory (ICCM) base address and size */ |
| #if defined(CONFIG_ICCM_BASE_ADDRESS) && (CONFIG_ICCM_SIZE > 0) |
| #define ICCM_START CONFIG_ICCM_BASE_ADDRESS |
| #define ICCM_SIZE CONFIG_ICCM_SIZE |
| * DCCM base address and size. DCCM is the data memory. |
| /* Data Closely Coupled Memory (DCCM) base address and size */ |
| #if defined(CONFIG_DCCM_BASE_ADDRESS) && (CONFIG_DCCM_SIZE > 0) |
| #define DCCM_START CONFIG_DCCM_BASE_ADDRESS |
| #define DCCM_SIZE CONFIG_DCCM_SIZE |
| #include <arch/arc/v2/linker.ld> |