/linux-2.6.39/drivers/video/console/ |
D | Makefile | 6 font-objs := fonts.o 8 font-objs-$(CONFIG_FONT_SUN8x16) += font_sun8x16.o 9 font-objs-$(CONFIG_FONT_SUN12x22) += font_sun12x22.o 10 font-objs-$(CONFIG_FONT_8x8) += font_8x8.o 11 font-objs-$(CONFIG_FONT_8x16) += font_8x16.o 12 font-objs-$(CONFIG_FONT_6x11) += font_6x11.o 13 font-objs-$(CONFIG_FONT_7x14) += font_7x14.o 14 font-objs-$(CONFIG_FONT_10x18) += font_10x18.o 15 font-objs-$(CONFIG_FONT_PEARL_8x8) += font_pearl_8x8.o 16 font-objs-$(CONFIG_FONT_ACORN_8x8) += font_acorn_8x8.o [all …]
|
D | Kconfig | 148 bool "VGA 8x8 font" if FONTS 152 This is the "high resolution" font for the VGA frame buffer (the one 155 Note that this is a poor quality font. The VGA 8x16 font is quite a 162 bool "VGA 8x16 font" if FONTS 166 This is the "high resolution" font for the VGA frame buffer (the one 172 bool "Mac console 6x11 font (not supported by all drivers)" if FONTS 176 Small console font with Macintosh-style high-half glyphs. Some Mac 180 bool "console 7x14 font (not supported by all drivers)" if FONTS 183 Console font with characters just a bit smaller than the default. 184 If the standard 8x16 font is a little too big for you, say Y. [all …]
|
D | sticore.c | 128 .font_start_addr= STI_PTR(sti->font->raw), in sti_putc() 547 struct sti_cooked_font *font; in sti_select_font() local 552 if ((font = sti_select_fbfont(rom, font_name[index]))) in sti_select_font() 553 return font; in sti_select_font() 559 for (font = rom->font_start, i = font_index[index]; in sti_select_font() 560 font && (i > 0); in sti_select_font() 561 font = font->next_font, i--); in sti_select_font() 563 if (font) in sti_select_font() 564 return font; in sti_select_font() 626 struct sti_cooked_font *font; in sti_search_font() local [all …]
|
D | fbcon.c | 920 const struct font_desc *font = NULL; in fbcon_startup() local 988 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_startup() 989 font = get_default_font(info->var.xres, in fbcon_startup() 993 vc->vc_font.width = font->width; in fbcon_startup() 994 vc->vc_font.height = font->height; in fbcon_startup() 995 vc->vc_font.data = (void *)(p->fontdata = font->data); in fbcon_startup() 1057 const struct font_desc *font = NULL; in fbcon_init() local 1059 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_init() 1060 font = get_default_font(info->var.xres, in fbcon_init() 1064 vc->vc_font.width = font->width; in fbcon_init() [all …]
|
D | vgacon.c | 1253 static int vgacon_font_set(struct vc_data *c, struct console_font *font, unsigned flags) in vgacon_font_set() argument 1255 unsigned charcount = font->charcount; in vgacon_font_set() 1261 if (font->width != VGA_FONTWIDTH || in vgacon_font_set() 1265 rc = vgacon_do_font_op(&state, font->data, 1, charcount == 512); in vgacon_font_set() 1270 rc = vgacon_adjust_height(c, font->height); in vgacon_font_set() 1274 static int vgacon_font_get(struct vc_data *c, struct console_font *font) in vgacon_font_get() argument 1279 font->width = VGA_FONTWIDTH; in vgacon_font_get() 1280 font->height = c->vc_font.height; in vgacon_font_get() 1281 font->charcount = vga_512_chars ? 512 : 256; in vgacon_font_get() 1282 if (!font->data) in vgacon_font_get() [all …]
|
D | newport_con.c | 573 static int newport_font_set(struct vc_data *vc, struct console_font *font, unsigned flags) in newport_font_set() argument 575 return newport_set_font(vc->vc_num, font); in newport_font_set()
|
/linux-2.6.39/arch/sparc/kernel/ |
D | btext.c | 197 unsigned char *font = &vga_font[((unsigned int)c) * 16]; in draw_byte() local 203 draw_byte_32(font, (unsigned int *)base, rb); in draw_byte() 207 draw_byte_16(font, (unsigned int *)base, rb); in draw_byte() 210 draw_byte_8(font, (unsigned int *)base, rb); in draw_byte() 242 static void draw_byte_32(unsigned char *font, unsigned int *base, int rb) in draw_byte_32() argument 250 bits = *font++; in draw_byte_32() 263 static void draw_byte_16(unsigned char *font, unsigned int *base, int rb) in draw_byte_16() argument 272 bits = *font++; in draw_byte_16() 281 static void draw_byte_8(unsigned char *font, unsigned int *base, int rb) in draw_byte_8() argument 290 bits = *font++; in draw_byte_8()
|
/linux-2.6.39/arch/powerpc/kernel/ |
D | btext.c | 471 unsigned char *font = &vga_font[((unsigned int)c) * 16]; in draw_byte() local 477 draw_byte_32(font, (unsigned int *)base, rb); in draw_byte() 481 draw_byte_16(font, (unsigned int *)base, rb); in draw_byte() 484 draw_byte_8(font, (unsigned int *)base, rb); in draw_byte() 516 static void draw_byte_32(unsigned char *font, unsigned int *base, int rb) in draw_byte_32() argument 524 bits = *font++; in draw_byte_32() 537 static void draw_byte_16(unsigned char *font, unsigned int *base, int rb) in draw_byte_16() argument 546 bits = *font++; in draw_byte_16() 555 static void draw_byte_8(unsigned char *font, unsigned int *base, int rb) in draw_byte_8() argument 564 bits = *font++; in draw_byte_8()
|
/linux-2.6.39/arch/unicore32/boot/compressed/ |
D | Makefile | 20 $(obj)/font.c: $(srctree)/drivers/video/console/font_8x8.c 38 targets := vmlinux vmlinux.lds font.o font.c head.o misc.o \
|
/linux-2.6.39/arch/arm/boot/compressed/ |
D | Makefile | 27 OBJS += ll_char_wr.o font.o 88 font.o font.c head.o misc.o $(OBJS) 137 $(obj)/font.c: $(FONTC)
|
D | .gitignore | 1 font.c
|
/linux-2.6.39/drivers/usb/misc/sisusbvga/ |
D | sisusb_con.c | 1280 sisusbcon_font_set(struct vc_data *c, struct console_font *font, in sisusbcon_font_set() argument 1284 unsigned charcount = font->charcount; in sisusbcon_font_set() 1286 if (font->width != 8 || (charcount != 256 && charcount != 512)) in sisusbcon_font_set() 1309 memcpy(sisusb->font_backup, font->data, charcount * 32); in sisusbcon_font_set() 1311 sisusb->font_backup_height = font->height; in sisusbcon_font_set() 1317 return sisusbcon_do_font_op(sisusb, 1, 2, font->data, in sisusbcon_font_set() 1320 c, font->height, 1); in sisusbcon_font_set() 1325 sisusbcon_font_get(struct vc_data *c, struct console_font *font) in sisusbcon_font_get() argument 1334 font->width = 8; in sisusbcon_font_get() 1335 font->height = c->vc_font.height; in sisusbcon_font_get() [all …]
|
/linux-2.6.39/Documentation/fb/ |
D | pvr2fb.txt | 28 font:X - default font to use. All fonts are supported, including the 29 SUN12x22 font which is very nice at high resolutions.
|
D | tgafb.txt | 43 font:X - default font to use. All fonts are supported, including the 44 SUN12x22 font which is very nice at high resolutions.
|
D | fbcon.txt | 14 high resolutions, varying font types, display rotation, primitive multihead, 37 usually an 8x16 font. 77 1. fbcon=font:<name> 79 Select the initial font to use. The value 'name' can be any of the 83 Note, not all drivers can handle font with widths not divisible by 8,
|
/linux-2.6.39/Documentation/ |
D | unicode.txt | 12 characters to fonts. By downloading a single Unicode-to-font table, 14 the font as indicated. 26 In particular, ESC ( U is no longer "straight to font", since the font 28 permits for example the use of block graphics even with a Latin-1 font 44 hard-coded to map directly to the loaded font, bypassing the 113 Unicode practice these differences are considered font variants.
|
D | svga.txt | 25 EXTENDED_VGA - Standard 8-pixel font mode: 80x43 on EGA, 80x50 on VGA. 125 0x0f01 standard with 8-point font: 80x43 on EGA, 80x50 on VGA 126 0x0f02 VGA 80x43 (VGA switched to 350 scanlines with a 8-point font) 127 0x0f03 VGA 80x28 (standard VGA scans, but 14-point font) 129 0x0f05 VGA 80x30 (480 scans, 16-point font) 130 0x0f06 VGA 80x34 (480 scans, 14-point font) 131 0x0f07 VGA 80x60 (480 scans, 8-point font) 188 some useless logo using font download and then fail to reset the correct mode.
|
/linux-2.6.39/drivers/tty/vt/ |
D | vt.c | 3976 struct console_font font; in con_font_get() local 3984 font.data = kmalloc(max_font_size, GFP_KERNEL); in con_font_get() 3985 if (!font.data) in con_font_get() 3988 font.data = NULL; in con_font_get() 3992 rc = vc->vc_sw->con_font_get(vc, &font); in con_font_get() 4000 c = (font.width+7)/8 * 32 * font.charcount; in con_font_get() 4002 if (op->data && font.charcount > op->charcount) in con_font_get() 4005 if (font.width > op->width || font.height > op->height) in con_font_get() 4008 if (font.width != 8) in con_font_get() 4010 else if ((op->height && font.height > op->height) || in con_font_get() [all …]
|
/linux-2.6.39/drivers/video/ |
D | sticore.h | 56 #define sti_font_x(sti) (PTR_STI(sti->font)->width) 57 #define sti_font_y(sti) (PTR_STI(sti->font)->height) 334 struct sti_cooked_font *font; /* ptr to selected font (cooked) */ member
|
D | svgalib.c | 195 const u8 *font = map->data; in svga_settile() local 209 fb_writeb(font[i], fb + i * 4); in svga_settile() 213 font += map->height; in svga_settile()
|
D | arkfb.c | 134 const u8 *font = map->data; in arkfb_settile() local 149 fb_writeb(font[i], &fb[i * 4]); in arkfb_settile() 150 fb_writeb(font[i], &fb[i * 4 + (128 * 8)]); in arkfb_settile() 157 font += map->height; in arkfb_settile()
|
D | cg6.c | 197 u32 font; member 438 sbus_writel(val, &fbc->font); in cg6_imageblit() 463 sbus_writel(val, &fbc->font); in cg6_imageblit()
|
D | ffb.c | 295 u32 font; member 597 upa_writel(val, &fbc->font); in ffb_imageblit() 617 upa_writel(val, &fbc->font); in ffb_imageblit()
|
/linux-2.6.39/Documentation/m68k/ |
D | kernel-options.txt | 346 4.1.3) font 349 Syntax: font:<fontname> 351 Specify the font to use in text modes. Currently you can choose only 354 `VGA8x16' font is the default. 727 5.1.4) font 730 Syntax: font:<fontname> 732 Specify the font to use in text modes. Functionally the same as the 733 "font" sub-option for the Atari, except that `PEARL8x8' is used instead
|
/linux-2.6.39/drivers/media/video/ |
D | vivi.c | 1300 const struct font_desc *font = find_font("VGA8x16"); in vivi_init() local 1303 if (font == NULL) { in vivi_init() 1307 font8x16 = font->data; in vivi_init()
|