treewide: rework linker symbol declarations in sections header

1. Convert all linker symbols to char[] type so that we can get the
   corresponding address by calling array name 'var' or its address
   '&var'. In this way, we can avoid some potential issues[1].
2. Remove unused symbol '_TEXT_BASE'. It has been abandoned and has
   not been referenced by any source code.
3. Move '__data_end' to the arch x86's own sections header as it's
   only used by x86 arch.
4. Remove some duplicate declared linker symbols. Now we use the
   standard header file to declare them.

[1] This patch fixes the boot failure on MIPS target. Error log:
SPL: Image overlaps SPL

Fixes: 1b8a1be1a1 ("spl: spl_legacy: Fix spl_end address")
Signed-off-by: Shiji Yang <yangshiji66@outlook.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Shiji Yang
2023-08-03 09:47:16 +08:00
committed by Tom Rini
parent a077ac13d0
commit 506df9dc58
58 changed files with 64 additions and 45 deletions

View File

@@ -8,7 +8,8 @@
#include <asm-generic/sections.h> #include <asm-generic/sections.h>
extern ulong __ivt_start; extern char __ivt_start[];
extern ulong __ivt_end; extern char __ivt_end[];
extern char __text_end[];
#endif /* __ASM_ARC_SECTIONS_H */ #endif /* __ASM_ARC_SECTIONS_H */

View File

@@ -6,14 +6,9 @@
#include <common.h> #include <common.h>
#include <elf.h> #include <elf.h>
#include <log.h> #include <log.h>
#include <asm-generic/sections.h> #include <asm/sections.h>
#include <asm/global_data.h> #include <asm/global_data.h>
extern ulong __image_copy_start;
extern ulong __ivt_start;
extern ulong __ivt_end;
extern ulong __text_end;
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;
int copy_uboot_to_ram(void) int copy_uboot_to_ram(void)

View File

@@ -34,9 +34,6 @@ enum {
}; };
#endif #endif
/* Linker symbols. */
extern char __bss_start[], __bss_end[];
#ifndef CONFIG_DM #ifndef CONFIG_DM
extern gd_t gdata; extern gd_t gdata;
#endif #endif

View File

@@ -6,11 +6,6 @@
#ifndef __ASM_MICROBLAZE_PROCESSOR_H #ifndef __ASM_MICROBLAZE_PROCESSOR_H
#define __ASM_MICROBLAZE_PROCESSOR_H #define __ASM_MICROBLAZE_PROCESSOR_H
/* References to section boundaries */
extern char _end[];
extern char __text_start[];
/* Microblaze board initialization function */ /* Microblaze board initialization function */
void board_init(void); void board_init(void);

View File

@@ -8,4 +8,6 @@
#include <asm-generic/sections.h> #include <asm-generic/sections.h>
extern char __data_end[];
#endif #endif

View File

@@ -14,6 +14,7 @@
#include <firmware/imx/sci/sci.h> #include <firmware/imx/sci/sci.h>
#include <asm/arch/imx8-pins.h> #include <asm/arch/imx8-pins.h>
#include <asm/arch/iomux.h> #include <asm/arch/iomux.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View File

@@ -17,6 +17,7 @@
#include <firmware/imx/sci/sci.h> #include <firmware/imx/sci/sci.h>
#include <asm/arch/imx8-pins.h> #include <asm/arch/imx8-pins.h>
#include <asm/arch/iomux.h> #include <asm/arch/iomux.h>
#include <asm/sections.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View File

