diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-28 22:32:51 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2010-02-28 22:32:51 +0000 |
commit | 4ccce68d77f7cc1e920b529cc6b1904a5fab6297 (patch) | |
tree | 28709b46ea6e37ff5aed10426e19a2eccf5592f5 /sys/dev/wscons | |
parent | f93640471000b8e53078d9db924d309145496368 (diff) |
Minimal frame buffer driver for the SiS 315 found on Lemote Fuloong systems.
Currently unable to change video modes or provide any form of acceleration,
so you are stuck in a 640x400x8 mode, but at least people scared of serial
consoles will get a chance to use their Fuloongs now.
Tested by otto@ (early developments) and jasper@ (final version)
Diffstat (limited to 'sys/dev/wscons')
-rw-r--r-- | sys/dev/wscons/wsconsio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/wscons/wsconsio.h b/sys/dev/wscons/wsconsio.h index 1057f0e7b96..345b7957ae2 100644 --- a/sys/dev/wscons/wsconsio.h +++ b/sys/dev/wscons/wsconsio.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wsconsio.h,v 1.57 2009/12/25 22:02:47 miod Exp $ */ +/* $OpenBSD: wsconsio.h,v 1.58 2010/02/28 22:32:50 miod Exp $ */ /* $NetBSD: wsconsio.h,v 1.74 2005/04/28 07:15:44 martin Exp $ */ /* @@ -311,6 +311,7 @@ struct wsmouse_calibcoords { #define WSDISPLAY_TYPE_GFXP 60 /* Sun PGX32 */ #define WSDISPLAY_TYPE_RADEONFB 61 /* Sun XVR-100 */ #define WSDISPLAY_TYPE_SMFB 62 /* SiliconMotion SM712 */ +#define WSDISPLAY_TYPE_SISFB 63 /* SiS 315 Pro */ /* Basic display information. Not applicable to all display types. */ struct wsdisplay_fbinfo { |