video: Add the Cantoraone decorative font

This font is a little more ornate than normal. Example uses are on security
screens where a feeling of formality is required.

Signed-off-by: Simon Glass <sjg@chromium.org>
diff --git a/drivers/video/console_truetype.c b/drivers/video/console_truetype.c
index 405e065..c249f04 100644
--- a/drivers/video/console_truetype.c
+++ b/drivers/video/console_truetype.c
@@ -447,6 +447,7 @@
 FONT_DECL(nimbus_sans_l_regular);
 FONT_DECL(ankacoder_c75_r);
 FONT_DECL(rufscript010);
+FONT_DECL(cantoraone_regular);
 
 static struct font_info font_table[] = {
 #ifdef CONFIG_CONSOLE_TRUETYPE_NIMBUS
@@ -458,6 +459,9 @@
 #ifdef CONFIG_CONSOLE_TRUETYPE_RUFSCRIPT
 	FONT_ENTRY(rufscript010),
 #endif
+#ifdef CONFIG_CONSOLE_TRUETYPE_CANTORAONE
+	FONT_ENTRY(cantoraone_regular),
+#endif
 	{} /* sentinel */
 };
 
diff --git a/drivers/video/fonts/Kconfig b/drivers/video/fonts/Kconfig
index d3bf742..3f1398d 100644
--- a/drivers/video/fonts/Kconfig
+++ b/drivers/video/fonts/Kconfig
@@ -38,4 +38,14 @@
 	  License: GPL with font exception
 	  http://www.gnu.org/copyleft/gpl.html
 
+config CONSOLE_TRUETYPE_CANTORAONE
+	bool "Cantoraone"
+	depends on CONSOLE_TRUETYPE
+	help
+	  Cantora is a friendly semi formal, semi condensed, semi sans-serif
+	  with a hint of handwriting. Perfect for headlines.
+	  From https://fontlibrary.org/en/font/cantora
+	  License: SIL Open Font Licence
+	  http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
+
 endmenu
diff --git a/drivers/video/fonts/Makefile b/drivers/video/fonts/Makefile
index a3f6ea3..46137f4 100644
--- a/drivers/video/fonts/Makefile
+++ b/drivers/video/fonts/Makefile
@@ -8,3 +8,4 @@
 obj-$(CONFIG_CONSOLE_TRUETYPE_NIMBUS) += nimbus_sans_l_regular.o
 obj-$(CONFIG_CONSOLE_TRUETYPE_ANKACODER) += ankacoder_c75_r.o
 obj-$(CONFIG_CONSOLE_TRUETYPE_RUFSCRIPT) += rufscript010.o
+obj-$(CONFIG_CONSOLE_TRUETYPE_CANTORAONE) += cantoraone_regular.o
diff --git a/drivers/video/fonts/cantoraone_regular.ttf b/drivers/video/fonts/cantoraone_regular.ttf
new file mode 100644
index 0000000..57446a2
--- /dev/null
+++ b/drivers/video/fonts/cantoraone_regular.ttf
Binary files differ