Lines Matching refs:splash_location
64 static int splash_storage_read_raw(struct splash_location *location, in splash_storage_read_raw()
85 static int splash_load_raw(struct splash_location *location, u32 bmp_load_addr) in splash_load_raw()
112 static int splash_select_fs_dev(struct splash_location *location) in splash_select_fs_dev()
180 static int splash_mount_ubifs(struct splash_location *location) in splash_mount_ubifs()
201 static inline int splash_mount_ubifs(struct splash_location *location) in splash_mount_ubifs()
216 static int splash_load_fs(struct splash_location *location, u32 bmp_load_addr) in splash_load_fs()
280 static struct splash_location *select_splash_location( in select_splash_location()
281 struct splash_location *locations, uint size) in select_splash_location()
303 static int splash_load_fit(struct splash_location *location, u32 bmp_load_addr) in splash_load_fit()
385 int splash_source_load(struct splash_location *locations, uint size) in splash_source_load()
387 struct splash_location *splash_location; in splash_source_load() local
401 splash_location = select_splash_location(locations, size); in splash_source_load()
402 if (!splash_location) in splash_source_load()
405 if (splash_location->flags == SPLASH_STORAGE_RAW) in splash_source_load()
406 return splash_load_raw(splash_location, bmp_load_addr); in splash_source_load()
407 else if (splash_location->flags == SPLASH_STORAGE_FS) in splash_source_load()
408 return splash_load_fs(splash_location, bmp_load_addr); in splash_source_load()
410 else if (splash_location->flags == SPLASH_STORAGE_FIT) in splash_source_load()
411 return splash_load_fit(splash_location, bmp_load_addr); in splash_source_load()