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

/u-boot/cmd/
H A Dcbfs.c17 uintptr_t end_of_rom = 0xffffffff; local
25 end_of_rom = hextoul(argv[1], &ep);
31 if (file_cbfs_init(end_of_rom)) {
/u-boot/fs/cbfs/
H A Dcbfs.c261 * @end_of_rom: Address of the last byte of the ROM (typically 0xffffffff)
264 static int file_cbfs_load_header(struct cbfs_priv *priv, ulong end_of_rom) argument
266 int offset = *(u32 *)(end_of_rom - 3);
269 ret = load_header(priv, end_of_rom + offset + 1);
272 priv->start = (void *)(end_of_rom + 1 - priv->header.rom_size);
296 static int cbfs_init(struct cbfs_priv *priv, ulong end_of_rom) argument
300 ret = file_cbfs_load_header(priv, end_of_rom);
313 int file_cbfs_init(ulong end_of_rom) argument
315 return cbfs_init(&cbfs_s, end_of_rom);
461 int file_cbfs_find_uncached(ulong end_of_rom, cons argument
[all...]
/u-boot/include/
H A Dcbfs.h196 * @end_of_rom: Points to the end of the ROM the CBFS should be read from
199 int file_cbfs_init(ulong end_of_rom);
278 * @end_of_rom: Points to the end of the ROM the CBFS should be read from
283 int file_cbfs_find_uncached(ulong end_of_rom, const char *name,

Completed in 101 milliseconds