All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL
@ 2019-01-22 22:09 Tom Rini
  2019-01-22 22:09 ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Tom Rini @ 2019-01-22 22:09 UTC (permalink / raw)
  To: u-boot

Rather than checking for CONFIG_TPL_BUILD and then re-defining
CONFIG_SPL_TEXT_BASE make use of CONFIG_TPL_TEXT_BASE directly.

Cc: York Sun <york.sun@nxp.com>
Cc: Po Liu <po.liu@nxp.com>
Cc: Qiang Zhao <qiang.zhao@nxp.com>
Cc: Timur Tabi <timur@tabi.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 arch/powerpc/cpu/mpc85xx/u-boot-spl.lds | 4 ++++
 include/configs/C29XPCIE.h              | 6 ++++--
 include/configs/P1010RDB.h              | 6 ++++--
 include/configs/P1022DS.h               | 6 ++++--
 include/configs/p1_p2_rdb_pc.h          | 6 ++++--
 scripts/Makefile.spl                    | 7 +------
 6 files changed, 21 insertions(+), 14 deletions(-)

diff --git a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
index 6dc8d9913b23..bd0eeb104260 100644
--- a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
+++ b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
@@ -18,7 +18,11 @@ PHDRS
 #endif
 SECTIONS
 {
+#ifdef CONFIG_TPL_BUILD
+	. = CONFIG_TPL_TEXT_BASE;
+#else
 	. = CONFIG_SPL_TEXT_BASE;
+#endif
 	.text : {
 		*(.text*)
 	}
diff --git a/include/configs/C29XPCIE.h b/include/configs/C29XPCIE.h
index caeb34cf0ab8..ebf44b5529c3 100644
--- a/include/configs/C29XPCIE.h
+++ b/include/configs/C29XPCIE.h
@@ -23,7 +23,7 @@
 #define CONFIG_TPL_DRIVERS_MISC_SUPPORT
 #define CONFIG_SPL_COMMON_INIT_DDR
 #define CONFIG_SPL_MAX_SIZE		(128 << 10)
-#define CONFIG_SPL_TEXT_BASE		0xf8f81000
+#define CONFIG_TPL_TEXT_BASE		0xf8f81000
 #define CONFIG_SYS_MPC85XX_NO_RESETVEC
 #define CONFIG_SYS_NAND_U_BOOT_SIZE	(832 << 10)
 #define CONFIG_SYS_NAND_U_BOOT_DST	(0x11000000)
@@ -50,7 +50,9 @@
 #define CONFIG_RESET_VECTOR_ADDRESS	0xeffffffc
 #endif
 
-#ifdef CONFIG_SPL_BUILD
+#ifdef CONFIG_TPL_BUILD
+#define CONFIG_SYS_MONITOR_BASE	CONFIG_TPL_TEXT_BASE
+#elif defined(CONFIG_SPL_BUILD)
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SPL_TEXT_BASE
 #else
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_TEXT_BASE	/* start of monitor */
diff --git a/include/configs/P1010RDB.h b/include/configs/P1010RDB.h
index 18f70f04af5f..134ffe52714f 100644
--- a/include/configs/P1010RDB.h
+++ b/include/configs/P1010RDB.h
@@ -78,7 +78,7 @@
 #define CONFIG_SPL_NAND_INIT
 #define CONFIG_SPL_COMMON_INIT_DDR
 #define CONFIG_SPL_MAX_SIZE		(128 << 10)
-#define CONFIG_SPL_TEXT_BASE		0xD0001000
+#define CONFIG_TPL_TEXT_BASE		0xD0001000
 #define CONFIG_SYS_MPC85XX_NO_RESETVEC
 #define CONFIG_SYS_NAND_U_BOOT_SIZE	(576 << 10)
 #define CONFIG_SYS_NAND_U_BOOT_DST	(0x11000000)
@@ -111,7 +111,9 @@
 #define CONFIG_RESET_VECTOR_ADDRESS	0xeffffffc
 #endif
 
-#ifdef CONFIG_SPL_BUILD
+#ifdef CONFIG_TPL_BUILD
+#define CONFIG_SYS_MONITOR_BASE	CONFIG_TPL_TEXT_BASE
+#elif defined(CONFIG_SPL_BUILD)
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SPL_TEXT_BASE
 #else
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_TEXT_BASE	/* start of monitor */
diff --git a/include/configs/P1022DS.h b/include/configs/P1022DS.h
index eeb19a9fa68a..3ccfeca890bc 100644
--- a/include/configs/P1022DS.h
+++ b/include/configs/P1022DS.h
@@ -58,7 +58,7 @@
 #define CONFIG_SPL_NAND_INIT
 #define CONFIG_SPL_COMMON_INIT_DDR
 #define CONFIG_SPL_MAX_SIZE		(128 << 10)
-#define CONFIG_SPL_TEXT_BASE		0xf8f81000
+#define CONFIG_TPL_TEXT_BASE		0xf8f81000
 #define CONFIG_SYS_MPC85XX_NO_RESETVEC
 #define CONFIG_SYS_NAND_U_BOOT_SIZE	(832 << 10)
 #define CONFIG_SYS_NAND_U_BOOT_DST	(0x11000000)
@@ -213,7 +213,9 @@
 #define CONFIG_SYS_MAX_FLASH_SECT	1024
 
 #ifndef CONFIG_SYS_MONITOR_BASE
-#ifdef CONFIG_SPL_BUILD
+#ifdef CONFIG_TPL_BUILD
+#define CONFIG_SYS_MONITOR_BASE		CONFIG_TPL_TEXT_BASE
+#elif defined(CONFIG_SPL_BUILD)
 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SPL_TEXT_BASE
 #else
 #define CONFIG_SYS_MONITOR_BASE		CONFIG_SYS_TEXT_BASE	/* start of monitor */
diff --git a/include/configs/p1_p2_rdb_pc.h b/include/configs/p1_p2_rdb_pc.h
index 459ecf328f20..0e1f9836a648 100644
--- a/include/configs/p1_p2_rdb_pc.h
+++ b/include/configs/p1_p2_rdb_pc.h
@@ -178,7 +178,7 @@
 #define CONFIG_SPL_NAND_INIT
 #define CONFIG_SPL_COMMON_INIT_DDR
 #define CONFIG_SPL_MAX_SIZE		(128 << 10)
-#define CONFIG_SPL_TEXT_BASE		0xf8f81000
+#define CONFIG_TPL_TEXT_BASE		0xf8f81000
 #define CONFIG_SYS_MPC85XX_NO_RESETVEC
 #define CONFIG_SYS_NAND_U_BOOT_SIZE	(832 << 10)
 #define CONFIG_SYS_NAND_U_BOOT_DST	(0x11000000)
@@ -207,7 +207,9 @@
 #endif
 
 #ifndef CONFIG_SYS_MONITOR_BASE
-#ifdef CONFIG_SPL_BUILD
+#ifdef CONFIG_TPL_BUILD
+#define CONFIG_SYS_MONITOR_BASE	CONFIG_TPL_TEXT_BASE
+#elif defined(CONFIG_SPL_BUILD)
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SPL_TEXT_BASE
 #else
 #define CONFIG_SYS_MONITOR_BASE	CONFIG_SYS_TEXT_BASE	/* start of monitor */
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
index 29626e002555..ca671eb7f5cc 100644
--- a/scripts/Makefile.spl
+++ b/scripts/Makefile.spl
@@ -318,14 +318,9 @@ LDFLAGS_$(SPL_BIN) += -T u-boot-spl.lds $(LDFLAGS_FINAL)
 # Avoid 'Not enough room for program headers' error on binutils 2.28 onwards.
 LDFLAGS_$(SPL_BIN) += $(call ld-option, --no-dynamic-linker)
 
-# First try the best-match (i.e. SPL_TEXT_BASE for SPL, TPL_TEXT_BASE for TPL)
+# Pick the best-match (i.e. SPL_TEXT_BASE for SPL, TPL_TEXT_BASE for TPL)
 ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),)
 LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_$(SPL_TPL_)TEXT_BASE)
