From: Mario Lang <mlang@delysid.org>
To: linux-fbdev-devel@lists.sourceforge.net
Cc: jsimmons@infradead.org, geert@linux-m68k.org
Subject: fbcon has a empty unimap after boot
Date: Fri, 12 Sep 2003 13:07:36 +0200 [thread overview]
Message-ID: <874qzip8nb.fsf@lexx.delysid.org> (raw)
Hi.
I noticed that with 2.6.0 kernels, when using fbcon
(with the sisfb driver in my case, using a Sis630 card), the
ioctl GIO_UNIMAP returns a empty unimap.
This results in problems for BRLTTY[1], which relies
on a valid unimap to back-translate the font-positions of
/dev/vcsa to the actual characters used.
Further digging showed that this problems has probably gone
unnoticed because there is a special case in
drivers/char/consolemap.c:conv_uni_to_pc which returns -3 when
there is no unimap available. This -3 return value
is caught in drivers/char/vt.c:do_con_write like this:
tc = conv_uni_to_pc(vc_cons[currcons].d, tc);
...
} else if ( tc == -3 ) {
/* Bad hash table -- hope for the best */
tc = c;
}
This is why I think the uninitialized unimap did go
unnoticed, since this code will make things work for
standard iso-8859 type of charsets.
However, user space apps which rely on GIO_UNIMAP do not
work correctly, and in general, I think I18N should be broken
on fbcon currently.
I have a very crude patch which works for me here, but I
am not sure if this is the right way to fix this.
Anyway, it is attached. Note that I am very new to
kernel hacking, so my analysis of the problem might be
bogus, but I do think I am on the right track...
--- linux-2.6.0-test4/drivers/video/console/fbcon.c.orig 2003-09-03 15:32:42.000000000 +0200
+++ linux-2.6.0-test4/drivers/video/console/fbcon.c 2003-09-03 15:27:09.000000000 +0200
@@ -695,6 +695,7 @@
fb_display[unit].scrollmode = SCROLL_YNOMOVE;
else
fb_display[unit].scrollmode = SCROLL_YREDRAW;
+ con_set_default_unimap(unit);
fbcon_set_display(vc, init, !init);
}
[1] http://mielke.cc/brltty/
--
CYa,
Mario | Debian Developer <URL:http://debian.org/>
| Get my public key via finger mlang@db.debian.org
| 1024D/7FC1A0854909BCCDBE6C102DDFFC022A6B113E44
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
next reply other threads:[~2003-09-12 11:08 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-09-12 11:07 Mario Lang [this message]
2003-09-12 18:09 ` fbcon has a empty unimap after boot James Simmons
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=874qzip8nb.fsf@lexx.delysid.org \
--to=mlang@delysid.org \
--cc=geert@linux-m68k.org \
--cc=jsimmons@infradead.org \
--cc=linux-fbdev-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).