]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
video: Support VIDEO_X2R10G10B10 in truetype console
authorJanne Grunau <j@jannau.net>
Wed, 17 Jan 2024 22:27:34 +0000 (23:27 +0100)
committerTom Rini <trini@konsulko.com>
Mon, 29 Jan 2024 19:53:06 +0000 (14:53 -0500)
Without explicit support for VIDEO_X2R10G10B10 VIDEO_X8R8G8B8 white
will be rendered as cyan-ish. The conversion leaves to lowest 2 bits
unset for more compact code.

Signed-off-by: Janne Grunau <j@jannau.net>
drivers/video/console_truetype.c

index 14fb81e9563cc6447dc749a0040d7727597f8be1..547e5a8d9cf1c63a3c4b1ace903c5784bdd12793 100644 (file)
@@ -397,7 +397,10 @@ static int console_truetype_putc_xy(struct udevice *dev, uint x, uint y,
 
                                        if (vid_priv->colour_bg)
                                                val = 255 - val;
-                                       out = val | val << 8 | val << 16;
+                                       if (vid_priv->format == VIDEO_X2R10G10B10)
+                                               out = val << 2 | val << 12 | val << 22;
+                                       else
+                                               out = val | val << 8 | val << 16;
                                        if (vid_priv->colour_fg)
                                                *dst++ |= out;
                                        else
@@ -911,7 +914,10 @@ static int truetype_set_cursor_visible(struct udevice *dev, bool visible,
                                for (i = 0; i < width; i++) {
                                        int out;
 
-                                       out = val | val << 8 | val << 16;
+                                       if (vid_priv->format == VIDEO_X2R10G10B10)
+                                               out = val << 2 | val << 12 | val << 22;
+                                       else
+                                               out = val | val << 8 | val << 16;
                                        if (vid_priv->colour_fg)
                                                *dst++ |= out;
                                        else