summaryrefslogtreecommitdiffstats
path: root/board/bf533-stamp/video.h
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-04-18 20:44:11 -0400
committerMike Frysinger <vapier@gentoo.org>2009-01-28 13:26:13 -0500
commitfee531eeefc3b5f2c63c7fe27b9f55d924c59c26 (patch)
treef51930bf1db60eb3c3d642afb1580d92621b13d2 /board/bf533-stamp/video.h
parenta750d038f2548d846ea1e046d873dc932d041319 (diff)
downloadtalos-obmc-uboot-fee531eeefc3b5f2c63c7fe27b9f55d924c59c26.tar.gz
talos-obmc-uboot-fee531eeefc3b5f2c63c7fe27b9f55d924c59c26.zip
Blackfin: resurrect BF533-STAMP video splash driver
This video driver used to live in the Blackfin cpu directory, but it was lost during the unification process. This brings it back. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/bf533-stamp/video.h')
-rw-r--r--board/bf533-stamp/video.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/board/bf533-stamp/video.h b/board/bf533-stamp/video.h
new file mode 100644
index 0000000000..80837e2323
--- /dev/null
+++ b/board/bf533-stamp/video.h
@@ -0,0 +1,25 @@
+#include <video_logo.h>
+#define write_dest_byte(val) {*dest++=val;}
+#define BLACK (0x01800180) /* black pixel pattern */
+#define BLUE (0x296E29F0) /* blue pixel pattern */
+#define RED (0x51F0515A) /* red pixel pattern */
+#define MAGENTA (0x6ADE6ACA) /* magenta pixel pattern */
+#define GREEN (0x91229136) /* green pixel pattern */
+#define CYAN (0xAA10AAA6) /* cyan pixel pattern */
+#define YELLOW (0xD292D210) /* yellow pixel pattern */
+#define WHITE (0xFE80FE80) /* white pixel pattern */
+
+#define true 1
+#define false 0
+
+typedef struct {
+ unsigned int sav;
+ unsigned int eav;
+} system_code_type;
+
+const system_code_type system_code_map[] = {
+ { 0xFF000080, 0xFF00009D },
+ { 0xFF0000AB, 0xFF0000B6 },
+ { 0xFF0000C7, 0xFF0000DA },
+ { 0xFF0000EC, 0xFF0000F1 },
+};
OpenPOWER on IntegriCloud