odroid: remove CONFIG_DM_I2C_COMPAT config
[platform/kernel/u-boot.git] / arch / powerpc / cpu / mpc5xxx / u-boot.lds
1 /*
2  * (C) Copyright 2003-2010
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 OUTPUT_ARCH(powerpc)
9
10 SECTIONS
11 {
12   /* Read-only sections, merged into text segment: */
13   .text      :
14   {
15     arch/powerpc/cpu/mpc5xxx/start.o    (.text*)
16     arch/powerpc/cpu/mpc5xxx/traps.o    (.text*)
17     *(.text*)
18     . = ALIGN(16);
19     *(SORT_BY_ALIGNMENT(SORT_BY_NAME(.rodata*)))
20   }
21
22   /* Read-write section, merged into data segment: */
23   . = (. + 0x0FFF) & 0xFFFFF000;
24   _erotext = .;
25   PROVIDE (erotext = .);
26   .reloc   :
27   {
28     _GOT2_TABLE_ = .;
29     KEEP(*(.got2))
30     KEEP(*(.got))
31     _FIXUP_TABLE_ = .;
32     KEEP(*(.fixup))
33   }
34   __got2_entries = ((_GLOBAL_OFFSET_TABLE_ - _GOT2_TABLE_) >> 2) - 1;
35   __fixup_entries = (. - _FIXUP_TABLE_) >> 2;
36
37   .data    :
38   {
39     *(.data*)
40     *(.sdata*)
41   }
42   _edata  =  .;
43   PROVIDE (edata = .);
44
45   . = .;
46
47   . = ALIGN(4);
48   .u_boot_list : {
49         KEEP(*(SORT(.u_boot_list*)));
50   }
51
52
53   . = .;
54   __start___ex_table = .;
55   __ex_table : { *(__ex_table) }
56   __stop___ex_table = .;
57
58   . = ALIGN(4096);
59   __init_begin = .;
60   .text.init : { *(.text.init) }
61   .data.init : { *(.data.init) }
62   . = ALIGN(4096);
63   __init_end = .;
64
65   __bss_start = .;
66   .bss (NOLOAD)       :
67   {
68    *(COMMON)
69    *(.bss*)
70    *(.sbss*)
71    . = ALIGN(4);
72   }
73   __bss_end = . ;
74   PROVIDE (end = .);
75 }