Searched refs:total_size (Results 1 - 25 of 74) sorted by relevance

123

/u-boot/arch/arm/include/asm/arch-tegra/
H A Dcboot.h19 ulong cboot_get_usable_ram_top(ulong total_size);
37 static inline ulong cboot_get_usable_ram_top(ulong total_size) argument
/u-boot/arch/x86/include/asm/
H A Dmrc_common.h50 phys_size_t mrc_common_board_get_usable_ram_top(phys_size_t total_size);
H A Du-boot-x86.h80 phys_addr_t board_get_usable_ram_top(phys_size_t total_size);
/u-boot/arch/riscv/cpu/jh7110/
H A Ddram.c23 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/arch/riscv/cpu/fu740/
H A Ddram.c22 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/arch/riscv/cpu/fu540/
H A Ddram.c23 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/include/
H A Ddt_table.h21 u32 total_size; /* includes dt_table_header + all dt_table_entry member in struct:dt_table_header
/u-boot/arch/x86/lib/fsp1/
H A Dfsp_dram.c37 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/arch/x86/cpu/efi/
H A Dsdram.c14 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/board/imgtec/boston/
H A Dddr.c26 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/arch/arm/mach-stm32mp/
H A Ddram_init.c46 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
52 if (!total_size)
66 size = ALIGN(SZ_8M + CONFIG_SYS_MALLOC_LEN + total_size, MMU_SECTION_SIZE),
/u-boot/arch/x86/cpu/slimbootloader/
H A Dsdram.c48 * @total_size: The memory size that u-boot occupies
51 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
78 if (addr_end < total_size)
82 addr_end = rounddown(addr_end - total_size, SZ_4K);
84 ram_top = (ulong)addr_end + total_size;
/u-boot/common/
H A Dbloblist.c182 if (new_alloced > hdr->total_size) {
185 hdr->used_size, hdr->total_size);
301 if (new_alloced > hdr->total_size) {
304 hdr->used_size, hdr->total_size);
369 hdr->total_size = size;
387 if (!hdr->total_size || (size && hdr->total_size > size))
389 if (hdr->used_size > hdr->total_size)
431 return hdr->total_size;
439 *tsizep = hdr->total_size;
[all...]
/u-boot/include/dm/
H A Droot.h22 * @total_size: All data
39 int total_size; member in struct:dm_stats
/u-boot/lib/efi_loader/
H A Defi_dt_fixup.c146 size_t total_size; local
165 total_size = fdt_totalsize(dtb);
166 if (required_size < total_size)
167 required_size = total_size;
/u-boot/arch/arm/mach-omap2/
H A Dhwinit-common.c283 size, total_size = 0, trap_size = 0, trap_start = 0; local
312 total_size = (sdram_end - sdram_start) - (trap_size);
314 total_size = sdram_end - sdram_start;
316 return total_size;
/u-boot/test/dm/
H A Ddevres.c159 ut_asserteq(TEST_DEVRES_SIZE, stats.total_size);
165 ut_asserteq(TEST_DEVRES_SIZE + TEST_DEVRES_SIZE3, stats.total_size);
173 stats.total_size);
179 ut_asserteq(TEST_DEVRES_SIZE, stats.total_size);
/u-boot/arch/x86/cpu/coreboot/
H A Dsdram.c30 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
49 if (end - start < total_size)
/u-boot/tools/binman/etype/
H A Dx509_cert.py40 self.total_size = None
128 total_size=self.total_size,
/u-boot/drivers/mtd/
H A Dstm32_flash.c36 unsigned long total_size = 0; local
49 total_size += flash_info[i].size;
52 return total_size;
/u-boot/lib/libavb/
H A Davb_cmdline.c277 size_t n, total_size = 0; local
282 total_size += slot_data->vbmeta_images[n].vbmeta_size;
287 slot_data, "androidboot.vbmeta.size", total_size) ||
300 size_t n, total_size = 0; local
305 total_size += slot_data->vbmeta_images[n].vbmeta_size;
310 slot_data, "androidboot.vbmeta.size", total_size) ||
/u-boot/tools/
H A Dmtk_image.h34 uint32_t total_size; member in struct:brom_layout_header
89 uint32_t total_size; member in struct:gfh_file_info
/u-boot/arch/mips/mach-octeon/
H A Ddram.c80 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/arch/mips/mach-jz47xx/jz4780/
H A Djz4780.c78 phys_addr_t board_get_usable_ram_top(phys_size_t total_size) argument
/u-boot/drivers/spi/
H A Dmt7621_spi.c226 int total_size = bitlen >> 3; local
230 total_size, flags);
251 ret = mt7621_spi_read(rs, din, total_size);
253 ret = mt7621_spi_write(rs, dout, total_size);

Completed in 137 milliseconds

123