9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
From: Scott Schwartz schwartz@finch.cse.psu.edu
Subject: No subject
Date: Tue,  8 Jul 1997 18:05:00 -0400	[thread overview]
Message-ID: <19970708220500.-2s2kUyJnR8YLZ1NDys5TLA6VAm24jVn77GU9D8f2s0@z> (raw)

Here are some suggested changes to devvga to attempt to support screen
blanking, in the style of XFree86 3.3.  (Doing this completely right
requires chipset specific code, and more extensive changes.)  The
generic vga mechanisms could probably be used via aux/vga, but
/dev/vgactl is such a nice interface that I couldn't resist using it.
(Is that the wrong approach?)

-- Scott

diff devvga.c- devvga.c
292a293,329
> vga_blank(int mode)
> {
> 	uchar clocking_mode, mode_control;
>
> 	if (mode == 0) {
> 		clocking_mode = 0;
> 		mode_control = Not_Hardware_Reset;
> 	}
> 	else if (mode == 1) {
> 		clocking_mode = Screen_Off;
> 		mode_control = Not_Hardware_Reset;
> 		/* Inspired by xfree86 3.3 vgaHW.c */
> 	}
> 	else if (mode == 2) {
> 		clocking_mode = 0;
> 		mode_control = 0;
> 		/* Wild guess.  Probably not useful. */
> 	}
> 	else if (mode == 3) {
> 		clocking_mode = Screen_Off;
> 		mode_control = 0;
> 	}
> 	else {
> 		SET(clocking_mode);
> 		SET(mode_control);
> 		error(Ebadarg);
> 	}
>
> 	vgaxo(Seqx, Sync_Reset, Reset_Start);
> 	vgaxo(Seqx, Clocking_Mode,
> 		clocking_mode | (vgaxi(Seqx, Clocking_Mode) & ~Screen_Off));
> 	vgaxo(Crtx, Mode_Ctrl,
> 		mode_control | (vgaxi(Crtx, Mode_Ctrl) & ~Not_Hardware_Reset));
> 	vgaxo(Seqx, Sync_Reset, Reset_End);
> }
>
> static void
305c342,360
< 	if(strcmp(field[0], "hwgc") == 0){
- ---
> 	if(strcmp(field[0], "screen") == 0) {
> 		int mode = 0;
>
> 		if (strcmp(field[1], "on") == 0)
> 			mode = 0;
> 		else if (strcmp(field[1], "standby") == 0)
> 			mode = 1;
> 		else if (strcmp(field[1], "suspend") == 0)
> 			mode = 2;
> 		else if (strcmp(field[1], "off") == 0)
> 			mode = 3;
> 		else
> 			error(Ebadarg);
>
> 		/* if (vgac->blank) (vgac->blank)(mode); else */
> 		vga_blank(mode);
> 		return;
> 	}
> 	else if(strcmp(field[0], "hwgc") == 0){
1187a1243
>

diff vga.h- vga.h
31a32,43
> enum {
> 	/* Seqx */
> 	Sync_Reset = 0x0,
> 		Reset_Start = 0x1,
> 		Reset_End = 0x3,
> 	Clocking_Mode = 0x1,
> 		Screen_Off = 0x20,
> 	/* Crtx */
> 	Mode_Ctrl = 0x17,
> 		Not_Hardware_Reset = 0x80,
> };
>





             reply	other threads:[~1997-07-08 22:05 UTC|newest]

Thread overview: 296+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1997-07-08 22:05 Scott [this message]
  -- strict thread matches above, loose matches on Subject: below --
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2009-05-04 19:42 bogus
2000-05-26 15:25 
2000-05-14  3:59 Russ
2000-05-08 12:56 presotto
2000-04-27 20:17 Christian
2000-04-26  6:02 Christian
2000-04-24 23:29 Christian
2000-04-13 23:25 root
2000-04-13 22:25 root
2000-04-13 22:24 root
2000-04-13 22:24 root
2000-04-13 22:24 root
2000-04-13 22:24 root
2000-04-13 21:44 root
2000-04-13 21:44 root
2000-04-13 21:44 root
2000-04-13 21:31 root
2000-04-13 21:31 root
2000-04-13 21:31 root
2000-04-13 21:31 root
2000-04-13 21:31 root
1999-12-13 16:37 rob
1999-05-21  1:10 Andrew
1999-05-21  1:08 Scott
1999-05-21  0:58 Andrew
1999-01-31 17:56 presotto
1998-10-03 10:00 arisawa
1998-10-03  9:57 arisawa
1998-10-03  9:34 arisawa
1998-10-03  8:58 arisawa
1998-09-22  9:28 okamoto
1998-09-21  9:43 Elliott
1998-09-08 16:10 Tom
1998-09-08 13:44 Russ
1998-09-08  8:44 okamoto
1998-09-03 10:00 Kenji
1998-09-03  7:00 okamoto
1998-08-27 14:08 Russ
1998-08-27  7:55 arisawa
1998-08-25  8:34 Elliott
1998-08-17 18:08 Lucio
1998-04-15  4:15 Steve
1998-03-21  2:11 arisawa
1998-03-20 19:28 arisawa
1998-02-08 11:41 forsyth
1998-01-06 16:03 Mark
1997-12-12 18:00 Rob
1997-10-22 16:08 FODEMESI
1997-10-18 14:13 Kenji
1997-10-18 14:12 Kenji
1997-09-30 19:07 schwartz
1997-09-14 15:09 bobf
1997-09-12 20:43 bobf
1997-08-15 18:00 tab
1997-08-04 18:39 tab
1997-07-29 21:55 beto
1997-07-29 21:25 seanq
1997-07-09  2:46 Scott
1997-07-08 23:06 rob
1997-05-30  4:10 ken
1997-05-29 19:54 Anthony
1997-05-02  9:47 forsyth
1997-04-22 15:59 jm
1997-04-19 21:36 bobf
1997-03-21 18:28 presotto
1997-03-21 17:39 presotto
1997-02-20 22:16 bobf
1997-01-23 14:14 tab
1997-01-20  3:03 Scott
1997-01-15 15:14 presotto
1997-01-02 14:13 Steve
1997-01-02 13:58 tab
1996-12-20 15:09 tab
1996-12-18 19:32 tab
1996-12-01 17:04 forsyth
1996-12-01 16:09 presotto
1996-12-01 14:24 Jean
1996-10-17 21:08 presotto
1996-10-17 14:56 presotto
1996-10-15 11:36 forsyth
1996-10-11 16:00 Boyd
1996-10-11 12:29 Thomas
1996-10-11 12:25 Thomas
1996-10-11 11:54 Thomas
1996-10-11 11:53 Thomas
1996-10-11 11:50 Thomas
1996-10-11 10:16 Thomas
1996-09-30 14:24 Markus
1996-09-30  1:27 James
1996-09-03 15:40 philw
1996-09-02  4:16 scott
1996-08-24  4:18 Scott
1996-08-23 22:03 philw
1996-08-07  1:50 scott
1996-08-04 21:00 scott
1996-07-29 16:29 Rob
1996-07-20  7:44 Laurent
1996-07-06 23:23 Raj
1996-07-01 20:31 Scott
1996-07-01 19:03 Min
1996-06-07 22:04 Michael
1996-06-07 21:18 Scott
1996-06-07 20:05 Raj
1996-05-07 13:39 Finn
1996-04-11 19:23 philw
1996-04-07 13:07 forsyth
1996-04-07  5:49 scott
1996-03-25  4:59 scott
1996-03-21 14:31 Nigel
1996-03-21 14:13 Dave
1996-03-21  4:26 Thomas
1996-03-21  3:11 Thomas
1996-03-14 19:00 postmaster
1996-03-11  3:08 Steve
1996-03-11  0:22 Ken
1996-03-10 20:16 Scott
1996-03-10  4:19 Dave
1996-03-09 21:34 Thomas
1996-02-26 20:53 Luther
1996-02-26 20:20 Rob
1996-02-15 22:36 Berry
1996-02-15 22:10 Ken.Goldsholl.Atlas.Computer.Equipment
1996-01-24  4:30 Ken
1996-01-18  1:06 Berry
1996-01-17 22:38 steve
1995-12-07  8:39 Nigel
1995-12-06 21:34 philw
1995-11-16  4:02 steve
1995-11-15 22:10 jim
1995-11-15 13:14 Thomas
1995-11-10 20:40 presotto
1995-11-09 13:31 ken
1995-10-26  0:21 Scott
1995-10-25 21:31 Ashish
1995-10-19 10:46 dhog
1995-10-18 21:47 schwartz
1995-10-18 19:32 Joshua
1995-10-13 15:00 presotto
1995-09-30 11:41 forsyth
1995-09-26  2:43 jmk
1995-09-26  2:25 presotto
1995-09-22 20:51 ken
1995-09-22  4:18 Scott
1995-08-31 20:31 presotto
1995-08-29 21:32 presotto
1995-08-27 18:36 Scott
1995-08-27 17:41 Murali
1995-08-25 21:34 rob
1995-08-22 23:35 jmk
1995-08-22 21:02 Scott
1995-08-22 17:30 Steve
1995-08-22 16:06 Scott
1995-08-18  3:31 presotto
1995-08-18  0:02 Boyd
1995-08-08 13:12 presotto
1995-08-08  7:07 dhog
1995-08-08  4:22 seanq
1995-08-08  2:10 Scott
1995-08-08  1:33 Scott
1995-08-07 23:54 philw
1995-08-07 23:15 philw
1995-08-07 23:08 Scott
1995-08-07 21:52 Scott
1995-08-05 16:38 rob
1995-08-03  4:20 boyd
1995-08-01 16:24 9fans-outgoing-owner
1995-08-01 16:24 9fans-outgoing-owner
1995-08-01 16:24 9fans-outgoing-owner
1995-08-01 16:24 9fans-outgoing-owner
1995-08-01 16:24 9fans-outgoing-owner
1995-08-01 16:24 9fans-outgoing-owner
1995-08-01 15:01 ken
1995-07-29 16:51 rob
1995-07-28 21:36 Scott
1995-07-27 22:33 Scott
1995-07-27 12:31 rob
1995-07-26 21:39 Scott
1995-07-24 12:51 Henner
1995-07-21 15:40 Henner
1995-07-17 20:26 Frank
1995-07-17 20:20 rob
1995-07-17 19:55 philw
1995-07-17 19:11 Frank
1995-07-17 19:02 Frank
1995-06-02 18:44 rob
1995-05-18 22:51 Scott
1995-04-25  1:29 Scott
1995-04-09  8:21 Scott
1995-04-07 23:09 Scott
1995-04-06 21:15 Bob
1995-04-06 19:09 rob
1995-04-06  5:02 rob
1995-04-05  7:31 Amos
1995-04-05  2:42 Scott
1995-04-03  4:12 Scott
1995-04-03  2:07 philw
1995-03-31 15:24 rob
1995-03-30 21:26 Berry
1995-03-30 17:34 Frederick
1995-03-30  7:41 Mark
1995-03-30  3:57 Scott
1995-03-30  3:35 John
1995-03-30  2:45 Christopher.Vance
1995-03-30  2:33 Cort
1995-03-30  2:02 Steve
1995-03-30  1:56 Cort
1995-03-30  1:36 Andrew
1995-03-30  1:18 rob
1995-03-17  5:00 Scott
1995-03-17  4:15 philw
1995-03-17  3:39 Scott
1995-03-17  1:18 philw
1995-03-16 23:37 Scott
1995-03-16 20:06 mccartyb
1995-02-11 22:41 rob
1995-02-08 19:48 rob
1995-01-14 14:46 rob
1994-09-09  3:52 Fariborz
1994-09-08 19:44 Victor
1994-09-08 18:13 bobf
1994-07-04 14:25 rob
1994-06-14 19:47 rob
1994-05-11 18:34 forsyth
1994-05-07  2:18 Scott
1994-05-07  1:22 philw
1994-05-06 23:00 philw
1994-03-28 15:06 rob
1994-03-03 17:40 Vijay
1994-03-02  0:47 Sean
1994-02-16  4:11 rob
1994-02-10  3:28 rob
1994-02-10  3:19 rob
1994-02-08 16:51 geoff
1994-02-07 21:42 Vijay
1994-01-29  0:30 rob
1994-01-29  0:25 Scott
1994-01-29  0:01 rob
1994-01-27 18:46 rob
1994-01-13 21:05 philw
1994-01-13 20:08 Scott
1994-01-09  2:41 rob
1994-01-09  2:18 Scott
1993-10-22  3:30 rob
1993-10-22  3:05 Scott
1993-10-22  2:45 Neil
1993-10-22  0:06 Scott
1993-10-21 23:39 rob
1993-10-21 17:39 philw
1993-10-20 22:45 Scott
1993-08-16 23:25 presotto
1993-08-12 22:56 philw
1993-07-30 15:48 forsyth
1993-07-27 15:20 rob
1993-07-27 14:12 rob
1993-07-26 14:30 plan.9
1993-07-15  4:08 Bob
1993-07-15  3:33 Jerry
1993-07-13 19:25 jwjohn
1993-07-05 15:59 rob

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=19970708220500.-2s2kUyJnR8YLZ1NDys5TLA6VAm24jVn77GU9D8f2s0@z \
    --to=9fans@9fans.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).