/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 | 154 bool "VGA 8x8 font" if FONTS 158 This is the "high resolution" font for the VGA frame buffer (the one 161 Note that this is a poor quality font. The VGA 8x16 font is quite a 168 bool "VGA 8x16 font" if FONTS 172 This is the "high resolution" font for the VGA frame buffer (the one 178 bool "Mac console 6x11 font (not supported by all drivers)" if FONTS 182 Small console font with Macintosh-style high-half glyphs. Some Mac 186 bool "console 7x14 font (not supported by all drivers)" if FONTS 189 Console font with characters just a bit smaller than the default. 190 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 | 905 const struct font_desc *font = NULL; in fbcon_startup() local 973 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_startup() 974 font = get_default_font(info->var.xres, in fbcon_startup() 978 vc->vc_font.width = font->width; in fbcon_startup() 979 vc->vc_font.height = font->height; in fbcon_startup() 980 vc->vc_font.data = (void *)(p->fontdata = font->data); in fbcon_startup() 1042 const struct font_desc *font = NULL; in fbcon_init() local 1044 if (!fontname[0] || !(font = find_font(fontname))) in fbcon_init() 1045 font = get_default_font(info->var.xres, in fbcon_init() 1049 vc->vc_font.width = font->width; in fbcon_init() [all …]
|
D | vgacon.c | 1254 static int vgacon_font_set(struct vc_data *c, struct console_font *font, unsigned flags) in vgacon_font_set() argument 1256 unsigned charcount = font->charcount; in vgacon_font_set() 1262 if (font->width != VGA_FONTWIDTH || in vgacon_font_set() 1266 rc = vgacon_do_font_op(&state, font->data, 1, charcount == 512); in vgacon_font_set() 1271 rc = vgacon_adjust_height(c, font->height); in vgacon_font_set() 1275 static int vgacon_font_get(struct vc_data *c, struct console_font *font) in vgacon_font_get() argument 1280 font->width = VGA_FONTWIDTH; in vgacon_font_get() 1281 font->height = c->vc_font.height; in vgacon_font_get() 1282 font->charcount = vga_512_chars ? 512 : 256; in vgacon_font_get() 1283 if (!font->data) in vgacon_font_get() [all …]
|
D | prom.uni | 2 # Unicode mapping table for font in Sun PROM
|
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()
|
/drivers/usb/misc/sisusbvga/ |
D | sisusb_con.c | 1281 sisusbcon_font_set(struct vc_data *c, struct console_font *font, in sisusbcon_font_set() argument 1285 unsigned charcount = font->charcount; in sisusbcon_font_set() 1287 if (font->width != 8 || (charcount != 256 && charcount != 512)) in sisusbcon_font_set() 1310 memcpy(sisusb->font_backup, font->data, charcount * 32); in sisusbcon_font_set() 1312 sisusb->font_backup_height = font->height; in sisusbcon_font_set() 1318 return sisusbcon_do_font_op(sisusb, 1, 2, font->data, in sisusbcon_font_set() 1321 c, font->height, 1); in sisusbcon_font_set() 1326 sisusbcon_font_get(struct vc_data *c, struct console_font *font) in sisusbcon_font_get() argument 1335 font->width = 8; in sisusbcon_font_get() 1336 font->height = c->vc_font.height; in sisusbcon_font_get() [all …]
|
/drivers/char/ |
D | vt.c | 3849 struct console_font font; in con_font_get() local 3857 font.data = kmalloc(max_font_size, GFP_KERNEL); in con_font_get() 3858 if (!font.data) in con_font_get() 3861 font.data = NULL; in con_font_get() 3865 rc = vc->vc_sw->con_font_get(vc, &font); in con_font_get() 3873 c = (font.width+7)/8 * 32 * font.charcount; in con_font_get() 3875 if (op->data && font.charcount > op->charcount) in con_font_get() 3878 if (font.width > op->width || font.height > op->height) in con_font_get() 3881 if (font.width != 8) in con_font_get() 3883 else if ((op->height && font.height > op->height) || in con_font_get() [all …]
|
D | Kconfig | 44 This enables support for font mapping and Unicode translation
|
/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 | 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 | svgalib.c | 196 const u8 *font = map->data; in svga_settile() local 210 fb_writeb(font[i], fb + i * 4); in svga_settile() 214 font += map->height; in svga_settile()
|
D | cg6.c | 198 u32 font; member 441 sbus_writel(val, &fbc->font); in cg6_imageblit() 466 sbus_writel(val, &fbc->font); in cg6_imageblit()
|
D | ffb.c | 296 u32 font; member 598 upa_writel(val, &fbc->font); in ffb_imageblit() 618 upa_writel(val, &fbc->font); in ffb_imageblit()
|
D | s3fb.c | 167 const u8 *font = map->data; in s3fb_settile_fast() local 181 fb_writeb(font[c * map->height + i], fb + c * 4); in s3fb_settile_fast()
|
D | Kconfig | 1188 also use font widths different from 8. 1197 packed pixel and 32 bpp packed pixel. You can also use font widths 1207 pixel and 32 bpp packed pixel. You can also use font widths 1224 too. You can use only some font widths, as the driver uses generic 1275 too. You can use only some font widths, as the driver uses generic
|