@@ -27,6 +27,7 @@
#include <asm/arch/crm_regs.h> #include <asm/arch/crm_regs.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/sections.h>
#include <bmp_logo.h> #include <bmp_logo.h>
#include <dm/root.h> #include <dm/root.h>
#include <env.h> #include <env.h>
@@ -216,7 +217,6 @@ static void set_gpr_register(void)
&iomuxc_regs->gpr[12]); &iomuxc_regs->gpr[12]);
} }
extern char __bss_start[], __bss_end[];
int board_early_init_f(void) int board_early_init_f(void)
{ {
select_ldb_di_clock_source(MXC_PLL5_CLK); select_ldb_di_clock_source(MXC_PLL5_CLK);

View File

@@ -14,6 +14,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>

View File

@@ -20,6 +20,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <mmc.h> #include <mmc.h>
#include <linux/delay.h> #include <linux/delay.h>

View File

@@ -27,6 +27,7 @@
#include <asm/arch/mx6-pins.h> #include <asm/arch/mx6-pins.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/sections.h>
#include <usb.h> #include <usb.h>
#include <usb/ehci-ci.h> #include <usb/ehci-ci.h>
#include <fuse.h> #include <fuse.h>

View File

@@ -13,6 +13,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/sections.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/uclass.h> #include <dm/uclass.h>

View File

@@ -19,6 +19,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>

View File

@@ -16,6 +16,7 @@
#include <asm/arch-mx7/mx7-pins.h> #include <asm/arch-mx7/mx7-pins.h>
#include <asm/arch-mx7/clock.h> #include <asm/arch-mx7/clock.h>
#include <asm/arch-mx7/mx7-ddr.h> #include <asm/arch-mx7/mx7-ddr.h>
#include <asm/sections.h>
#include "common.h" #include "common.h"
#ifdef CONFIG_FSL_ESDHC_IMX #ifdef CONFIG_FSL_ESDHC_IMX

View File

@@ -21,6 +21,7 @@
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>

View File

@@ -10,6 +10,7 @@
#include <init.h> #include <init.h>
#include <log.h> #include <log.h>
#include <spl.h> #include <spl.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/uclass-internal.h> #include <dm/uclass-internal.h>

View File

@@ -21,6 +21,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/sections.h>
#include <asm/system.h> #include <asm/system.h>
#include <errno.h> #include <errno.h>
#include <fuse.h> #include <fuse.h>

View File

@@ -15,6 +15,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>

View File

@@ -16,6 +16,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm/sections.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View File

@@ -19,6 +19,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>

View File

@@ -20,6 +20,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>

View File

@@ -20,6 +20,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <fsl_sec.h> #include <fsl_sec.h>
#include <mmc.h> #include <mmc.h>

View File

@@ -17,6 +17,7 @@
#include <dm/device-internal.h> #include <dm/device-internal.h>
#include <dm/lists.h> #include <dm/lists.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/sections.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View File

@@ -22,6 +22,7 @@
#include <asm/arch/imx8-pins.h> #include <asm/arch/imx8-pins.h>
#include <asm/arch/iomux.h> #include <asm/arch/iomux.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/sections.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View File

@@ -20,6 +20,7 @@
#include <asm/arch/rdc.h> #include <asm/arch/rdc.h>
#include <asm/arch/upower.h> #include <asm/arch/upower.h>
#include <asm/mach-imx/ele_api.h> #include <asm/mach-imx/ele_api.h>
#include <asm/sections.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View File

@@ -20,6 +20,7 @@
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/arch-mx7ulp/gpio.h> #include <asm/arch-mx7ulp/gpio.h>
#include <asm/mach-imx/syscounter.h> #include <asm/mach-imx/syscounter.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/uclass-internal.h> #include <dm/uclass-internal.h>

View File

@@ -18,6 +18,7 @@
#include <asm/arch/ls102xa_devdis.h> #include <asm/arch/ls102xa_devdis.h>
#include <asm/arch/ls102xa_soc.h> #include <asm/arch/ls102xa_soc.h>
#include <asm/sections.h>
#include <fsl_csu.h> #include <fsl_csu.h>
#include <fsl_immap.h> #include <fsl_immap.h>
#include <netdev.h> #include <netdev.h>

View File

@@ -16,6 +16,7 @@
#include <asm/arch/fsl_serdes.h> #include <asm/arch/fsl_serdes.h>
#include <asm/arch/ls102xa_soc.h> #include <asm/arch/ls102xa_soc.h>
#include <asm/arch/ls102xa_devdis.h> #include <asm/arch/ls102xa_devdis.h>
#include <asm/sections.h>
#include <hwconfig.h> #include <hwconfig.h>
#include <mmc.h> #include <mmc.h>
#include <fsl_csu.h> #include <fsl_csu.h>

View File

@@ -12,6 +12,7 @@
#include <asm/arch/ls102xa_soc.h> #include <asm/arch/ls102xa_soc.h>
#include <asm/arch/fsl_serdes.h> #include <asm/arch/fsl_serdes.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/sections.h>
#include <linux/delay.h> #include <linux/delay.h>
#include "../common/sleep.h" #include "../common/sleep.h"
#include <fsl_validate.h> #include <fsl_validate.h>

View File

@@ -18,6 +18,7 @@
#include <asm/arch/fsl_serdes.h> #include <asm/arch/fsl_serdes.h>
#include <asm/arch/ls102xa_devdis.h> #include <asm/arch/ls102xa_devdis.h>
#include <asm/arch/ls102xa_soc.h> #include <asm/arch/ls102xa_soc.h>
#include <asm/sections.h>
#include <hwconfig.h> #include <hwconfig.h>
#include <mmc.h> #include <mmc.h>
#include <fsl_csu.h> #include <fsl_csu.h>

View File

@@ -15,6 +15,7 @@
#include <asm/arch/imx-regs.h> #include <asm/arch/imx-regs.h>
#include <asm/arch/iomux.h> #include <asm/arch/iomux.h>
#include <asm/arch/mx6-pins.h> #include <asm/arch/mx6-pins.h>
#include <asm/sections.h>
#include <env.h> #include <env.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <asm/gpio.h> #include <asm/gpio.h>

View File

@@ -14,6 +14,7 @@
#include <asm/arch/mx6-pins.h> #include <asm/arch/mx6-pins.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/mach-imx/spi.h> #include <asm/mach-imx/spi.h>
#include <asm/sections.h>
#include <env.h> #include <env.h>
#include <linux/errno.h> #include <linux/errno.h>
#include <asm/gpio.h> #include <asm/gpio.h>

View File

@@ -19,6 +19,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/sections.h>
#include <linux/sizes.h> #include <linux/sizes.h>
#include <common.h> #include <common.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>

View File

@@ -18,6 +18,7 @@
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/sections.h>
#include <common.h> #include <common.h>
#include <env.h> #include <env.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>

View File

@@ -19,6 +19,7 @@
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/arch/ddr.h> #include <asm/arch/ddr.h>
#include <asm-generic/gpio.h> #include <asm-generic/gpio.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/pinctrl.h> #include <dm/pinctrl.h>

View File

@@ -14,6 +14,7 @@
#include <asm/arch/mx6-ddr.h> #include <asm/arch/mx6-ddr.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/sections.h>
#include <asm/io.h> #include <asm/io.h>
#include <errno.h> #include <errno.h>
#include <spl.h> #include <spl.h>

View File

@@ -16,6 +16,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/sections.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <power/pmic.h> #include <power/pmic.h>
#include <power/pfuze100_pmic.h> #include <power/pfuze100_pmic.h>

View File

@@ -11,6 +11,7 @@
#include <asm/gpio.h> #include <asm/gpio.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <init.h> #include <init.h>
#include <linux/delay.h> #include <linux/delay.h>

View File

@@ -12,6 +12,7 @@
#include <asm/gpio.h> #include <asm/gpio.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/uclass-internal.h> #include <dm/uclass-internal.h>

View File

@@ -25,6 +25,7 @@
#include "asm/arch/iomux.h" #include "asm/arch/iomux.h"
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/gpio.h> #include <asm/gpio.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <netdev.h> #include <netdev.h>
#include <bootcount.h> #include <bootcount.h>

View File

@@ -21,6 +21,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <mmc.h> #include <mmc.h>
#include <linux/delay.h> #include <linux/delay.h>

View File

@@ -17,6 +17,7 @@
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/sections.h>
#include <dm.h> #include <dm.h>
DECLARE_GLOBAL_DATA_PTR; DECLARE_GLOBAL_DATA_PTR;

View File

@@ -12,6 +12,7 @@
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/sections.h>
#include <hang.h> #include <hang.h>
#include <init.h> #include <init.h>
#include <log.h> #include <log.h>

View File

@@ -16,6 +16,7 @@
#include <asm/arch-mx7/mx7-ddr.h> #include <asm/arch-mx7/mx7-ddr.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/gpio.h> #include <asm/gpio.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <spl.h> #include <spl.h>

View File

@@ -13,6 +13,7 @@
#include <asm/arch/clock.h> #include <asm/arch/clock.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <spl.h> #include <spl.h>

View File

@@ -10,6 +10,7 @@
#include <spl.h> #include <spl.h>
#include <dm.h> #include <dm.h>
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/sections.h>
#include <dm/uclass.h> #include <dm/uclass.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/uclass-internal.h> #include <dm/uclass-internal.h>

View File

@@ -19,6 +19,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/io.h> #include <asm/io.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/sections.h>
#include <env.h> #include <env.h>
#include <linux/bitops.h> #include <linux/bitops.h>
#include <linux/delay.h> #include <linux/delay.h>

View File

@@ -32,6 +32,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/sata.h> #include <asm/mach-imx/sata.h>
#include <asm/mach-imx/video.h> #include <asm/mach-imx/video.h>
#include <asm/sections.h>
#include <mmc.h> #include <mmc.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <malloc.h> #include <malloc.h>

View File

@@ -14,6 +14,7 @@
#include <asm/gpio.h> #include <asm/gpio.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <linux/libfdt.h> #include <linux/libfdt.h>
#include <spl.h> #include <spl.h>

View File

@@ -16,6 +16,7 @@
#include <asm/arch-mx7/mx7-ddr.h> #include <asm/arch-mx7/mx7-ddr.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/gpio.h> #include <asm/gpio.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#include <spl.h> #include <spl.h>

View File

@@ -16,6 +16,7 @@
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/mxc_i2c.h> #include <asm/mach-imx/mxc_i2c.h>
#include <asm/sections.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <errno.h> #include <errno.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>

View File

@@ -30,6 +30,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/sata.h> #include <asm/mach-imx/sata.h>
#include <asm/mach-imx/video.h> #include <asm/mach-imx/video.h>
#include <asm/sections.h>
#include <dm/device-internal.h> #include <dm/device-internal.h>
#include <dm/platform_data/serial_mxc.h> #include <dm/platform_data/serial_mxc.h>
#include <dwc_ahsata.h> #include <dwc_ahsata.h>

View File

@@ -29,6 +29,7 @@
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/mach-imx/sata.h> #include <asm/mach-imx/sata.h>
#include <asm/mach-imx/video.h> #include <asm/mach-imx/video.h>
#include <asm/sections.h>
#include <cpu.h> #include <cpu.h>
#include <dm/platform_data/serial_mxc.h> #include <dm/platform_data/serial_mxc.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>

View File

@@ -16,6 +16,7 @@
#include <asm/io.h> #include <asm/io.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/sections.h>
#include <cpu_func.h> #include <cpu_func.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/device-internal.h> #include <dm/device-internal.h>

View File

@@ -17,6 +17,7 @@
#include <asm/global_data.h> #include <asm/global_data.h>
#include <asm/gpio.h> #include <asm/gpio.h>
#include <asm/mach-imx/iomux-v3.h> #include <asm/mach-imx/iomux-v3.h>
#include <asm/sections.h>
#include <dm.h> #include <dm.h>
#include <env.h> #include <env.h>
#include <mmc.h> #include <mmc.h>

View File

@@ -12,6 +12,7 @@
#include <asm/arch/mx6-ddr.h> #include <asm/arch/mx6-ddr.h>
#include <asm/arch/mx6-pins.h> #include <asm/arch/mx6-pins.h>
#include <asm/arch/crm_regs.h> #include <asm/arch/crm_regs.h>
#include <asm/sections.h>
#include <fsl_esdhc_imx.h> #include <fsl_esdhc_imx.h>
#define UART_PAD_CTRL (PAD_CTL_PKE | PAD_CTL_PUE | \ #define UART_PAD_CTRL (PAD_CTL_PKE | PAD_CTL_PUE | \

View File

@@ -13,6 +13,7 @@
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/mach-imx/boot_mode.h> #include <asm/mach-imx/boot_mode.h>
#include <asm/mach-imx/gpio.h> #include <asm/mach-imx/gpio.h>
#include <asm/sections.h>
#include <dm/device.h> #include <dm/device.h>
#include <dm/uclass.h> #include <dm/uclass.h>

View File

@@ -61,8 +61,12 @@ static inline int arch_is_kernel_data(unsigned long addr)
/* Start of U-Boot text region */ /* Start of U-Boot text region */
extern char __text_start[]; extern char __text_start[];
/* This marks the end of the text region which must be relocated */ /* This marks the text region which must be relocated */
extern char __image_copy_end[]; extern char __image_copy_start[], __image_copy_end[];
extern char __bss_end[];
extern char __rel_dyn_start[], __rel_dyn_end[];
extern char _image_binary_end[];
/* /*
* This is the U-Boot entry point - prior to relocation it should be same * This is the U-Boot entry point - prior to relocation it should be same
@@ -70,30 +74,4 @@ extern char __image_copy_end[];
*/ */
extern void _start(void); extern void _start(void);
/*
* ARM defines its symbols as char[]. Other arches define them as ulongs.
*/
#ifdef CONFIG_ARM
extern char __bss_start[];
extern char __bss_end[];
extern char __image_copy_start[];
extern char __image_copy_end[];
extern char _image_binary_end[];
extern char __rel_dyn_start[];
extern char __rel_dyn_end[];
#else /* don't use offsets: */
/* Exports from the Linker Script */
extern ulong __data_end;
extern ulong __rel_dyn_start;
extern ulong __rel_dyn_end;
extern ulong __bss_end;
extern ulong _image_binary_end;
extern ulong _TEXT_BASE; /* code start */
#endif
#endif /* _ASM_GENERIC_SECTIONS_H_ */ #endif /* _ASM_GENERIC_SECTIONS_H_ */