video console: add 12x22 Sun font from linux

Modern mobile phones typically have high pixel density.
Bootmenu is hardly readable on those with 8x16 font.

Signed-off-by: Dzmitry Sankouski <dsankouski@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
diff --git a/include/video_font.h b/include/video_font.h
index 00310d0..f354d0c 100644
--- a/include/video_font.h
+++ b/include/video_font.h
@@ -15,6 +15,9 @@
 #if defined(CONFIG_VIDEO_FONT_8X16)
 #include <video_font_8x16.h>
 #endif
+#if defined(CONFIG_VIDEO_FONT_SUN12X22)
+#include <video_font_sun12x22.h>
+#endif
 
 static struct video_fontdata __maybe_unused fonts[] = {
 #if defined(CONFIG_VIDEO_FONT_8X16)
@@ -23,6 +26,9 @@
 #if defined(CONFIG_VIDEO_FONT_4X6)
 	FONT_ENTRY(4, 6, 4x6),
 #endif
+#if defined(CONFIG_VIDEO_FONT_SUN12X22)
+	FONT_ENTRY(12, 22, 12x22),
+#endif
 	{/* list terminator */}
 };