2 * U-boot - u-boot.lds.S
4 * Copyright (c) 2005-2008 Analog Device Inc.
6 * (C) Copyright 2000-2004
7 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <asm/blackfin.h>
34 /* If we don't actually load anything into L1 data, this will avoid
35 * a syntax error. If we do actually load something into L1 data,
36 * we'll get a linker memory load error (which is what we'd want).
37 * This is here in the first place so we can quickly test building
38 * for different CPU's which may lack non-cache L1 data.
40 #ifndef L1_DATA_B_SRAM
41 # define L1_DATA_B_SRAM CONFIG_SYS_MONITOR_BASE
42 # define L1_DATA_B_SRAM_SIZE 0
49 ram : ORIGIN = CONFIG_SYS_MONITOR_BASE, LENGTH = CONFIG_SYS_MONITOR_LEN
50 l1_code : ORIGIN = L1_INST_SRAM, LENGTH = L1_INST_SRAM_SIZE
51 l1_data : ORIGIN = L1_DATA_B_SRAM, LENGTH = L1_DATA_B_SRAM_SIZE
59 cpu/blackfin/start.o (.text .text.*)
61 #ifdef ENV_IS_EMBEDDED
62 /* WARNING - the following is hand-optimized to fit within
63 * the sector before the environment sector. If it throws
64 * an error during compilation remove an object here to get
65 * it linked after the configuration sector.
68 cpu/blackfin/traps.o (.text .text.*)
69 cpu/blackfin/interrupt.o (.text .text.*)
70 cpu/blackfin/serial.o (.text .text.*)
71 common/dlmalloc.o (.text .text.*)
72 lib_generic/crc32.o (.text .text.*)
74 . = DEFINED(env_offset) ? env_offset : .;
75 common/env_embedded.o (.text .text.*)
79 cpu/blackfin/initcode.o (.text .text.*)
107 ___u_boot_cmd_start = .;
109 ___u_boot_cmd_end = .;
120 __stext_l1_lma = LOADADDR(.text_l1);
131 __sdata_l1_lma = LOADADDR(.data_l1);