In 16 bpp mode, the new IPEK01 board only requires swapping of D16 words
for D32 accesses due to the diffferent connecting to the GDC bus. This
patch introduces the configuration option VIDEO_FB_16BPP_WORD_SWAP,
which should be set for all board using the mb862xx in 16 bpp mode. For
the IPEK01, VIDEO_FB_16BPP_PIXEL_SWAP should not be set.

Signed-off-by: Wolfgang Grandegger <w...@grandegger.com>
---
 drivers/video/cfb_console.c |    2 +-
 include/configs/lwmon5.h    |    1 +
 include/configs/socrates.h  |    1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

Index: u-boot-mainline/drivers/video/cfb_console.c
===================================================================
--- u-boot-mainline.orig/drivers/video/cfb_console.c    2009-10-19 
13:17:17.466553428 +0200
+++ u-boot-mainline/drivers/video/cfb_console.c 2009-10-19 13:17:17.495553669 
+0200
@@ -321,7 +321,7 @@
 #else
 #define SWAP16(x)       (x)
 #define SWAP32(x)       (x)
-#if defined(VIDEO_FB_16BPP_PIXEL_SWAP)
+#if defined(VIDEO_FB_16BPP_WORD_SWAP)
 #define SHORTSWAP32(x)  ( ((x) >> 16) | ((x) << 16) )
 #else
 #define SHORTSWAP32(x)  (x)
Index: u-boot-mainline/include/configs/lwmon5.h
===================================================================
--- u-boot-mainline.orig/include/configs/lwmon5.h       2009-10-19 
13:17:17.471552467 +0200
+++ u-boot-mainline/include/configs/lwmon5.h    2009-10-19 13:17:17.496553812 
+0200
@@ -349,6 +349,7 @@
 #define CONFIG_VIDEO_LOGO
 #define CONFIG_CONSOLE_EXTRA_INFO
 #define VIDEO_FB_16BPP_PIXEL_SWAP
+#define VIDEO_FB_16BPP_WORD_SWAP
 
 #define CONFIG_VGA_AS_SINGLE_DEVICE
 #define CONFIG_VIDEO_SW_CURSOR
Index: u-boot-mainline/include/configs/socrates.h
===================================================================
--- u-boot-mainline.orig/include/configs/socrates.h     2009-10-19 
13:17:17.474552618 +0200
+++ u-boot-mainline/include/configs/socrates.h  2009-10-19 13:17:17.497553676 
+0200
@@ -204,6 +204,7 @@
 #define CONFIG_VIDEO_BMP_LOGO
 #define CONFIG_CONSOLE_EXTRA_INFO
 #define VIDEO_FB_16BPP_PIXEL_SWAP
+#define VIDEO_FB_16BPP_WORD_SWAP
 #define CONFIG_VGA_AS_SINGLE_DEVICE
 #define CONFIG_SYS_CONSOLE_IS_IN_ENV
 #define CONFIG_VIDEO_SW_CURSOR

_______________________________________________
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to