2 * `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/module.h>
16 #include <linux/types.h>
17 #include <linux/string.h>
18 #if defined(__mc68000__)
19 #include <asm/setup.h>
21 #include <linux/font.h>
25 static const struct font_desc
*fonts
[] = {
26 #ifdef CONFIG_FONT_8x8
30 #ifdef CONFIG_FONT_8x16
34 #ifdef CONFIG_FONT_6x11
38 #ifdef CONFIG_FONT_7x14
42 #ifdef CONFIG_FONT_SUN8x16
46 #ifdef CONFIG_FONT_SUN12x22
50 #ifdef CONFIG_FONT_10x18
54 #ifdef CONFIG_FONT_ACORN_8x8
58 #ifdef CONFIG_FONT_PEARL_8x8
62 #ifdef CONFIG_FONT_MINI_4x6
66 #ifdef CONFIG_FONT_6x10
70 #ifdef CONFIG_FONT_TER16x32
76 #define num_fonts ARRAY_SIZE(fonts)
79 #error No fonts configured.
84 * find_font - find a font
85 * @name: string name of a font
87 * Find a specified font with string name @name.
89 * Returns %NULL if no font found, or a pointer to the
94 const struct font_desc
*find_font(const char *name
)
98 for (i
= 0; i
< num_fonts
; i
++)
99 if (!strcmp(fonts
[i
]->name
, name
))
106 * get_default_font - get default font
107 * @xres: screen size of X
108 * @yres: screen size of Y
109 * @font_w: bit array of supported widths (1 - 32)
110 * @font_h: bit array of supported heights (1 - 32)
112 * Get the default font for a specified screen size.
113 * Dimensions are in pixels.
115 * Returns %NULL if no font is found, or a pointer to the
120 const struct font_desc
*get_default_font(int xres
, int yres
, u32 font_w
,
124 const struct font_desc
*f
, *g
;
128 for(i
=0; i
<num_fonts
; i
++) {
131 #if defined(__mc68000__)
132 #ifdef CONFIG_FONT_PEARL_8x8
133 if (MACH_IS_AMIGA
&& f
->idx
== PEARL8x8_IDX
)
136 #ifdef CONFIG_FONT_6x11
137 if (MACH_IS_MAC
&& xres
< 640 && f
->idx
== VGA6x11_IDX
)
141 if ((yres
< 400) == (f
->height
<= 8))
144 if ((font_w
& (1 << (f
->width
- 1))) &&
145 (font_h
& (1 << (f
->height
- 1))))
156 EXPORT_SYMBOL(find_font
);
157 EXPORT_SYMBOL(get_default_font
);
159 MODULE_AUTHOR("James Simmons <jsimmons@users.sf.net>");
160 MODULE_DESCRIPTION("Console Fonts");
161 MODULE_LICENSE("GPL");