Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/fs/cbfs/
H A Dcbfs.c167 static int file_cbfs_load_header(uintptr_t end_of_rom, in file_cbfs_load_header() argument
173 *(u32 *)(end_of_rom - 3); in file_cbfs_load_header()
184 void file_cbfs_init(uintptr_t end_of_rom) in file_cbfs_init() argument
189 if (file_cbfs_load_header(end_of_rom, &cbfs_header)) in file_cbfs_init()
192 start_of_rom = (u8 *)(end_of_rom + 1 - cbfs_header.rom_size); in file_cbfs_init()
257 const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom, in file_cbfs_find_uncached() argument
265 if (file_cbfs_load_header(end_of_rom, &cbfs_header)) in file_cbfs_find_uncached()
268 start = (u8 *)(end_of_rom + 1 - cbfs_header.rom_size); in file_cbfs_find_uncached()
/OK3568_Linux_fs/u-boot/cmd/
H A Dcbfs.c17 uintptr_t end_of_rom = 0xffffffff; in do_cbfs_init() local
25 end_of_rom = (int)simple_strtoul(argv[1], &ep, 16); in do_cbfs_init()
31 file_cbfs_init(end_of_rom); in do_cbfs_init()
/OK3568_Linux_fs/u-boot/include/
H A Dcbfs.h78 void file_cbfs_init(uintptr_t end_of_rom);
125 const struct cbfs_cachenode *file_cbfs_find_uncached(uintptr_t end_of_rom,