From: Michal Simek Date: Fri, 30 Jan 2015 14:45:02 +0000 (+0100) Subject: microblaze: Do not use CONFIG_SYS_GENERIC_GLOBAL_DATA X-Git-Tag: KARO-TX6-2015-09-18~3856 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=9ec033757fa9d0c8e521aa0d64db9c451cb921a4;p=karo-tx-uboot.git microblaze: Do not use CONFIG_SYS_GENERIC_GLOBAL_DATA Because it is not compatible with DM where malloc_base has to be available early and init has to be done in ASM. Signed-off-by: Michal Simek --- diff --git a/arch/microblaze/cpu/start.S b/arch/microblaze/cpu/start.S index 4023ec0675..3eeeab4b88 100644 --- a/arch/microblaze/cpu/start.S +++ b/arch/microblaze/cpu/start.S @@ -151,6 +151,7 @@ clear_bss: 3: /* jumping to board_init */ #ifndef CONFIG_SPL_BUILD or r5, r0, r0 /* flags - empty */ + addi r31, r0, _gd brai board_init_f #else addi r31, r0, CONFIG_SYS_SPL_MALLOC_END @@ -158,6 +159,11 @@ clear_bss: #endif 1: bri 1b + .section .bss +.align 4 +_gd: + .space GENERATED_GBL_DATA_SIZE + #ifndef CONFIG_SPL_BUILD /* * Read 16bit little endian diff --git a/arch/microblaze/include/asm/config.h b/arch/microblaze/include/asm/config.h index 468673460b..32fd636b61 100644 --- a/arch/microblaze/include/asm/config.h +++ b/arch/microblaze/include/asm/config.h @@ -13,6 +13,5 @@ #define CONFIG_NR_DRAM_BANKS 1 #define CONFIG_SYS_GENERIC_BOARD -#define CONFIG_SYS_GENERIC_GLOBAL_DATA #endif