Merge branch 'next' of git://git.denx.de/u-boot-avr32
[platform/kernel/u-boot.git] / board / freescale / mpc8540ads / u-boot.lds
1 /*
2  * (C) Copyright 2002,2003, Motorola,Inc.
3  * Xianghua Xiao, X.Xiao@motorola.com.
4  *
5  * Copyright 2008 Freescale Semiconductor, Inc.
6  *
7  * See file CREDITS for list of people who contributed to this
8  * project.
9  *
10  * This program is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU General Public License as
12  * published by the Free Software Foundation; either version 2 of
13  * the License, or (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU General Public License for more details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program; if not, write to the Free Software
22  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23  * MA 02111-1307 USA
24  */
25
26 OUTPUT_ARCH(powerpc)
27 /* Do we need any of these for elf?
28    __DYNAMIC = 0;    */
29 PHDRS
30 {
31   text PT_LOAD;
32   bss PT_LOAD;
33 }
34
35 SECTIONS
36 {
37   /* Read-only sections, merged into text segment: */
38   . = + SIZEOF_HEADERS;
39   .interp : { *(.interp) }
40   .hash          : { *(.hash)           }
41   .dynsym        : { *(.dynsym)         }
42   .dynstr        : { *(.dynstr)         }
43   .rel.text      : { *(.rel.text)               }
44   .rela.text     : { *(.rela.text)      }
45   .rel.data      : { *(.rel.data)               }
46   .rela.data     : { *(.rela.data)      }
47   .rel.rodata    : { *(.rel.rodata)     }
48   .rela.rodata   : { *(.rela.rodata)    }
49   .rel.got       : { *(.rel.got)                }
50   .rela.got      : { *(.rela.got)               }
51   .rel.ctors     : { *(.rel.ctors)      }
52   .rela.ctors    : { *(.rela.ctors)     }
53   .rel.dtors     : { *(.rel.dtors)      }
54   .rela.dtors    : { *(.rela.dtors)     }
55   .rel.bss       : { *(.rel.bss)                }
56   .rela.bss      : { *(.rela.bss)               }
57   .rel.plt       : { *(.rel.plt)                }
58   .rela.plt      : { *(.rela.plt)               }
59   .init          : { *(.init)   }
60   .plt : { *(.plt) }
61   .text      :
62   {
63     *(.text)
64     *(.fixup)
65     *(.got1)
66    } :text
67     _etext = .;
68     PROVIDE (etext = .);
69     .rodata    :
70    {
71     *(.rodata)
72     *(.rodata1)
73     *(.rodata.str1.4)
74     *(.eh_frame)
75   } :text
76   .fini      : { *(.fini)    } =0
77   .ctors     : { *(.ctors)   }
78   .dtors     : { *(.dtors)   }
79
80   /* Read-write section, merged into data segment: */
81   . = (. + 0x00FF) & 0xFFFFFF00;
82   _erotext = .;
83   PROVIDE (erotext = .);
84   .reloc   :
85   {
86     *(.got)
87     _GOT2_TABLE_ = .;
88     *(.got2)
89     _FIXUP_TABLE_ = .;
90     *(.fixup)
91   }
92   __got2_entries = (_FIXUP_TABLE_ - _GOT2_TABLE_) >> 2;
93   __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
94
95   .data    :
96   {
97     *(.data)
98     *(.data1)
99     *(.sdata)
100     *(.sdata2)
101     *(.dynamic)
102     CONSTRUCTORS
103   }
104   _edata  =  .;
105   PROVIDE (edata = .);
106
107   . = .;
108   __u_boot_cmd_start = .;
109   .u_boot_cmd : { *(.u_boot_cmd) }
110   __u_boot_cmd_end = .;
111
112   . = .;
113   __start___ex_table = .;
114   __ex_table : { *(__ex_table) }
115   __stop___ex_table = .;
116
117   . = ALIGN(256);
118   __init_begin = .;
119   .text.init : { *(.text.init) }
120   .data.init : { *(.data.init) }
121   . = ALIGN(256);
122   __init_end = .;
123
124   .bootpg ADDR(.text) + 0x7f000 :
125   {
126     cpu/mpc85xx/start.o (.bootpg)
127   } :text = 0xffff
128
129   .resetvec ADDR(.text) + 0x7fffc :
130   {
131     *(.resetvec)
132   } :text = 0xffff
133
134   . = ADDR(.text) + 0x80000;
135
136   __bss_start = .;
137   .bss (NOLOAD)       :
138   {
139    *(.sbss) *(.scommon)
140    *(.dynbss)
141    *(.bss)
142    *(COMMON)
143   } :bss
144
145   . = ALIGN(4);
146   _end = . ;
147   PROVIDE (end = .);
148 }