2 * linux/drivers/video/fonts.c -- `Soft' font definitions
4 * Created 1995 by Geert Uytterhoeven
5 * Rewritten 1998 by Martin Mares <mj@ucw.cz>
7 * 2001 - Documented with DocBook
8 * - Brad Douglas <brad@neruo.com>
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License. See the file COPYING in the main directory of this archive
15 #include <linux/config.h>
16 #include <linux/module.h>
17 #include <linux/types.h>
18 #include <linux/string.h>
19 #if defined(__mc68000__) || defined(CONFIG_APUS)
20 #include <asm/setup.h>
22 #include <linux/font.h>
26 static struct font_desc
*fonts
[] = {
27 #ifdef CONFIG_FONT_8x8
31 #ifdef CONFIG_FONT_8x16
35 #ifdef CONFIG_FONT_6x11
39 #ifdef CONFIG_FONT_7x14
43 #ifdef CONFIG_FONT_SUN8x16
47 #ifdef CONFIG_FONT_SUN12x22
51 #ifdef CONFIG_FONT_10x18
55 #ifdef CONFIG_FONT_ACORN_8x8
59 #ifdef CONFIG_FONT_PEARL_8x8
63 #ifdef CONFIG_FONT_MINI_4x6
69 #define num_fonts (sizeof(fonts)/sizeof(*fonts))
72 #error No fonts configured.
77 * find_font - find a font
78 * @name: string name of a font
80 * Find a specified font with string name @name.
82 * Returns %NULL if no font found, or a pointer to the
87 struct font_desc
*find_font(char *name
)
91 for (i
= 0; i
< num_fonts
; i
++)
92 if (!strcmp(fonts
[i
]->name
, name
))
99 * get_default_font - get default font
100 * @xres: screen size of X
101 * @yres: screen size of Y
103 * Get the default font for a specified screen size.
104 * Dimensions are in pixels.
106 * Returns %NULL if no font is found, or a pointer to the
111 struct font_desc
*get_default_font(int xres
, int yres
)
114 struct font_desc
*f
, *g
;
118 for(i
=0; i
<num_fonts
; i
++) {
121 #if defined(__mc68000__) || defined(CONFIG_APUS)
122 #ifdef CONFIG_FONT_PEARL_8x8
123 if (MACH_IS_AMIGA
&& f
->idx
== PEARL8x8_IDX
)
126 #ifdef CONFIG_FONT_6x11
127 if (MACH_IS_MAC
&& xres
< 640 && f
->idx
== VGA6x11_IDX
)
131 if ((yres
< 400) == (f
->height
<= 8))
141 EXPORT_SYMBOL(fonts
);
142 EXPORT_SYMBOL(find_font
);
143 EXPORT_SYMBOL(get_default_font
);
145 MODULE_AUTHOR("James Simmons <jsimmons@users.sf.net>");
146 MODULE_DESCRIPTION("Console Fonts");
147 MODULE_LICENSE("GPL");