* FBTEST Patch
@ 2003-11-28 2:47 John Zielinski
2003-11-28 9:21 ` Geert Uytterhoeven
0 siblings, 1 reply; 3+ messages in thread
From: John Zielinski @ 2003-11-28 2:47 UTC (permalink / raw)
To: linux-fbdev-devel
Here's the fbtest patch I was talking about:
diff -urNX dontdiff fbtest.old/fb.c fbtest/fb.c
--- fbtest.old/fb.c 2003-04-04 07:07:55.000000000 -0500
+++ fbtest/fb.c 2003-11-27 21:41:16.000000000 -0500
@@ -18,6 +18,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
+#include <linux/kd.h>
#include <asm/page.h>
@@ -47,6 +48,7 @@
static struct fb_cmap saved_cmap;
static u16 *saved_red, *saved_green, *saved_blue, *saved_transp;
static u8 *saved_fb;
+static long old_mode;
static void fix_validate(void);
@@ -396,6 +398,9 @@
void fb_init(void)
{
Debug("fb_init()\n");
+ ioctl(STDOUT_FILENO, KDGETMODE, &old_mode);
+ if (old_mode == KD_TEXT );
+ ioctl(STDOUT_FILENO, KDSETMODE, KD_GRAPHICS);
fb_open();
fb_get_var();
saved_var = fb_var;
@@ -435,7 +440,8 @@
ALLOC_AND_SAVE_COMPONENT(transp);
}
fb_map();
- fb_save();
+ if (old_mode == KD_GRAPHICS)
+ fb_save();
fb_clear();
}
@@ -477,6 +483,7 @@
/* FIXME: compare fb_fix with saved_fix */
fb_close();
}
+ ioctl(STDOUT_FILENO, KDSETMODE, old_mode);
}
#undef RESTORE_AND_FREE_COMPONENT
John
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: FBTEST Patch
2003-11-28 2:47 FBTEST Patch John Zielinski
@ 2003-11-28 9:21 ` Geert Uytterhoeven
2003-11-28 22:44 ` John Zielinski
0 siblings, 1 reply; 3+ messages in thread
From: Geert Uytterhoeven @ 2003-11-28 9:21 UTC (permalink / raw)
To: John Zielinski; +Cc: Linux Frame Buffer Device Development
On Thu, 27 Nov 2003, John Zielinski wrote:
> Here's the fbtest patch I was talking about:
>
> diff -urNX dontdiff fbtest.old/fb.c fbtest/fb.c
> --- fbtest.old/fb.c 2003-04-04 07:07:55.000000000 -0500
> +++ fbtest/fb.c 2003-11-27 21:41:16.000000000 -0500
> @@ -18,6 +18,7 @@
> #include <sys/types.h>
> #include <sys/stat.h>
> #include <unistd.h>
> +#include <linux/kd.h>
>
> #include <asm/page.h>
>
> @@ -47,6 +48,7 @@
> static struct fb_cmap saved_cmap;
> static u16 *saved_red, *saved_green, *saved_blue, *saved_transp;
> static u8 *saved_fb;
> +static long old_mode;
>
>
> static void fix_validate(void);
> @@ -396,6 +398,9 @@
> void fb_init(void)
> {
> Debug("fb_init()\n");
> + ioctl(STDOUT_FILENO, KDGETMODE, &old_mode);
You don't check for failure?
> + if (old_mode == KD_TEXT );
> + ioctl(STDOUT_FILENO, KDSETMODE, KD_GRAPHICS);
Note that this doesn't work if you run fbtest from a remote shell or from a
serial line, i.e. if you're not on the console.
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: FBTEST Patch
2003-11-28 9:21 ` Geert Uytterhoeven
@ 2003-11-28 22:44 ` John Zielinski
0 siblings, 0 replies; 3+ messages in thread
From: John Zielinski @ 2003-11-28 22:44 UTC (permalink / raw)
To: Geert Uytterhoeven; +Cc: Linux Frame Buffer Device Development
Geert Uytterhoeven wrote:
> You don't check for failure?
>
This was a quick "proof of concept" patch. I should have mentioned that
in my message. I wanted to get some feedback before putting more effort
into it.
>>+ if (old_mode == KD_TEXT );
>>+ ioctl(STDOUT_FILENO, KDSETMODE, KD_GRAPHICS);
>>
>>
>
>Note that this doesn't work if you run fbtest from a remote shell or from a
>serial line, i.e. if you're not on the console.
>
>
Good point. Here's an updated version. Opening /dev/console only works
as root but then I couldn't get a regular user to run the program even
though they were in the video group. I tried opening /dev/fb0 write
only but then the mmap call failed. Can regular users run frame buffer
programs?
Regardless, if the /dev/console open or the first ioctl fail then it
assumes KD_GRAPHICS and does the usual fb_save/fb_restore stuff. Not
requiring the save/restore is an added bonus. The reason I'm doing this
patch is that the console keeps messing up the graphics trying to write
text and flash the cursor.
Also, if it doesn't do a restore I made it do a clear instead. This is
just in case the kernel fbcon restore bug patch I posted eariler isn't
applied. Here's a summary of what can happen:
1) Niether patch applied:
* Console messes up the fbtest graphics.
* Switching virtual consoles messes up the graphics. (Looks really
cool when it does the color pallette thing) :)
* If left on another virtual console, the wrong screen is restored.
* After exit fbtest's debug/verbose output is mixed in with the
saved console text.
2) Fbtest patch only and using a fbdev driver that does vesa blanking:
* Console output is disabled, graphics not corrupted.
* Virtual console switching is prevented.
* After exit previous console text and fbtest's debug/verbose output
is hidden until the console is scrolled or swtiched back to.
3) Both patches or using a fbdev driver that doesn't do vesa blanking:
* Console output is disabled, graphics not corrupted.
* Virtual console switching is prevented.
* Console is restored properly upon exit.
diff -urNX dontdiff fbtest.old/fb.c fbtest/fb.c
--- fbtest.old/fb.c 2003-04-04 07:07:55.000000000 -0500
+++ fbtest/fb.c 2003-11-28 17:16:54.000000000 -0500
@@ -18,6 +18,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
+#include <linux/kd.h>
#include <asm/page.h>
@@ -47,6 +48,8 @@
static struct fb_cmap saved_cmap;
static u16 *saved_red, *saved_green, *saved_blue, *saved_transp;
static u8 *saved_fb;
+static long old_mode;
+static int console;
static void fix_validate(void);
@@ -396,6 +399,15 @@
void fb_init(void)
{
Debug("fb_init()\n");
+ console = open("/dev/console", O_RDWR | O_NOCTTY);
+ if (console != -1) {
+ if (ioctl(console, KDGETMODE, &old_mode) != -1) {
+ if (old_mode != KD_GRAPHICS)
+ ioctl(console, KDSETMODE, KD_GRAPHICS);
+ }
+ else
+ old_mode = KD_GRAPHICS;
+ }
fb_open();
fb_get_var();
saved_var = fb_var;
@@ -435,7 +447,8 @@
ALLOC_AND_SAVE_COMPONENT(transp);
}
fb_map();
- fb_save();
+ if (old_mode == KD_GRAPHICS)
+ fb_save();
fb_clear();
}
@@ -457,6 +470,8 @@
Debug("fb_cleanup()\n");
if (saved_fb)
fb_restore();
+ else
+ fb_clear();
if (fb)
fb_unmap();
if (fb_fd != -1) {
@@ -477,6 +492,11 @@
/* FIXME: compare fb_fix with saved_fix */
fb_close();
}
+ if (console != -1) {
+ if (old_mode != KD_GRAPHICS)
+ ioctl(console, KDSETMODE, old_mode);
+ close(console);
+ }
}
#undef RESTORE_AND_FREE_COMPONENT
John
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-11-28 22:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-28 2:47 FBTEST Patch John Zielinski
2003-11-28 9:21 ` Geert Uytterhoeven
2003-11-28 22:44 ` John Zielinski
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).