• Home
  • Raw
  • Download

Lines Matching refs:splash_location

63 static int splash_storage_read_raw(struct splash_location *location,  in splash_storage_read_raw()
84 static int splash_load_raw(struct splash_location *location, u32 bmp_load_addr) in splash_load_raw()
111 static int splash_select_fs_dev(struct splash_location *location) in splash_select_fs_dev()
179 static int splash_mount_ubifs(struct splash_location *location) in splash_mount_ubifs()
200 static inline int splash_mount_ubifs(struct splash_location *location) in splash_mount_ubifs()
215 static int splash_load_fs(struct splash_location *location, u32 bmp_load_addr) in splash_load_fs()
279 static struct splash_location *select_splash_location( in select_splash_location()
280 struct splash_location *locations, uint size) in select_splash_location()
302 static int splash_load_fit(struct splash_location *location, u32 bmp_load_addr) in splash_load_fit()
384 int splash_source_load(struct splash_location *locations, uint size) in splash_source_load()
386 struct splash_location *splash_location; in splash_source_load() local
400 splash_location = select_splash_location(locations, size); in splash_source_load()
401 if (!splash_location) in splash_source_load()
404 if (splash_location->flags == SPLASH_STORAGE_RAW) in splash_source_load()
405 return splash_load_raw(splash_location, bmp_load_addr); in splash_source_load()
406 else if (splash_location->flags == SPLASH_STORAGE_FS) in splash_source_load()
407 return splash_load_fs(splash_location, bmp_load_addr); in splash_source_load()
409 else if (splash_location->flags == SPLASH_STORAGE_FIT) in splash_source_load()
410 return splash_load_fit(splash_location, bmp_load_addr); in splash_source_load()