Home
last modified time | relevance | path

Searched refs:rom_size (Results 1 – 5 of 5) sorted by relevance

/external/u-boot/fs/cbfs/
Dcbfs.c45 dest->rom_size = be32_to_cpu(src->rom_size); in swap_header()
176 header->rom_size - header->boot_block_size) { in file_cbfs_load_header()
191 start_of_rom = (u8 *)(end_of_rom + 1 - cbfs_header.rom_size); in file_cbfs_init()
194 cbfs_header.rom_size, cbfs_header.align); in file_cbfs_init()
267 start = (u8 *)(end_of_rom + 1 - cbfs_header.rom_size); in file_cbfs_find_uncached()
268 size = cbfs_header.rom_size; in file_cbfs_find_uncached()
/external/u-boot/drivers/pci/
Dpci_rom.c156 unsigned int rom_size; in pci_rom_load() local
175 rom_size = rom_header->size * 512; in pci_rom_load()
180 target = (void *)malloc(rom_size); in pci_rom_load()
189 rom_header, target, rom_size); in pci_rom_load()
190 memcpy(target, rom_header, rom_size); in pci_rom_load()
191 if (memcmp(target, rom_header, rom_size)) { in pci_rom_load()
/external/u-boot/tools/
Difdtool.c824 int rom_size = -1; in main() local
897 rom_size = strtol(optarg, NULL, 0); in main()
898 debug("ROM size %d\n", rom_size); in main()
985 if (create && rom_size == -1) { in main()
1027 if (rom_size == -1) in main()
1028 rom_size = size; in main()
1030 image = malloc(rom_size); in main()
1036 memset(image, '\xff', rom_size); in main()
1041 if (size != rom_size) { in main()
1042 debug("ROM size changed to %d bytes\n", rom_size); in main()
[all …]
/external/u-boot/cmd/
Dcbfs.c185 printf("ROM size: %#x\n", header->rom_size); in do_cbfs_fsinfo()
188 header->rom_size - header->boot_block_size - header->offset); in do_cbfs_fsinfo()
/external/u-boot/include/
Dcbfs.h36 u32 rom_size; member