Home
last modified time | relevance | path

Searched refs:end_of_rom (Results 1 – 3 of 3) sorted by relevance

/external/u-boot/fs/cbfs/
Dcbfs.c166 static int file_cbfs_load_header(uintptr_t end_of_rom, in file_cbfs_load_header() argument
170 int32_t offset = *(u32 *)(end_of_rom - 3); in file_cbfs_load_header()
172 header_in_rom = (struct cbfs_header *)(end_of_rom + offset + 1); in file_cbfs_load_header()
183 void file_cbfs_init(uintptr_t end_of_rom) in file_cbfs_init() argument
188 if (file_cbfs_load_header(end_of_rom, &cbfs_header)) in file_cbfs_init()
191 start_of_rom = (u8 *)(end_of_rom + 1 - cbfs_header.rom_size); in file_cbfs_init()
256 const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom, in file_cbfs_find_uncached() argument
264 if (file_cbfs_load_header(end_of_rom, &cbfs_header)) in file_cbfs_find_uncached()
267 start = (u8 *)(end_of_rom + 1 - cbfs_header.rom_size); in file_cbfs_find_uncached()
/external/u-boot/cmd/
Dcbfs.c16 uintptr_t end_of_rom = 0xffffffff; in do_cbfs_init() local
24 end_of_rom = simple_strtoul(argv[1], &ep, 16); in do_cbfs_init()
30 file_cbfs_init(end_of_rom); in do_cbfs_init()
/external/u-boot/include/
Dcbfs.h77 void file_cbfs_init(uintptr_t end_of_rom);
124 const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,