-else
-# And then fall back to just testing for SPL_TEXT_BASE, even if in TPL mode
-ifneq ($(CONFIG_SPL_TEXT_BASE),)
-LDFLAGS_$(SPL_BIN) += -Ttext $(CONFIG_SPL_TEXT_BASE)
-endif
 endif
 
 ifdef CONFIG_TARGET_SOCFPGA_ARRIA10
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288
  2019-01-22 22:09 [U-Boot] [PATCH 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL Tom Rini
@ 2019-01-22 22:09 ` Tom Rini
  2019-01-24  2:48   ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288【请注意,邮件由tom.rini@gmail.com代发】 Kever Yang
  2019-01-28 15:18   ` [U-Boot] [U-Boot,2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
  2019-01-22 22:09 ` [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic Tom Rini
  2019-01-28 15:18 ` [U-Boot] [U-Boot, 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL Tom Rini
  2 siblings, 2 replies; 11+ messages in thread
From: Tom Rini @ 2019-01-22 22:09 UTC (permalink / raw)
  To: u-boot

Per Kever Yang, 32768 is a reasonable max size for TPL on RK3288.

Cc: Kever Yang <kever.yang@rock-chips.com>
Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 arch/arm/mach-rockchip/Kconfig | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig
index 6dc8e3a017ad..b0082416b0c6 100644
--- a/arch/arm/mach-rockchip/Kconfig
+++ b/arch/arm/mach-rockchip/Kconfig
@@ -81,6 +81,9 @@ config TPL_LDSCRIPT
 config TPL_TEXT_BASE
 	default 0xff704000
 
+config TPL_MAX_SIZE
+	default 32768
+
 endif
 
 config ROCKCHIP_RK3328
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic
  2019-01-22 22:09 [U-Boot] [PATCH 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL Tom Rini
  2019-01-22 22:09 ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
@ 2019-01-22 22:09 ` Tom Rini
  2019-01-23 17:21   ` Daniel Schwierzeck
                     ` (3 more replies)
  2019-01-28 15:18 ` [U-Boot] [U-Boot, 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL Tom Rini
  2 siblings, 4 replies; 11+ messages in thread
From: Tom Rini @ 2019-01-22 22:09 UTC (permalink / raw)
  To: u-boot

Make use of "IMAGE_MAX_SIZE" and "IMAGE_TEXT_BASE" rather than
CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE.  This lets us re-use the
same script for both SPL and TPL.  Add logic to scripts/Makefile.spl to
pass in the right value when preprocessing the script.

Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Jagan Teki <jagan@openedev.com>
Cc: Maxime Ripard <maxime.ripard@bootlin.com>
Cc: Andreas Bießmann <andreas@biessmann.org>
Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
Cc: Michal Simek <monstr@monstr.eu>
Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Cc: York Sun <york.sun@nxp.com>
Cc: Bin Meng <bmeng.cn@gmail.com>
Cc: Heiko Schocher <hs@denx.de>
Cc: Adam Ford <aford173@gmail.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
---
 arch/arm/cpu/arm1136/u-boot-spl.lds            |  4 ++--
 arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds      |  2 +-
 arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds  |  4 ++--
 arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds    |  4 ++--
 arch/arm/cpu/armv7/sunxi/u-boot-spl.lds        |  4 ++--
 arch/arm/cpu/armv8/u-boot-spl.lds              |  4 ++--
 arch/arm/cpu/u-boot-spl.lds                    |  4 ++--
 arch/arm/mach-at91/arm926ejs/u-boot-spl.lds    |  8 ++++----
 arch/arm/mach-at91/armv7/u-boot-spl.lds        |  4 ++--
 arch/arm/mach-omap2/u-boot-spl.lds             |  4 ++--
 arch/arm/mach-rockchip/Kconfig                 |  6 ------
 arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds   |  9 ---------
 arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds   | 12 ------------
 arch/arm/mach-zynq/u-boot-spl.lds              |  4 ++--
 arch/mips/cpu/u-boot-spl.lds                   |  4 ++--
 arch/powerpc/cpu/mpc85xx/u-boot-spl.lds        |  6 +-----
 arch/x86/cpu/u-boot-spl.lds                    |  2 +-
 board/Barix/ipam390/u-boot-spl-ipam390.lds     |  2 +-
 board/davinci/da8xxevm/u-boot-spl-da850evm.lds |  2 +-
 board/samsung/common/exynos-uboot-spl.lds      |  2 +-
 common/spl/Kconfig                             |  2 ++
 scripts/Makefile.spl                           |  9 +++++++++
 22 files changed, 41 insertions(+), 61 deletions(-)
 delete mode 100644 arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
 delete mode 100644 arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds

diff --git a/arch/arm/cpu/arm1136/u-boot-spl.lds b/arch/arm/cpu/arm1136/u-boot-spl.lds
index 881275adef51..f83988fd7e6a 100644
--- a/arch/arm/cpu/arm1136/u-boot-spl.lds
+++ b/arch/arm/cpu/arm1136/u-boot-spl.lds
@@ -8,8 +8,8 @@
  *	Aneesh V <aneesh@ti.com>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
index ffc70ce86bfd..7e20448f8108 100644
--- a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
+++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
@@ -15,7 +15,7 @@ OUTPUT_ARCH(arm)
 ENTRY(_start)
 SECTIONS
 {
-	. = CONFIG_SPL_TEXT_BASE;
+	. = IMAGE_TEXT_BASE;
 
 	. = ALIGN(4);
 	.text	:
diff --git a/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
index fbdb1d7e77a4..a537fe02954b 100644
--- a/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
+++ b/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
@@ -16,8 +16,8 @@
  * Texas Instruments, <www.ti.com>
  *	Aneesh V <aneesh@ti.com>
  */
-MEMORY { .nor : ORIGIN = CONFIG_SPL_TEXT_BASE,\
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .nor : ORIGIN = IMAGE_TEXT_BASE,\
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .bss : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
index 569704c317e9..0964a9742e4c 100644
--- a/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
+++ b/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
@@ -12,8 +12,8 @@
  * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
+		LENGTH = IMAGE_MAX_SIZE }
 
 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
 OUTPUT_ARCH(arm)
diff --git a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
index 5d7f3f578bef..942c29fc959d 100644
--- a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
+++ b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
@@ -13,8 +13,8 @@
  * Texas Instruments, <www.ti.com>
  *	Aneesh V <aneesh@ti.com>
  */
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/arm/cpu/armv8/u-boot-spl.lds b/arch/arm/cpu/armv8/u-boot-spl.lds
index 4e48da56be89..ccbf359bd11d 100644
--- a/arch/arm/cpu/armv8/u-boot-spl.lds
+++ b/arch/arm/cpu/armv8/u-boot-spl.lds
@@ -11,8 +11,8 @@
  *	Aneesh V <aneesh@ti.com>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR,
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/arm/cpu/u-boot-spl.lds b/arch/arm/cpu/u-boot-spl.lds
index 9d1333176b54..a2aa93a7357d 100644
--- a/arch/arm/cpu/u-boot-spl.lds
+++ b/arch/arm/cpu/u-boot-spl.lds
@@ -78,8 +78,8 @@ SECTIONS
 	.ARM.exidx : { *(.ARM.exidx*) }
 }
 
-#if defined(CONFIG_SPL_MAX_SIZE)
-ASSERT(__image_copy_end - __image_copy_start < (CONFIG_SPL_MAX_SIZE), \
+#if defined(IMAGE_MAX_SIZE)
+ASSERT(__image_copy_end - __image_copy_start < (IMAGE_MAX_SIZE), \
 	"SPL image too big");
 #endif
 
diff --git a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
index b714e93b3b21..f18b17dc931c 100644
--- a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
+++ b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
@@ -4,8 +4,8 @@
  *		      Bo Shen <voice.shen@atmel.com>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
@@ -49,8 +49,8 @@ SECTIONS
 	} >.sdram
 }
 
-#if defined(CONFIG_SPL_MAX_SIZE)
-ASSERT(__image_copy_end - __start < (CONFIG_SPL_MAX_SIZE), \
+#if defined(IMAGE_MAX_SIZE)
+ASSERT(__image_copy_end - __start < (IMAGE_MAX_SIZE), \
 	"SPL image too big");
 #endif
 
diff --git a/arch/arm/mach-at91/armv7/u-boot-spl.lds b/arch/arm/mach-at91/armv7/u-boot-spl.lds
index 22237cffc92f..950ea55d7c4e 100644
--- a/arch/arm/mach-at91/armv7/u-boot-spl.lds
+++ b/arch/arm/mach-at91/armv7/u-boot-spl.lds
@@ -11,8 +11,8 @@
  *	    Bo Shen <voice.shen@atmel.com>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/arm/mach-omap2/u-boot-spl.lds b/arch/arm/mach-omap2/u-boot-spl.lds
index a1289f6a7440..88d81f9b98d6 100644
--- a/arch/arm/mach-omap2/u-boot-spl.lds
+++ b/arch/arm/mach-omap2/u-boot-spl.lds
@@ -8,8 +8,8 @@
  *	Aneesh V <aneesh@ti.com>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig
index b0082416b0c6..8e9d88c3f9fa 100644
--- a/arch/arm/mach-rockchip/Kconfig
+++ b/arch/arm/mach-rockchip/Kconfig
@@ -75,9 +75,6 @@ config ROCKCHIP_RK3288
 
 if ROCKCHIP_RK3288
 
-config TPL_LDSCRIPT
-	default "arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds"
-
 config TPL_TEXT_BASE
 	default 0xff704000
 
@@ -120,9 +117,6 @@ config ROCKCHIP_RK3368
 
 if ROCKCHIP_RK3368
 
-config TPL_LDSCRIPT
-	default "arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds"
-
 config TPL_TEXT_BASE
         default 0xff8c1000
 
diff --git a/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds b/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
deleted file mode 100644
index 2e559890ab78..000000000000
--- a/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
+++ /dev/null
@@ -1,9 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0+ */
-/*
- * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
- */
-
-#undef CONFIG_SPL_TEXT_BASE
-#define CONFIG_SPL_TEXT_BASE	CONFIG_TPL_TEXT_BASE
-
-#include "../../cpu/u-boot-spl.lds"
diff --git a/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds b/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
deleted file mode 100644
index 7ba35b6c94db..000000000000
--- a/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
+++ /dev/null
@@ -1,12 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0+ */
-/*
- * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
- */
-
-#undef CONFIG_SPL_TEXT_BASE
-#define CONFIG_SPL_TEXT_BASE CONFIG_TPL_TEXT_BASE
-
-#undef CONFIG_SPL_MAX_SIZE
-#define CONFIG_SPL_MAX_SIZE CONFIG_TPL_MAX_SIZE
-
-#include "../../cpu/armv8/u-boot-spl.lds"
diff --git a/arch/arm/mach-zynq/u-boot-spl.lds b/arch/arm/mach-zynq/u-boot-spl.lds
index 080c6bf06d06..106d2e390ba8 100644
--- a/arch/arm/mach-zynq/u-boot-spl.lds
+++ b/arch/arm/mach-zynq/u-boot-spl.lds
@@ -7,8 +7,8 @@
  * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/mips/cpu/u-boot-spl.lds b/arch/mips/cpu/u-boot-spl.lds
index be194d314b64..d08d6222c4ab 100644
--- a/arch/mips/cpu/u-boot-spl.lds
+++ b/arch/mips/cpu/u-boot-spl.lds
@@ -1,7 +1,7 @@
 /* SPDX-License-Identifier: GPL-2.0+ */
 
-MEMORY { .spl_mem : ORIGIN = CONFIG_SPL_TEXT_BASE, \
-		LENGTH = CONFIG_SPL_MAX_SIZE }
+MEMORY { .spl_mem : ORIGIN = IMAGE_TEXT_BASE, \
+		LENGTH = IMAGE_MAX_SIZE }
 MEMORY { .bss_mem : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
 		LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
 
diff --git a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
index bd0eeb104260..27a5fe6306a3 100644
--- a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
+++ b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
@@ -18,11 +18,7 @@ PHDRS
 #endif
 SECTIONS
 {
-#ifdef CONFIG_TPL_BUILD
-	. = CONFIG_TPL_TEXT_BASE;
-#else
-	. = CONFIG_SPL_TEXT_BASE;
-#endif
+	. = IMAGE_TEXT_BASE;
 	.text : {
 		*(.text*)
 	}
diff --git a/arch/x86/cpu/u-boot-spl.lds b/arch/x86/cpu/u-boot-spl.lds
index 574d992aaa98..4e656dc4e5a7 100644
--- a/arch/x86/cpu/u-boot-spl.lds
+++ b/arch/x86/cpu/u-boot-spl.lds
@@ -15,7 +15,7 @@ SECTIONS
 	/DISCARD/ : { *(.u_boot_list_2_cmd_*) }
 #endif
 
-	. = CONFIG_SPL_TEXT_BASE;	/* Location of bootcode in flash */
+	. = IMAGE_TEXT_BASE;	/* Location of bootcode in flash */
 	__text_start = .;
 	.text  : { *(.text*); }
 
diff --git a/board/Barix/ipam390/u-boot-spl-ipam390.lds b/board/Barix/ipam390/u-boot-spl-ipam390.lds
index cf13e0a41cd3..06ed3fa89f81 100644
--- a/board/Barix/ipam390/u-boot-spl-ipam390.lds
+++ b/board/Barix/ipam390/u-boot-spl-ipam390.lds
@@ -7,7 +7,7 @@
  * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
 		LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
 
 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
diff --git a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
index f5462f88b1eb..7b5fab7756cb 100644
--- a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
+++ b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
@@ -7,7 +7,7 @@
  * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
 		LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
 
 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
diff --git a/board/samsung/common/exynos-uboot-spl.lds b/board/samsung/common/exynos-uboot-spl.lds
index 0d4be426b69b..5b32f7feb817 100644
--- a/board/samsung/common/exynos-uboot-spl.lds
+++ b/board/samsung/common/exynos-uboot-spl.lds
@@ -8,7 +8,7 @@
  * Based on arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
  */
 
-MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
+MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
 		LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
 
 OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
diff --git a/common/spl/Kconfig b/common/spl/Kconfig
index d175bb6cffe8..6a9b4d571e21 100644
--- a/common/spl/Kconfig
+++ b/common/spl/Kconfig
@@ -911,6 +911,8 @@ config TPL_BOARD_INIT
 config TPL_LDSCRIPT
         string "Linker script for the TPL stage"
 	depends on TPL
+	default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
+	default "arch/$(ARCH)/cpu/u-boot-spl.lds"
 	help
 	  The TPL stage will usually require a different linker-script
 	  (as it runs from a different memory region) than the regular
diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
index ca671eb7f5cc..af41f68840b6 100644
--- a/scripts/Makefile.spl
+++ b/scripts/Makefile.spl
@@ -147,6 +147,15 @@ LDPPFLAGS += \
 	$(shell $(LD) --version | \
 	  sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
 
+# Turn various CONFIG symbols into IMAGE symbols for easy reuse of
+# the scripts between SPL and TPL.
+ifneq ($(CONFIG_$(SPL_TPL_)MAX_SIZE),)
+LDPPFLAGS += -DIMAGE_MAX_SIZE=$(CONFIG_$(SPL_TPL_)MAX_SIZE)
+endif
+ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),)
+LDPPFLAGS += -DIMAGE_TEXT_BASE=$(CONFIG_$(SPL_TPL_)TEXT_BASE)
+endif
+
 MKIMAGEOUTPUT ?= /dev/null
 
 quiet_cmd_mkimage = MKIMAGE $@
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic
  2019-01-22 22:09 ` [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic Tom Rini
@ 2019-01-23 17:21   ` Daniel Schwierzeck
  2019-01-23 20:21   ` Adam Ford
                     ` (2 subsequent siblings)
  3 siblings, 0 replies; 11+ messages in thread
From: Daniel Schwierzeck @ 2019-01-23 17:21 UTC (permalink / raw)
  To: u-boot



Am 22.01.19 um 23:09 schrieb Tom Rini:
> Make use of "IMAGE_MAX_SIZE" and "IMAGE_TEXT_BASE" rather than
> CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE.  This lets us re-use the
> same script for both SPL and TPL.  Add logic to scripts/Makefile.spl to
> pass in the right value when preprocessing the script.
> 
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Cc: Maxime Ripard <maxime.ripard@bootlin.com>
> Cc: Andreas Bießmann <andreas@biessmann.org>
> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Cc: Michal Simek <monstr@monstr.eu>
> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
> Cc: York Sun <york.sun@nxp.com>
> Cc: Bin Meng <bmeng.cn@gmail.com>
> Cc: Heiko Schocher <hs@denx.de>
> Cc: Adam Ford <aford173@gmail.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>  arch/arm/cpu/arm1136/u-boot-spl.lds            |  4 ++--
>  arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds      |  2 +-
>  arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds  |  4 ++--
>  arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds    |  4 ++--
>  arch/arm/cpu/armv7/sunxi/u-boot-spl.lds        |  4 ++--
>  arch/arm/cpu/armv8/u-boot-spl.lds              |  4 ++--
>  arch/arm/cpu/u-boot-spl.lds                    |  4 ++--
>  arch/arm/mach-at91/arm926ejs/u-boot-spl.lds    |  8 ++++----
>  arch/arm/mach-at91/armv7/u-boot-spl.lds        |  4 ++--
>  arch/arm/mach-omap2/u-boot-spl.lds             |  4 ++--
>  arch/arm/mach-rockchip/Kconfig                 |  6 ------
>  arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds   |  9 ---------
>  arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds   | 12 ------------
>  arch/arm/mach-zynq/u-boot-spl.lds              |  4 ++--
>  arch/mips/cpu/u-boot-spl.lds                   |  4 ++--
>  arch/powerpc/cpu/mpc85xx/u-boot-spl.lds        |  6 +-----
>  arch/x86/cpu/u-boot-spl.lds                    |  2 +-
>  board/Barix/ipam390/u-boot-spl-ipam390.lds     |  2 +-
>  board/davinci/da8xxevm/u-boot-spl-da850evm.lds |  2 +-
>  board/samsung/common/exynos-uboot-spl.lds      |  2 +-
>  common/spl/Kconfig                             |  2 ++
>  scripts/Makefile.spl                           |  9 +++++++++
>  22 files changed, 41 insertions(+), 61 deletions(-)
>  delete mode 100644 arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
>  delete mode 100644 arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
> 

for MIPS:

Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Tested-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>

-- 
- Daniel

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic
  2019-01-22 22:09 ` [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic Tom Rini
  2019-01-23 17:21   ` Daniel Schwierzeck
@ 2019-01-23 20:21   ` Adam Ford
  2019-01-24 11:46   ` Simon Goldschmidt
  2019-01-28 15:19   ` [U-Boot] [U-Boot, " Tom Rini
  3 siblings, 0 replies; 11+ messages in thread
From: Adam Ford @ 2019-01-23 20:21 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 22, 2019 at 4:09 PM Tom Rini <trini@konsulko.com> wrote:
>
> Make use of "IMAGE_MAX_SIZE" and "IMAGE_TEXT_BASE" rather than
> CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE.  This lets us re-use the
> same script for both SPL and TPL.  Add logic to scripts/Makefile.spl to
> pass in the right value when preprocessing the script.

Anytime we can re-use, I am happy. :-)

>
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Cc: Maxime Ripard <maxime.ripard@bootlin.com>
> Cc: Andreas Bießmann <andreas@biessmann.org>
> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Cc: Michal Simek <monstr@monstr.eu>
> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
> Cc: York Sun <york.sun@nxp.com>
> Cc: Bin Meng <bmeng.cn@gmail.com>
> Cc: Heiko Schocher <hs@denx.de>
> Cc: Adam Ford <aford173@gmail.com>

Tested-by: Adam Ford <aford173@gmail.com> #da850evm & omap3_logic_somlv

> Signed-off-by: Tom Rini <trini@konsulko.com>
> ---
>  arch/arm/cpu/arm1136/u-boot-spl.lds            |  4 ++--
>  arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds      |  2 +-
>  arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds  |  4 ++--
>  arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds    |  4 ++--
>  arch/arm/cpu/armv7/sunxi/u-boot-spl.lds        |  4 ++--
>  arch/arm/cpu/armv8/u-boot-spl.lds              |  4 ++--
>  arch/arm/cpu/u-boot-spl.lds                    |  4 ++--
>  arch/arm/mach-at91/arm926ejs/u-boot-spl.lds    |  8 ++++----
>  arch/arm/mach-at91/armv7/u-boot-spl.lds        |  4 ++--
>  arch/arm/mach-omap2/u-boot-spl.lds             |  4 ++--
>  arch/arm/mach-rockchip/Kconfig                 |  6 ------
>  arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds   |  9 ---------
>  arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds   | 12 ------------
>  arch/arm/mach-zynq/u-boot-spl.lds              |  4 ++--
>  arch/mips/cpu/u-boot-spl.lds                   |  4 ++--
>  arch/powerpc/cpu/mpc85xx/u-boot-spl.lds        |  6 +-----
>  arch/x86/cpu/u-boot-spl.lds                    |  2 +-
>  board/Barix/ipam390/u-boot-spl-ipam390.lds     |  2 +-
>  board/davinci/da8xxevm/u-boot-spl-da850evm.lds |  2 +-
>  board/samsung/common/exynos-uboot-spl.lds      |  2 +-
>  common/spl/Kconfig                             |  2 ++
>  scripts/Makefile.spl                           |  9 +++++++++
>  22 files changed, 41 insertions(+), 61 deletions(-)
>  delete mode 100644 arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
>  delete mode 100644 arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
>
> diff --git a/arch/arm/cpu/arm1136/u-boot-spl.lds b/arch/arm/cpu/arm1136/u-boot-spl.lds
> index 881275adef51..f83988fd7e6a 100644
> --- a/arch/arm/cpu/arm1136/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm1136/u-boot-spl.lds
> @@ -8,8 +8,8 @@
>   *     Aneesh V <aneesh@ti.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
> index ffc70ce86bfd..7e20448f8108 100644
> --- a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
> @@ -15,7 +15,7 @@ OUTPUT_ARCH(arm)
>  ENTRY(_start)
>  SECTIONS
>  {
> -       . = CONFIG_SPL_TEXT_BASE;
> +       . = IMAGE_TEXT_BASE;
>
>         . = ALIGN(4);
>         .text   :
> diff --git a/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
> index fbdb1d7e77a4..a537fe02954b 100644
> --- a/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
> @@ -16,8 +16,8 @@
>   * Texas Instruments, <www.ti.com>
>   *     Aneesh V <aneesh@ti.com>
>   */
> -MEMORY { .nor : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .nor : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .bss : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
> index 569704c317e9..0964a9742e4c 100644
> --- a/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
> @@ -12,8 +12,8 @@
>   * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
>  OUTPUT_ARCH(arm)
> diff --git a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
> index 5d7f3f578bef..942c29fc959d 100644
> --- a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
> +++ b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
> @@ -13,8 +13,8 @@
>   * Texas Instruments, <www.ti.com>
>   *     Aneesh V <aneesh@ti.com>
>   */
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/armv8/u-boot-spl.lds b/arch/arm/cpu/armv8/u-boot-spl.lds
> index 4e48da56be89..ccbf359bd11d 100644
> --- a/arch/arm/cpu/armv8/u-boot-spl.lds
> +++ b/arch/arm/cpu/armv8/u-boot-spl.lds
> @@ -11,8 +11,8 @@
>   *     Aneesh V <aneesh@ti.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR,
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/u-boot-spl.lds b/arch/arm/cpu/u-boot-spl.lds
> index 9d1333176b54..a2aa93a7357d 100644
> --- a/arch/arm/cpu/u-boot-spl.lds
> +++ b/arch/arm/cpu/u-boot-spl.lds
> @@ -78,8 +78,8 @@ SECTIONS
>         .ARM.exidx : { *(.ARM.exidx*) }
>  }
>
> -#if defined(CONFIG_SPL_MAX_SIZE)
> -ASSERT(__image_copy_end - __image_copy_start < (CONFIG_SPL_MAX_SIZE), \
> +#if defined(IMAGE_MAX_SIZE)
> +ASSERT(__image_copy_end - __image_copy_start < (IMAGE_MAX_SIZE), \
>         "SPL image too big");
>  #endif
>
> diff --git a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
> index b714e93b3b21..f18b17dc931c 100644
> --- a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
> +++ b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
> @@ -4,8 +4,8 @@
>   *                   Bo Shen <voice.shen@atmel.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> @@ -49,8 +49,8 @@ SECTIONS
>         } >.sdram
>  }
>
> -#if defined(CONFIG_SPL_MAX_SIZE)
> -ASSERT(__image_copy_end - __start < (CONFIG_SPL_MAX_SIZE), \
> +#if defined(IMAGE_MAX_SIZE)
> +ASSERT(__image_copy_end - __start < (IMAGE_MAX_SIZE), \
>         "SPL image too big");
>  #endif
>
> diff --git a/arch/arm/mach-at91/armv7/u-boot-spl.lds b/arch/arm/mach-at91/armv7/u-boot-spl.lds
> index 22237cffc92f..950ea55d7c4e 100644
> --- a/arch/arm/mach-at91/armv7/u-boot-spl.lds
> +++ b/arch/arm/mach-at91/armv7/u-boot-spl.lds
> @@ -11,8 +11,8 @@
>   *         Bo Shen <voice.shen@atmel.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/mach-omap2/u-boot-spl.lds b/arch/arm/mach-omap2/u-boot-spl.lds
> index a1289f6a7440..88d81f9b98d6 100644
> --- a/arch/arm/mach-omap2/u-boot-spl.lds
> +++ b/arch/arm/mach-omap2/u-boot-spl.lds
> @@ -8,8 +8,8 @@
>   *     Aneesh V <aneesh@ti.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig
> index b0082416b0c6..8e9d88c3f9fa 100644
> --- a/arch/arm/mach-rockchip/Kconfig
> +++ b/arch/arm/mach-rockchip/Kconfig
> @@ -75,9 +75,6 @@ config ROCKCHIP_RK3288
>
>  if ROCKCHIP_RK3288
>
> -config TPL_LDSCRIPT
> -       default "arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds"
> -
>  config TPL_TEXT_BASE
>         default 0xff704000
>
> @@ -120,9 +117,6 @@ config ROCKCHIP_RK3368
>
>  if ROCKCHIP_RK3368
>
> -config TPL_LDSCRIPT
> -       default "arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds"
> -
>  config TPL_TEXT_BASE
>          default 0xff8c1000
>
> diff --git a/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds b/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
> deleted file mode 100644
> index 2e559890ab78..000000000000
> --- a/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
> +++ /dev/null
> @@ -1,9 +0,0 @@
> -/* SPDX-License-Identifier: GPL-2.0+ */
> -/*
> - * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
> - */
> -
> -#undef CONFIG_SPL_TEXT_BASE
> -#define CONFIG_SPL_TEXT_BASE   CONFIG_TPL_TEXT_BASE
> -
> -#include "../../cpu/u-boot-spl.lds"
> diff --git a/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds b/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
> deleted file mode 100644
> index 7ba35b6c94db..000000000000
> --- a/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
> +++ /dev/null
> @@ -1,12 +0,0 @@
> -/* SPDX-License-Identifier: GPL-2.0+ */
> -/*
> - * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
> - */
> -
> -#undef CONFIG_SPL_TEXT_BASE
> -#define CONFIG_SPL_TEXT_BASE CONFIG_TPL_TEXT_BASE
> -
> -#undef CONFIG_SPL_MAX_SIZE
> -#define CONFIG_SPL_MAX_SIZE CONFIG_TPL_MAX_SIZE
> -
> -#include "../../cpu/armv8/u-boot-spl.lds"
> diff --git a/arch/arm/mach-zynq/u-boot-spl.lds b/arch/arm/mach-zynq/u-boot-spl.lds
> index 080c6bf06d06..106d2e390ba8 100644
> --- a/arch/arm/mach-zynq/u-boot-spl.lds
> +++ b/arch/arm/mach-zynq/u-boot-spl.lds
> @@ -7,8 +7,8 @@
>   * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/mips/cpu/u-boot-spl.lds b/arch/mips/cpu/u-boot-spl.lds
> index be194d314b64..d08d6222c4ab 100644
> --- a/arch/mips/cpu/u-boot-spl.lds
> +++ b/arch/mips/cpu/u-boot-spl.lds
> @@ -1,7 +1,7 @@
>  /* SPDX-License-Identifier: GPL-2.0+ */
>
> -MEMORY { .spl_mem : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .spl_mem : ORIGIN = IMAGE_TEXT_BASE, \
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .bss_mem : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
> index bd0eeb104260..27a5fe6306a3 100644
> --- a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
> +++ b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
> @@ -18,11 +18,7 @@ PHDRS
>  #endif
>  SECTIONS
>  {
> -#ifdef CONFIG_TPL_BUILD
> -       . = CONFIG_TPL_TEXT_BASE;
> -#else
> -       . = CONFIG_SPL_TEXT_BASE;
> -#endif
> +       . = IMAGE_TEXT_BASE;
>         .text : {
>                 *(.text*)
>         }
> diff --git a/arch/x86/cpu/u-boot-spl.lds b/arch/x86/cpu/u-boot-spl.lds
> index 574d992aaa98..4e656dc4e5a7 100644
> --- a/arch/x86/cpu/u-boot-spl.lds
> +++ b/arch/x86/cpu/u-boot-spl.lds
> @@ -15,7 +15,7 @@ SECTIONS
>         /DISCARD/ : { *(.u_boot_list_2_cmd_*) }
>  #endif
>
> -       . = CONFIG_SPL_TEXT_BASE;       /* Location of bootcode in flash */
> +       . = IMAGE_TEXT_BASE;    /* Location of bootcode in flash */
>         __text_start = .;
>         .text  : { *(.text*); }
>
> diff --git a/board/Barix/ipam390/u-boot-spl-ipam390.lds b/board/Barix/ipam390/u-boot-spl-ipam390.lds
> index cf13e0a41cd3..06ed3fa89f81 100644
> --- a/board/Barix/ipam390/u-boot-spl-ipam390.lds
> +++ b/board/Barix/ipam390/u-boot-spl-ipam390.lds
> @@ -7,7 +7,7 @@
>   * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
>                 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
> diff --git a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
> index f5462f88b1eb..7b5fab7756cb 100644
> --- a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
> +++ b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
> @@ -7,7 +7,7 @@
>   * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
>                 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
> diff --git a/board/samsung/common/exynos-uboot-spl.lds b/board/samsung/common/exynos-uboot-spl.lds
> index 0d4be426b69b..5b32f7feb817 100644
> --- a/board/samsung/common/exynos-uboot-spl.lds
> +++ b/board/samsung/common/exynos-uboot-spl.lds
> @@ -8,7 +8,7 @@
>   * Based on arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
>                 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
> diff --git a/common/spl/Kconfig b/common/spl/Kconfig
> index d175bb6cffe8..6a9b4d571e21 100644
> --- a/common/spl/Kconfig
> +++ b/common/spl/Kconfig
> @@ -911,6 +911,8 @@ config TPL_BOARD_INIT
>  config TPL_LDSCRIPT
>          string "Linker script for the TPL stage"
>         depends on TPL
> +       default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
> +       default "arch/$(ARCH)/cpu/u-boot-spl.lds"
>         help
>           The TPL stage will usually require a different linker-script
>           (as it runs from a different memory region) than the regular
> diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
> index ca671eb7f5cc..af41f68840b6 100644
> --- a/scripts/Makefile.spl
> +++ b/scripts/Makefile.spl
> @@ -147,6 +147,15 @@ LDPPFLAGS += \
>         $(shell $(LD) --version | \
>           sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
>
> +# Turn various CONFIG symbols into IMAGE symbols for easy reuse of
> +# the scripts between SPL and TPL.
> +ifneq ($(CONFIG_$(SPL_TPL_)MAX_SIZE),)
> +LDPPFLAGS += -DIMAGE_MAX_SIZE=$(CONFIG_$(SPL_TPL_)MAX_SIZE)
> +endif
> +ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),)
> +LDPPFLAGS += -DIMAGE_TEXT_BASE=$(CONFIG_$(SPL_TPL_)TEXT_BASE)
> +endif
> +
>  MKIMAGEOUTPUT ?= /dev/null
>
>  quiet_cmd_mkimage = MKIMAGE $@
> --
> 2.7.4
>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288【请注意,邮件由tom.rini@gmail.com代发】
  2019-01-22 22:09 ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
@ 2019-01-24  2:48   ` Kever Yang
  2019-01-28 15:18   ` [U-Boot] [U-Boot,2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
  1 sibling, 0 replies; 11+ messages in thread
From: Kever Yang @ 2019-01-24  2:48 UTC (permalink / raw)
  To: u-boot

Hi Tom,


On 01/23/2019 06:09 AM, Tom Rini wrote:
> Per Kever Yang, 32768 is a reasonable max size for TPL on RK3288.
>
> Cc: Kever Yang <kever.yang@rock-chips.com>
> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Kever Yang <kever.yang@rock-chips.com>
> ---
>  arch/arm/mach-rockchip/Kconfig | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig
> index 6dc8e3a017ad..b0082416b0c6 100644
> --- a/arch/arm/mach-rockchip/Kconfig
> +++ b/arch/arm/mach-rockchip/Kconfig
> @@ -81,6 +81,9 @@ config TPL_LDSCRIPT
>  config TPL_TEXT_BASE
>  	default 0xff704000
>  
> +config TPL_MAX_SIZE
> +	default 32768
> +
>  endif
>  
>  config ROCKCHIP_RK3328

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic
  2019-01-22 22:09 ` [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic Tom Rini
  2019-01-23 17:21   ` Daniel Schwierzeck
  2019-01-23 20:21   ` Adam Ford
@ 2019-01-24 11:46   ` Simon Goldschmidt
  2019-01-24 12:21     ` Tom Rini
  2019-01-28 15:19   ` [U-Boot] [U-Boot, " Tom Rini
  3 siblings, 1 reply; 11+ messages in thread
From: Simon Goldschmidt @ 2019-01-24 11:46 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 22, 2019 at 11:10 PM Tom Rini <trini@konsulko.com> wrote:
>
> Make use of "IMAGE_MAX_SIZE" and "IMAGE_TEXT_BASE" rather than
> CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE.  This lets us re-use the
> same script for both SPL and TPL.  Add logic to scripts/Makefile.spl to
> pass in the right value when preprocessing the script.
>
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Cc: Maxime Ripard <maxime.ripard@bootlin.com>
> Cc: Andreas Bießmann <andreas@biessmann.org>
> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Cc: Michal Simek <monstr@monstr.eu>
> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
> Cc: York Sun <york.sun@nxp.com>
> Cc: Bin Meng <bmeng.cn@gmail.com>
> Cc: Heiko Schocher <hs@denx.de>
> Cc: Adam Ford <aford173@gmail.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>

Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>

However, given that it's now "not allowed" to use OF_EMBED, how useful
is the current size check? Because if done in the linker, it does not include
the DTB.

I think we might need to move the MAX_SIZE check into the Makefile,
much like CONFIG_BOARD_SIZE_LIMIT.

Regards,
Simon

> ---
>  arch/arm/cpu/arm1136/u-boot-spl.lds            |  4 ++--
>  arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds      |  2 +-
>  arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds  |  4 ++--
>  arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds    |  4 ++--
>  arch/arm/cpu/armv7/sunxi/u-boot-spl.lds        |  4 ++--
>  arch/arm/cpu/armv8/u-boot-spl.lds              |  4 ++--
>  arch/arm/cpu/u-boot-spl.lds                    |  4 ++--
>  arch/arm/mach-at91/arm926ejs/u-boot-spl.lds    |  8 ++++----
>  arch/arm/mach-at91/armv7/u-boot-spl.lds        |  4 ++--
>  arch/arm/mach-omap2/u-boot-spl.lds             |  4 ++--
>  arch/arm/mach-rockchip/Kconfig                 |  6 ------
>  arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds   |  9 ---------
>  arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds   | 12 ------------
>  arch/arm/mach-zynq/u-boot-spl.lds              |  4 ++--
>  arch/mips/cpu/u-boot-spl.lds                   |  4 ++--
>  arch/powerpc/cpu/mpc85xx/u-boot-spl.lds        |  6 +-----
>  arch/x86/cpu/u-boot-spl.lds                    |  2 +-
>  board/Barix/ipam390/u-boot-spl-ipam390.lds     |  2 +-
>  board/davinci/da8xxevm/u-boot-spl-da850evm.lds |  2 +-
>  board/samsung/common/exynos-uboot-spl.lds      |  2 +-
>  common/spl/Kconfig                             |  2 ++
>  scripts/Makefile.spl                           |  9 +++++++++
>  22 files changed, 41 insertions(+), 61 deletions(-)
>  delete mode 100644 arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
>  delete mode 100644 arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
>
> diff --git a/arch/arm/cpu/arm1136/u-boot-spl.lds b/arch/arm/cpu/arm1136/u-boot-spl.lds
> index 881275adef51..f83988fd7e6a 100644
> --- a/arch/arm/cpu/arm1136/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm1136/u-boot-spl.lds
> @@ -8,8 +8,8 @@
>   *     Aneesh V <aneesh@ti.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
> index ffc70ce86bfd..7e20448f8108 100644
> --- a/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds
> @@ -15,7 +15,7 @@ OUTPUT_ARCH(arm)
>  ENTRY(_start)
>  SECTIONS
>  {
> -       . = CONFIG_SPL_TEXT_BASE;
> +       . = IMAGE_TEXT_BASE;
>
>         . = ALIGN(4);
>         .text   :
> diff --git a/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
> index fbdb1d7e77a4..a537fe02954b 100644
> --- a/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm926ejs/orion5x/u-boot-spl.lds
> @@ -16,8 +16,8 @@
>   * Texas Instruments, <www.ti.com>
>   *     Aneesh V <aneesh@ti.com>
>   */
> -MEMORY { .nor : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .nor : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .bss : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds b/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
> index 569704c317e9..0964a9742e4c 100644
> --- a/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
> +++ b/arch/arm/cpu/arm926ejs/spear/u-boot-spl.lds
> @@ -12,8 +12,8 @@
>   * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
>  OUTPUT_ARCH(arm)
> diff --git a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
> index 5d7f3f578bef..942c29fc959d 100644
> --- a/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
> +++ b/arch/arm/cpu/armv7/sunxi/u-boot-spl.lds
> @@ -13,8 +13,8 @@
>   * Texas Instruments, <www.ti.com>
>   *     Aneesh V <aneesh@ti.com>
>   */
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/armv8/u-boot-spl.lds b/arch/arm/cpu/armv8/u-boot-spl.lds
> index 4e48da56be89..ccbf359bd11d 100644
> --- a/arch/arm/cpu/armv8/u-boot-spl.lds
> +++ b/arch/arm/cpu/armv8/u-boot-spl.lds
> @@ -11,8 +11,8 @@
>   *     Aneesh V <aneesh@ti.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR,
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/cpu/u-boot-spl.lds b/arch/arm/cpu/u-boot-spl.lds
> index 9d1333176b54..a2aa93a7357d 100644
> --- a/arch/arm/cpu/u-boot-spl.lds
> +++ b/arch/arm/cpu/u-boot-spl.lds
> @@ -78,8 +78,8 @@ SECTIONS
>         .ARM.exidx : { *(.ARM.exidx*) }
>  }
>
> -#if defined(CONFIG_SPL_MAX_SIZE)
> -ASSERT(__image_copy_end - __image_copy_start < (CONFIG_SPL_MAX_SIZE), \
> +#if defined(IMAGE_MAX_SIZE)
> +ASSERT(__image_copy_end - __image_copy_start < (IMAGE_MAX_SIZE), \
>         "SPL image too big");
>  #endif
>
> diff --git a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
> index b714e93b3b21..f18b17dc931c 100644
> --- a/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
> +++ b/arch/arm/mach-at91/arm926ejs/u-boot-spl.lds
> @@ -4,8 +4,8 @@
>   *                   Bo Shen <voice.shen@atmel.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> @@ -49,8 +49,8 @@ SECTIONS
>         } >.sdram
>  }
>
> -#if defined(CONFIG_SPL_MAX_SIZE)
> -ASSERT(__image_copy_end - __start < (CONFIG_SPL_MAX_SIZE), \
> +#if defined(IMAGE_MAX_SIZE)
> +ASSERT(__image_copy_end - __start < (IMAGE_MAX_SIZE), \
>         "SPL image too big");
>  #endif
>
> diff --git a/arch/arm/mach-at91/armv7/u-boot-spl.lds b/arch/arm/mach-at91/armv7/u-boot-spl.lds
> index 22237cffc92f..950ea55d7c4e 100644
> --- a/arch/arm/mach-at91/armv7/u-boot-spl.lds
> +++ b/arch/arm/mach-at91/armv7/u-boot-spl.lds
> @@ -11,8 +11,8 @@
>   *         Bo Shen <voice.shen@atmel.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/mach-omap2/u-boot-spl.lds b/arch/arm/mach-omap2/u-boot-spl.lds
> index a1289f6a7440..88d81f9b98d6 100644
> --- a/arch/arm/mach-omap2/u-boot-spl.lds
> +++ b/arch/arm/mach-omap2/u-boot-spl.lds
> @@ -8,8 +8,8 @@
>   *     Aneesh V <aneesh@ti.com>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/arm/mach-rockchip/Kconfig b/arch/arm/mach-rockchip/Kconfig
> index b0082416b0c6..8e9d88c3f9fa 100644
> --- a/arch/arm/mach-rockchip/Kconfig
> +++ b/arch/arm/mach-rockchip/Kconfig
> @@ -75,9 +75,6 @@ config ROCKCHIP_RK3288
>
>  if ROCKCHIP_RK3288
>
> -config TPL_LDSCRIPT
> -       default "arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds"
> -
>  config TPL_TEXT_BASE
>         default 0xff704000
>
> @@ -120,9 +117,6 @@ config ROCKCHIP_RK3368
>
>  if ROCKCHIP_RK3368
>
> -config TPL_LDSCRIPT
> -       default "arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds"
> -
>  config TPL_TEXT_BASE
>          default 0xff8c1000
>
> diff --git a/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds b/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
> deleted file mode 100644
> index 2e559890ab78..000000000000
> --- a/arch/arm/mach-rockchip/rk3288/u-boot-tpl.lds
> +++ /dev/null
> @@ -1,9 +0,0 @@
> -/* SPDX-License-Identifier: GPL-2.0+ */
> -/*
> - * Copyright (C) 2018 Jagan Teki <jagan@amarulasolutions.com>
> - */
> -
> -#undef CONFIG_SPL_TEXT_BASE
> -#define CONFIG_SPL_TEXT_BASE   CONFIG_TPL_TEXT_BASE
> -
> -#include "../../cpu/u-boot-spl.lds"
> diff --git a/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds b/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
> deleted file mode 100644
> index 7ba35b6c94db..000000000000
> --- a/arch/arm/mach-rockchip/rk3368/u-boot-tpl.lds
> +++ /dev/null
> @@ -1,12 +0,0 @@
> -/* SPDX-License-Identifier: GPL-2.0+ */
> -/*
> - * (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH
> - */
> -
> -#undef CONFIG_SPL_TEXT_BASE
> -#define CONFIG_SPL_TEXT_BASE CONFIG_TPL_TEXT_BASE
> -
> -#undef CONFIG_SPL_MAX_SIZE
> -#define CONFIG_SPL_MAX_SIZE CONFIG_TPL_MAX_SIZE
> -
> -#include "../../cpu/armv8/u-boot-spl.lds"
> diff --git a/arch/arm/mach-zynq/u-boot-spl.lds b/arch/arm/mach-zynq/u-boot-spl.lds
> index 080c6bf06d06..106d2e390ba8 100644
> --- a/arch/arm/mach-zynq/u-boot-spl.lds
> +++ b/arch/arm/mach-zynq/u-boot-spl.lds
> @@ -7,8 +7,8 @@
>   * Gary Jennejohn, DENX Software Engineering, <garyj@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .sdram : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/mips/cpu/u-boot-spl.lds b/arch/mips/cpu/u-boot-spl.lds
> index be194d314b64..d08d6222c4ab 100644
> --- a/arch/mips/cpu/u-boot-spl.lds
> +++ b/arch/mips/cpu/u-boot-spl.lds
> @@ -1,7 +1,7 @@
>  /* SPDX-License-Identifier: GPL-2.0+ */
>
> -MEMORY { .spl_mem : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> -               LENGTH = CONFIG_SPL_MAX_SIZE }
> +MEMORY { .spl_mem : ORIGIN = IMAGE_TEXT_BASE, \
> +               LENGTH = IMAGE_MAX_SIZE }
>  MEMORY { .bss_mem : ORIGIN = CONFIG_SPL_BSS_START_ADDR, \
>                 LENGTH = CONFIG_SPL_BSS_MAX_SIZE }
>
> diff --git a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
> index bd0eeb104260..27a5fe6306a3 100644
> --- a/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
> +++ b/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
> @@ -18,11 +18,7 @@ PHDRS
>  #endif
>  SECTIONS
>  {
> -#ifdef CONFIG_TPL_BUILD
> -       . = CONFIG_TPL_TEXT_BASE;
> -#else
> -       . = CONFIG_SPL_TEXT_BASE;
> -#endif
> +       . = IMAGE_TEXT_BASE;
>         .text : {
>                 *(.text*)
>         }
> diff --git a/arch/x86/cpu/u-boot-spl.lds b/arch/x86/cpu/u-boot-spl.lds
> index 574d992aaa98..4e656dc4e5a7 100644
> --- a/arch/x86/cpu/u-boot-spl.lds
> +++ b/arch/x86/cpu/u-boot-spl.lds
> @@ -15,7 +15,7 @@ SECTIONS
>         /DISCARD/ : { *(.u_boot_list_2_cmd_*) }
>  #endif
>
> -       . = CONFIG_SPL_TEXT_BASE;       /* Location of bootcode in flash */
> +       . = IMAGE_TEXT_BASE;    /* Location of bootcode in flash */
>         __text_start = .;
>         .text  : { *(.text*); }
>
> diff --git a/board/Barix/ipam390/u-boot-spl-ipam390.lds b/board/Barix/ipam390/u-boot-spl-ipam390.lds
> index cf13e0a41cd3..06ed3fa89f81 100644
> --- a/board/Barix/ipam390/u-boot-spl-ipam390.lds
> +++ b/board/Barix/ipam390/u-boot-spl-ipam390.lds
> @@ -7,7 +7,7 @@
>   * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
>                 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
> diff --git a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
> index f5462f88b1eb..7b5fab7756cb 100644
> --- a/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
> +++ b/board/davinci/da8xxevm/u-boot-spl-da850evm.lds
> @@ -7,7 +7,7 @@
>   * Guennadi Liakhovetki, DENX Software Engineering, <lg@denx.de>
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE,\
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE,\
>                 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
> diff --git a/board/samsung/common/exynos-uboot-spl.lds b/board/samsung/common/exynos-uboot-spl.lds
> index 0d4be426b69b..5b32f7feb817 100644
> --- a/board/samsung/common/exynos-uboot-spl.lds
> +++ b/board/samsung/common/exynos-uboot-spl.lds
> @@ -8,7 +8,7 @@
>   * Based on arch/arm/cpu/armv7/omap-common/u-boot-spl.lds
>   */
>
> -MEMORY { .sram : ORIGIN = CONFIG_SPL_TEXT_BASE, \
> +MEMORY { .sram : ORIGIN = IMAGE_TEXT_BASE, \
>                 LENGTH = CONFIG_SPL_MAX_FOOTPRINT }
>
>  OUTPUT_FORMAT("elf32-littlearm", "elf32-littlearm", "elf32-littlearm")
> diff --git a/common/spl/Kconfig b/common/spl/Kconfig
> index d175bb6cffe8..6a9b4d571e21 100644
> --- a/common/spl/Kconfig
> +++ b/common/spl/Kconfig
> @@ -911,6 +911,8 @@ config TPL_BOARD_INIT
>  config TPL_LDSCRIPT
>          string "Linker script for the TPL stage"
>         depends on TPL
> +       default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
> +       default "arch/$(ARCH)/cpu/u-boot-spl.lds"
>         help
>           The TPL stage will usually require a different linker-script
>           (as it runs from a different memory region) than the regular
> diff --git a/scripts/Makefile.spl b/scripts/Makefile.spl
> index ca671eb7f5cc..af41f68840b6 100644
> --- a/scripts/Makefile.spl
> +++ b/scripts/Makefile.spl
> @@ -147,6 +147,15 @@ LDPPFLAGS += \
>         $(shell $(LD) --version | \
>           sed -ne 's/GNU ld version \([0-9][0-9]*\)\.\([0-9][0-9]*\).*/-DLD_MAJOR=\1 -DLD_MINOR=\2/p')
>
> +# Turn various CONFIG symbols into IMAGE symbols for easy reuse of
> +# the scripts between SPL and TPL.
> +ifneq ($(CONFIG_$(SPL_TPL_)MAX_SIZE),)
> +LDPPFLAGS += -DIMAGE_MAX_SIZE=$(CONFIG_$(SPL_TPL_)MAX_SIZE)
> +endif
> +ifneq ($(CONFIG_$(SPL_TPL_)TEXT_BASE),)
> +LDPPFLAGS += -DIMAGE_TEXT_BASE=$(CONFIG_$(SPL_TPL_)TEXT_BASE)
> +endif
> +
>  MKIMAGEOUTPUT ?= /dev/null
>
>  quiet_cmd_mkimage = MKIMAGE $@
> --
> 2.7.4
>
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic
  2019-01-24 11:46   ` Simon Goldschmidt
@ 2019-01-24 12:21     ` Tom Rini
  0 siblings, 0 replies; 11+ messages in thread
From: Tom Rini @ 2019-01-24 12:21 UTC (permalink / raw)
  To: u-boot

On Thu, Jan 24, 2019 at 12:46:32PM +0100, Simon Goldschmidt wrote:
> On Tue, Jan 22, 2019 at 11:10 PM Tom Rini <trini@konsulko.com> wrote:
> >
> > Make use of "IMAGE_MAX_SIZE" and "IMAGE_TEXT_BASE" rather than
> > CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE.  This lets us re-use the
> > same script for both SPL and TPL.  Add logic to scripts/Makefile.spl to
> > pass in the right value when preprocessing the script.
> >
> > Cc: Stefano Babic <sbabic@denx.de>
> > Cc: Fabio Estevam <fabio.estevam@nxp.com>
> > Cc: Jagan Teki <jagan@openedev.com>
> > Cc: Maxime Ripard <maxime.ripard@bootlin.com>
> > Cc: Andreas Bießmann <andreas@biessmann.org>
> > Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> > Cc: Michal Simek <monstr@monstr.eu>
> > Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
> > Cc: York Sun <york.sun@nxp.com>
> > Cc: Bin Meng <bmeng.cn@gmail.com>
> > Cc: Heiko Schocher <hs@denx.de>
> > Cc: Adam Ford <aford173@gmail.com>
> > Signed-off-by: Tom Rini <trini@konsulko.com>
> 
> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
> 
> However, given that it's now "not allowed" to use OF_EMBED, how useful
> is the current size check? Because if done in the linker, it does not include
> the DTB.
> 
> I think we might need to move the MAX_SIZE check into the Makefile,
> much like CONFIG_BOARD_SIZE_LIMIT.

I was thinking about that too at one point and yes, there is follow-up
work to move that BOARD_SIZE_LIMIT code such that we don't have
multiple copies of it and hook more platforms into it.

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190124/eeb5fe0b/attachment.sig>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot, 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL
  2019-01-22 22:09 [U-Boot] [PATCH 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL Tom Rini
  2019-01-22 22:09 ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
  2019-01-22 22:09 ` [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic Tom Rini
@ 2019-01-28 15:18 ` Tom Rini
  2 siblings, 0 replies; 11+ messages in thread
From: Tom Rini @ 2019-01-28 15:18 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 22, 2019 at 05:09:24PM -0500, Tom Rini wrote:

> Rather than checking for CONFIG_TPL_BUILD and then re-defining
> CONFIG_SPL_TEXT_BASE make use of CONFIG_TPL_TEXT_BASE directly.
> 
> Cc: York Sun <york.sun@nxp.com>
> Cc: Po Liu <po.liu@nxp.com>
> Cc: Qiang Zhao <qiang.zhao@nxp.com>
> Cc: Timur Tabi <timur@tabi.org>
> Signed-off-by: Tom Rini <trini@konsulko.com>

After some ugly hacks to buildman to save off linker scripts so I could
diff before/after:

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190128/35ec1979/attachment.sig>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot,2/3] rockchip: Add TPL_MAX_SIZE for RK3288
  2019-01-22 22:09 ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
  2019-01-24  2:48   ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288【请注意,邮件由tom.rini@gmail.com代发】 Kever Yang
@ 2019-01-28 15:18   ` Tom Rini
  1 sibling, 0 replies; 11+ messages in thread
From: Tom Rini @ 2019-01-28 15:18 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 22, 2019 at 05:09:25PM -0500, Tom Rini wrote:

> Per Kever Yang, 32768 is a reasonable max size for TPL on RK3288.
> 
> Cc: Kever Yang <kever.yang@rock-chips.com>
> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Kever Yang <kever.yang@rock-chips.com>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190128/d492100e/attachment.sig>

^ permalink raw reply	[flat|nested] 11+ messages in thread

* [U-Boot] [U-Boot, 3/3] linker: Modify linker scripts to be more generic
  2019-01-22 22:09 ` [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic Tom Rini
                     ` (2 preceding siblings ...)
  2019-01-24 11:46   ` Simon Goldschmidt
@ 2019-01-28 15:19   ` Tom Rini
  3 siblings, 0 replies; 11+ messages in thread
From: Tom Rini @ 2019-01-28 15:19 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 22, 2019 at 05:09:26PM -0500, Tom Rini wrote:

> Make use of "IMAGE_MAX_SIZE" and "IMAGE_TEXT_BASE" rather than
> CONFIG_SPL_MAX_SIZE and CONFIG_SPL_TEXT_BASE.  This lets us re-use the
> same script for both SPL and TPL.  Add logic to scripts/Makefile.spl to
> pass in the right value when preprocessing the script.
> 
> Cc: Stefano Babic <sbabic@denx.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: Jagan Teki <jagan@openedev.com>
> Cc: Maxime Ripard <maxime.ripard@bootlin.com>
> Cc: Andreas Bießmann <andreas@biessmann.org>
> Cc: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Cc: Michal Simek <monstr@monstr.eu>
> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
> Cc: York Sun <york.sun@nxp.com>
> Cc: Bin Meng <bmeng.cn@gmail.com>
> Cc: Heiko Schocher <hs@denx.de>
> Cc: Adam Ford <aford173@gmail.com>
> Signed-off-by: Tom Rini <trini@konsulko.com>
> Reviewed-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
> Tested-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
> Tested-by: Adam Ford <aford173@gmail.com> #da850evm & omap3_logic_somlv
> Reviewed-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>

After some ugly hacks to buildman to save off linker scripts so I could
diff before/after:

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190128/ea0d3a51/attachment.sig>

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2019-01-28 15:19 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-22 22:09 [U-Boot] [PATCH 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL Tom Rini
2019-01-22 22:09 ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
2019-01-24  2:48   ` [U-Boot] [PATCH 2/3] rockchip: Add TPL_MAX_SIZE for RK3288【请注意,邮件由tom.rini@gmail.com代发】 Kever Yang
2019-01-28 15:18   ` [U-Boot] [U-Boot,2/3] rockchip: Add TPL_MAX_SIZE for RK3288 Tom Rini
2019-01-22 22:09 ` [U-Boot] [PATCH 3/3] linker: Modify linker scripts to be more generic Tom Rini
2019-01-23 17:21   ` Daniel Schwierzeck
2019-01-23 20:21   ` Adam Ford
2019-01-24 11:46   ` Simon Goldschmidt
2019-01-24 12:21     ` Tom Rini
2019-01-28 15:19   ` [U-Boot] [U-Boot, " Tom Rini
2019-01-28 15:18 ` [U-Boot] [U-Boot, 1/3] PowerPC: Stop re-using CONFIG_SPL_TEXT_BASE for TPL Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.