/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 | 254 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 255 addr = '%08x' % ram_base 267 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 268 addr = '%08x' % ram_base 279 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 280 addr = '%08x' % ram_base 316 ram_base = u_boot_utils.find_ram_base(state_test_env.u_boot_console) 317 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 | 203 ram_base = None variable 221 global ram_base 224 if ram_base == -1: 226 if ram_base is not None: 227 return ram_base 233 ram_base = int(l.split('=')[1].strip(), 16) 235 if ram_base is None: 236 ram_base = -1 244 ram_base += 1024 * 1024 * 2 246 return ram_base
|
/u-boot/lib/efi/ |
A D | efi_app.c | 36 return global_priv->ram_base; in efi_get_ram_base() 71 priv->ram_base = (ulong)efi_malloc(priv, CONFIG_EFI_RAM_SIZE, in setup_memory() 73 if (!priv->ram_base) in setup_memory() 77 priv->ram_base = addr; in setup_memory() 89 efi_free(priv, (void *)priv->ram_base); in free_memory() 91 boot->free_pages(priv->ram_base, gd->ram_size >> 12); in free_memory()
|
/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/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/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/mt8512/ |
A D | init.c | 40 gd->bd->bi_dram[0].start = gd->ram_base; in dram_init_banksize()
|
/u-boot/arch/riscv/lib/ |
A D | image.c | 53 *relocated_addr = gd->ram_base + lhdr->text_offset; in booti_setup()
|
/u-boot/arch/powerpc/cpu/mpc86xx/ |
A D | fdt.c | 33 fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size); in ft_cpu_setup()
|
A D | traps.c | 34 #define END_OF_MEM (gd->ram_base + get_effective_memsize())
|
/u-boot/arch/arm/mach-stm32mp/ |
A D | dram_init.c | 49 lmb_add(&lmb, gd->ram_base, gd->ram_size); in board_get_usable_ram_top()
|
/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-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-uniphier/ |
A D | board_late_init.c | 74 ret = env_set_hex(env, gd->ram_base + offset); in uniphier_set_env_addr()
|
/u-boot/arch/arm/mach-rockchip/ |
A D | spl.c | 149 gd->ram_top = gd->ram_base + get_effective_memsize(); in board_init_f()
|
/u-boot/arch/powerpc/cpu/mpc83xx/ |
A D | fdt.c | 125 fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size); in ft_cpu_setup()
|
A D | traps.c | 27 #define END_OF_MEM (gd->ram_base + gd->ram_size)
|
/u-boot/cmd/ |
A D | booti.c | 59 if (dest < gd->ram_base || dest > gd->ram_top) { in booti_start()
|