arm64: zynqmp: Set initrd_high to as high as possible
authorT Karthik Reddy <t.karthik.reddy@xilinx.com>
Tue, 20 Aug 2019 04:00:57 +0000 (09:30 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Tue, 8 Oct 2019 07:11:14 +0000 (09:11 +0200)
This patch is setting up the initrd_high to as high as possible by leaving
max stack size for u-boot so that bigger rootfs can also be loaded by
u-boot for booting kernel.

Signed-off-by: T Karthik Reddy <t.karthik.reddy@xilinx.com>
Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
arch/arm/Kconfig
board/xilinx/zynqmp/zynqmp.c
include/configs/xilinx_zynqmp.h

index 33cb3e06583001a2c3ba273740f915ed6462fba6..257a98d795e55411ceccb965b5f8ac45d9f57daf 100644 (file)
@@ -464,7 +464,7 @@ config TPL_USE_ARCH_MEMSET
 
 config SET_STACK_SIZE
        bool "Enable an option to set max stack size that can be used"
-       default y if ARCH_VERSAL
+       default y if ARCH_VERSAL || ARCH_ZYNQMP
        help
          This will enable an option to set max stack size that can be
          used by u-boot.
@@ -472,7 +472,7 @@ config SET_STACK_SIZE
 config STACK_SIZE
        hex "Define max stack size that can be used by u-boot"
        depends on SET_STACK_SIZE
-       default 0x4000000 if ARCH_VERSAL
+       default 0x4000000 if ARCH_VERSAL || ARCH_ZYNQMP
        help
          Defines Max stack size that can be used by u-boot so that the
          initrd_high will be calculated as base stack pointer minus this
index d649daba96d49ac9a0cfbc391b508621ffcf5050..0c331e332230956f5e7386f3f3f9904e9f729b46 100644 (file)
@@ -22,6 +22,7 @@
 #include <dwc3-uboot.h>
 #include <zynqmppl.h>
 #include <g_dnl.h>
+#include <linux/sizes.h>
 
 #include "pm_cfg_obj.h"
 
@@ -530,6 +531,7 @@ int board_late_init(void)
        char *new_targets;
        char *env_targets;
        int ret;
+       ulong initrd_hi;
 
 #if defined(CONFIG_USB_ETHER) && !defined(CONFIG_USB_GADGET_DOWNLOAD)
        usb_ether_init();
@@ -647,6 +649,10 @@ int board_late_init(void)
 
        env_set("boot_targets", new_targets);
 
+       initrd_hi = gd->start_addr_sp - CONFIG_STACK_SIZE;
+       initrd_hi = round_down(initrd_hi, SZ_16M);
+       env_set_addr("initrd_high", (void *)initrd_hi);
+
        reset_reason();
 
        return 0;
index a1c55a83069e4e23df02916d42275fe66858ebfa..d42696ba1255a4f445e0b224c3a2de0fc38ec9e8 100644 (file)
 
 #define ENV_MEM_LAYOUT_SETTINGS \
        "fdt_high=10000000\0" \
-       "initrd_high=10000000\0" \
        "fdt_addr_r=0x40000000\0" \
        "pxefile_addr_r=0x10000000\0" \
        "kernel_addr_r=0x18000000\0" \