]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
sandbox: make RAM size configurable
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sun, 7 Jun 2020 16:47:35 +0000 (18:47 +0200)
committerSimon Glass <sjg@chromium.org>
Fri, 10 Jul 2020 00:57:22 +0000 (18:57 -0600)
Up to now the RAM size of the sandbox is hard coded as 128 MiB. This does
not allow testing the correct handling of addresses outside the 32bit
range. 128 MiB is also rather small when tracing functions where the trace
is written to RAM.

Provide configuration variable CONFIG_SANDBOX_RAM_SIZE_MB to set the RAM
size in MiB. It defaults to 128 MiB with a minimum of 64 MiB.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
arch/sandbox/Kconfig
arch/sandbox/include/asm/state.h
include/configs/sandbox.h

index 2a08533c4b59dab6f3ffb86fd886da4c0d55c0c4..65f988e7369acf23efdfd35a59f5d85332ded3ba 100644 (file)
@@ -15,6 +15,16 @@ config SANDBOX64
        select PHYS_64BIT
        select HOST_64BIT
 
+config SANDBOX_RAM_SIZE_MB
+       int "RAM size in MiB"
+       default 128
+       range 64 4095 if !SANDBOX64
+       range 64 268435456 if SANDBOX64
+       help
+         Memory size of the sandbox in MiB. The default value is 128 MiB.
+         The minimum value is 64 MiB. The maximum value is 4095 MiB for the
+         32bit sandbox.
+
 config SANDBOX_SPL
        bool "Enable SPL for sandbox"
        select SUPPORT_SPL
index 705645d7144814c0e26181588b8d3e6ea198a3f6..1bfad305f1afcd20d24db91658f67243868abdde 100644 (file)
@@ -73,7 +73,7 @@ struct sandbox_state {
        char **argv;                    /* Command line arguments */
        const char *jumped_fname;       /* Jumped from previous U_Boot */
        uint8_t *ram_buf;               /* Emulated RAM buffer */
-       unsigned int ram_size;          /* Size of RAM buffer */
+       unsigned long ram_size;         /* Size of RAM buffer */
        const char *ram_buf_fname;      /* Filename to use for RAM buffer */
        bool ram_buf_rm;                /* Remove RAM buffer file after read */
        bool write_ram_buf;             /* Write RAM buffer on exit */
index 1a981a7c37ae9c88727cd8682f5fecb7927e9c12..0353a19c976c7eaedce9f442b8f9da2f0f42f9e6 100644 (file)
 #define CONFIG_PHYSMEM
 
 /* Size of our emulated memory */
+#define SB_CONCAT(x, y) x ## y
+#define SB_TO_UL(s) SB_CONCAT(s, UL)
 #define CONFIG_SYS_SDRAM_BASE          0
-#define CONFIG_SYS_SDRAM_SIZE          (128 << 20)
+#define CONFIG_SYS_SDRAM_SIZE \
+               (SB_TO_UL(CONFIG_SANDBOX_RAM_SIZE_MB) << 20)
 #define CONFIG_SYS_MONITOR_BASE        0
 
 #define CONFIG_SYS_BAUDRATE_TABLE      {4800, 9600, 19200, 38400, 57600,\