diff options
author | Antonino A. Daplas <adaplas@gmail.com> | 2007-05-08 03:39:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-08 14:15:31 -0400 |
commit | 2d2699d984924890f6dac8cf51c3b6311f56816c (patch) | |
tree | bd8f50392ac6918589c6069177b89172f2263916 /drivers/video/console/fbcon.c | |
parent | bf26ad72a60c0009a99179b449a43daa6bf4b4f6 (diff) |
fbcon: font setting should check limitation of driver
fbcon_set_font() will now check if the new font dimensions can be drawn by the
driver (by checking pixmap.blit_x and blit_y). Similarly, add 2 new
parameters to get_default_font(), font_w and font_h, to further aid in the
font selection process.
Signed-off-by: Antonino Daplas <adaplas@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/console/fbcon.c')
-rw-r--r-- | drivers/video/console/fbcon.c | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c index 19dfdfbd4341..c71a88d531cd 100644 --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c | |||
@@ -988,7 +988,9 @@ static const char *fbcon_startup(void) | |||
988 | if (!p->fontdata) { | 988 | if (!p->fontdata) { |
989 | if (!fontname[0] || !(font = find_font(fontname))) | 989 | if (!fontname[0] || !(font = find_font(fontname))) |
990 | font = get_default_font(info->var.xres, | 990 | font = get_default_font(info->var.xres, |
991 | info->var.yres); | 991 | info->var.yres, |
992 | info->pixmap.blit_x, | ||
993 | info->pixmap.blit_y); | ||
992 | vc->vc_font.width = font->width; | 994 | vc->vc_font.width = font->width; |
993 | vc->vc_font.height = font->height; | 995 | vc->vc_font.height = font->height; |
994 | vc->vc_font.data = (void *)(p->fontdata = font->data); | 996 | vc->vc_font.data = (void *)(p->fontdata = font->data); |
@@ -1108,7 +1110,9 @@ static void fbcon_init(struct vc_data *vc, int init) | |||
1108 | 1110 | ||
1109 | if (!fontname[0] || !(font = find_font(fontname))) | 1111 | if (!fontname[0] || !(font = find_font(fontname))) |
1110 | font = get_default_font(info->var.xres, | 1112 | font = get_default_font(info->var.xres, |
1111 | info->var.yres); | 1113 | info->var.yres, |
1114 | info->pixmap.blit_x, | ||
1115 | info->pixmap.blit_y); | ||
1112 | vc->vc_font.width = font->width; | 1116 | vc->vc_font.width = font->width; |
1113 | vc->vc_font.height = font->height; | 1117 | vc->vc_font.height = font->height; |
1114 | vc->vc_font.data = (void *)(p->fontdata = font->data); | 1118 | vc->vc_font.data = (void *)(p->fontdata = font->data); |
@@ -2495,6 +2499,7 @@ static int fbcon_copy_font(struct vc_data *vc, int con) | |||
2495 | 2499 | ||
2496 | static int fbcon_set_font(struct vc_data *vc, struct console_font *font, unsigned flags) | 2500 | static int fbcon_set_font(struct vc_data *vc, struct console_font *font, unsigned flags) |
2497 | { | 2501 | { |
2502 | struct fb_info *info = registered_fb[con2fb_map[vc->vc_num]]; | ||
2498 | unsigned charcount = font->charcount; | 2503 | unsigned charcount = font->charcount; |
2499 | int w = font->width; | 2504 | int w = font->width; |
2500 | int h = font->height; | 2505 | int h = font->height; |
@@ -2508,6 +2513,11 @@ static int fbcon_set_font(struct vc_data *vc, struct console_font *font, unsigne | |||
2508 | if (charcount != 256 && charcount != 512) | 2513 | if (charcount != 256 && charcount != 512) |
2509 | return -EINVAL; | 2514 | return -EINVAL; |
2510 | 2515 | ||
2516 | /* Make sure drawing engine can handle the font */ | ||
2517 | if (!(info->pixmap.blit_x & (1 << (font->width - 1))) || | ||
2518 | !(info->pixmap.blit_y & (1 << (font->height - 1)))) | ||
2519 | return -EINVAL; | ||
2520 | |||
2511 | size = h * pitch * charcount; | 2521 | size = h * pitch * charcount; |
2512 | 2522 | ||
2513 | new_data = kmalloc(FONT_EXTRA_WORDS * sizeof(int) + size, GFP_USER); | 2523 | new_data = kmalloc(FONT_EXTRA_WORDS * sizeof(int) + size, GFP_USER); |
@@ -2552,7 +2562,8 @@ static int fbcon_set_def_font(struct vc_data *vc, struct console_font *font, cha | |||
2552 | const struct font_desc *f; | 2562 | const struct font_desc *f; |
2553 | 2563 | ||
2554 | if (!name) | 2564 | if (!name) |
2555 | f = get_default_font(info->var.xres, info->var.yres); | 2565 | f = get_default_font(info->var.xres, info->var.yres, |
2566 | info->pixmap.blit_x, info->pixmap.blit_y); | ||
2556 | else if (!(f = find_font(name))) | 2567 | else if (!(f = find_font(name))) |
2557 | return -ENOENT; | 2568 | return -ENOENT; |
2558 | 2569 | ||