| /u-boot/test/py/tests/ |
| A D | test_md.py | 13 ram_base = u_boot_utils.find_ram_base(u_boot_console) 14 addr = '%08x' % ram_base 29 ram_base = u_boot_utils.find_ram_base(u_boot_console) 30 addr_base = '%08x' % ram_base 32 addr_repeat = '%08x' % (ram_base + (words * 4))
|
| A D | test_mmc_wr.py | 64 ram_base = u_boot_utils.find_ram_base(u_boot_console) 65 src_addr = '0x%08x' % ram_base 66 dst_addr = '0x%08x' % (ram_base + count_bytes)
|
| A D | test_env.py | 281 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 282 addr = '%08x' % ram_base 294 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 295 addr = '%08x' % ram_base 306 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 307 addr = '%08x' % ram_base 343 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 344 addr = '%08x' % ram_base
|
| A D | test_mmc_rd.py | 244 ram_base = u_boot_utils.find_ram_base(u_boot_console) 245 addr = '0x%08x' % ram_base
|
| /u-boot/test/py/ |
| A D | u_boot_utils.py | 209 ram_base = None variable 227 global ram_base 230 if ram_base == -1: 232 if ram_base is not None: 233 return ram_base 239 ram_base = int(l.split('=')[1].strip(), 16) 241 if ram_base is None: 242 ram_base = -1 250 ram_base += 1024 * 1024 * 2 252 return ram_base
|
| /u-boot/arch/riscv/lib/ |
| A D | image.c | 54 (gd->ram_base <= image && image < gd->ram_base + gd->ram_size)) { in booti_setup() 55 *relocated_addr = gd->ram_base + lhdr->text_offset; in booti_setup()
|
| /u-boot/board/xilinx/microblaze-generic/ |
| A D | microblaze-generic.c | 65 status |= env_set_hex("kernel_addr_r", gd->ram_base + SZ_32M); in board_late_init() 67 status |= env_set_hex("fdt_addr_r", gd->ram_base + SZ_32M - SZ_1M); in board_late_init() 70 gd->ram_base + SZ_32M + SZ_4M + SZ_2M); in board_late_init()
|
| /u-boot/arch/mips/lib/ |
| A D | boot.c | 21 flush_cache(gd->ram_base, gd->ram_top - gd->ram_base); in do_go_exec()
|
| /u-boot/common/ |
| A D | memsize.c | 107 if (gd->ram_base + ram_size < gd->ram_base) in get_effective_memsize() 108 ram_size = ((phys_size_t)~0xfffULL) - gd->ram_base; in get_effective_memsize()
|
| /u-boot/lib/efi/ |
| A D | efi_app.c | 143 priv->ram_base = (ulong)efi_malloc(priv, CONFIG_EFI_RAM_SIZE, in setup_memory() 145 if (!priv->ram_base) in setup_memory() 150 priv->ram_base = addr; in setup_memory() 170 efi_free(priv, (void *)priv->ram_base); in free_memory() 172 boot->free_pages(priv->ram_base, gd->ram_size >> 12); in free_memory()
|
| /u-boot/board/mediatek/mt8512/ |
| A D | mt8512.c | 17 gd->bd->bi_boot_params = gd->ram_base + 0x100; in board_init()
|
| /u-boot/api/ |
| A D | api_platform-mips.c | 27 platform_set_mr(si, gd->ram_base, gd->ram_size, MR_ATTR_DRAM); in platform_sys_info()
|
| A D | api_platform-powerpc.c | 45 platform_set_mr(si, gd->ram_base, gd->ram_size, MR_ATTR_DRAM); in platform_sys_info()
|
| /u-boot/board/ti/am62x/ |
| A D | evm.c | 67 gd->ram_base = CFG_SYS_SDRAM_BASE; in setup_dram() 68 gd->ram_top = gd->ram_base + gd->ram_size; in setup_dram()
|
| /u-boot/board/schneider/rzn1-snarc/ |
| A D | rzn1.c | 12 gd->bd->bi_boot_params = gd->ram_base + 0x100; in board_init()
|
| /u-boot/arch/powerpc/cpu/mpc8xx/ |
| A D | fdt.c | 29 fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size); in ft_cpu_setup()
|
| /u-boot/arch/arm/mach-mediatek/mt8518/ |
| A D | init.c | 39 gd->bd->bi_dram[0].start = gd->ram_base; in dram_init_banksize()
|
| /u-boot/arch/arm/mach-mediatek/mt8183/ |
| A D | init.c | 35 gd->bd->bi_dram[0].start = gd->ram_base; in dram_init_banksize()
|
| /u-boot/arch/arm/mach-mediatek/mt8512/ |
| A D | init.c | 41 gd->bd->bi_dram[0].start = gd->ram_base; in dram_init_banksize()
|
| /u-boot/arch/xtensa/lib/ |
| A D | bootm.c | 51 mem->start = PHYSADDR(gd->ram_base); in setup_memory_tag() 52 mem->end = PHYSADDR(gd->ram_base + gd->ram_size); in setup_memory_tag()
|
| /u-boot/arch/arm/mach-stm32mp/ |
| A D | dram_init.c | 54 lmb_add(&lmb, gd->ram_base, get_effective_memsize()); in board_get_usable_ram_top()
|
| /u-boot/arch/arm/mach-mediatek/mt8516/ |
| A D | init.c | 38 gd->bd->bi_dram[0].start = gd->ram_base; in dram_init_banksize()
|
| /u-boot/arch/arm/mach-snapdragon/ |
| A D | init_sdm845.c | 85 uintptr_t start = gd->ram_base; in misc_init_r()
|
| /u-boot/arch/arm/mach-uniphier/ |
| A D | board_late_init.c | 74 ret = env_set_hex(env, gd->ram_base + offset); in uniphier_set_env_addr()
|
| /u-boot/board/xilinx/common/ |
| A D | board.c | 413 phys_size_t bootm_size = gd->ram_top - gd->ram_base; in board_late_init_xilinx() 419 ret |= env_set_hex("scriptaddr", gd->ram_base + scriptaddr); in board_late_init_xilinx() 427 ret |= env_set_addr("bootm_low", (void *)gd->ram_base); in board_late_init_xilinx() 644 lmb_add(&lmb, gd->ram_base, gd->ram_size); in board_get_usable_ram_top()
|