Home
last modified time | relevance | path

Searched refs:ram_base (Results 1 – 7 of 7) sorted by relevance

/rk3399_rockchip-uboot/test/py/
H A Du_boot_utils.py203 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
239 return ram_base
H A DREADME.md354 `u_boot_console.config.ram_base`.
/rk3399_rockchip-uboot/test/py/tests/
H A Dtest_md.py14 ram_base = u_boot_utils.find_ram_base(u_boot_console)
15 addr = '%08x' % ram_base
30 ram_base = u_boot_utils.find_ram_base(u_boot_console)
31 addr_base = '%08x' % ram_base
33 addr_repeat = '%08x' % (ram_base + (words * 4))
/rk3399_rockchip-uboot/lib/efi/
H A Defi_app.c31 return global_priv->ram_base; in efi_get_ram_base()
66 priv->ram_base = (ulong)efi_malloc(priv, CONFIG_EFI_RAM_SIZE, in setup_memory()
68 if (!priv->ram_base) in setup_memory()
72 priv->ram_base = addr; in setup_memory()
84 efi_free(priv, (void *)priv->ram_base); in free_memory()
86 boot->free_pages(priv->ram_base, gd->ram_size >> 12); in free_memory()
/rk3399_rockchip-uboot/board/xilinx/microblaze-generic/
H A Dmicroblaze-generic.c26 ulong ram_base; variable
30 gd->bd->bi_dram[0].start = ram_base; in dram_init_banksize()
54 ram_base = addr; in dram_init()
/rk3399_rockchip-uboot/common/
H A Dimage-android.c421 ulong blkstart, void *ram_base) in image_load() argument
452 ram_base = hdr->vendor_boot_buf; in image_load()
460 ram_base = 0; in image_load()
491 ram_base = hdr->init_boot_buf; in image_load()
499 ram_base = 0; in image_load()
552 ram_base = hdr->vendor_boot_buf; in image_load()
560 ram_base = 0; in image_load()
630 if (ram_base) { in image_load()
631 memcpy(buffer, (char *)((ulong)ram_base + bsoffs), length); in image_load()
664 static int images_load_verify(struct andr_img_hdr *hdr, ulong part_start, void *ram_base) in images_load_verify() argument
[all …]
/rk3399_rockchip-uboot/include/
H A Defi.h312 unsigned long ram_base; member