]> git.sur5r.net Git - u-boot/blobdiff - include/splash.h
Merge branch 'master' of git://git.denx.de/u-boot-video
[u-boot] / include / splash.h
index 4dbf754ace94052e4540692e78ee676d95c77531..7ae7a686888c8e94b4051e38789ee3b48adce098 100644 (file)
 
 #ifndef _SPLASH_H_
 #define _SPLASH_H_
+
 #include <errno.h>
 
+enum splash_storage {
+       SPLASH_STORAGE_NAND,
+       SPLASH_STORAGE_SF,
+};
+
+struct splash_location {
+       char *name;
+       enum splash_storage storage;
+       u32 offset;     /* offset from start of storage */
+};
+
+int splash_source_load(struct splash_location *locations, uint size);
 int splash_screen_prepare(void);
 
 #ifdef CONFIG_SPLASH_SCREEN_ALIGN