Lines Matching refs:info
19 struct ubispl_info info; in spl_ubi_load_image() local
27 info.read = nand_spl_read_block; in spl_ubi_load_image()
28 info.peb_size = CONFIG_SYS_NAND_BLOCK_SIZE; in spl_ubi_load_image()
33 info.read = onenand_spl_read_block; in spl_ubi_load_image()
34 info.peb_size = CONFIG_SYS_ONENAND_BLOCK_SIZE; in spl_ubi_load_image()
40 info.ubi = (struct ubi_scan_info *)CONFIG_SPL_UBI_INFO_ADDR; in spl_ubi_load_image()
41 info.fastmap = IS_ENABLED(CONFIG_MTD_UBI_FASTMAP); in spl_ubi_load_image()
43 info.peb_offset = CONFIG_SPL_UBI_PEB_OFFSET; in spl_ubi_load_image()
44 info.vid_offset = CONFIG_SPL_UBI_VID_OFFSET; in spl_ubi_load_image()
45 info.leb_start = CONFIG_SPL_UBI_LEB_START; in spl_ubi_load_image()
46 info.peb_count = CONFIG_SPL_UBI_MAX_PEBS - info.peb_offset; in spl_ubi_load_image()
55 ret = ubispl_load_volumes(&info, volumes, 2); in spl_ubi_load_image()
70 ret = ubispl_load_volumes(&info, volumes, 1); in spl_ubi_load_image()