2005-05-30 01:56:35 +04:00
|
|
|
/* $NetBSD: wsemulvar.h,v 1.11 2005/05/29 21:56:35 christos Exp $ */
|
1998-03-22 17:24:02 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1996, 1997 Christopher G. Demetriou. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Christopher G. Demetriou
|
|
|
|
* for the NetBSD Project.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct device;
|
|
|
|
struct wsdisplay_emulops;
|
|
|
|
|
1999-01-13 18:30:59 +03:00
|
|
|
enum wsemul_resetops {
|
|
|
|
WSEMUL_RESET,
|
1999-01-17 18:44:57 +03:00
|
|
|
WSEMUL_SYNCFONT,
|
|
|
|
WSEMUL_CLEARSCREEN
|
1999-01-13 18:30:59 +03:00
|
|
|
};
|
|
|
|
|
1998-03-22 17:24:02 +03:00
|
|
|
struct wsemul_ops {
|
|
|
|
const char *name;
|
|
|
|
|
2001-10-13 19:56:15 +04:00
|
|
|
void *(*cnattach)(const struct wsscreen_descr *, void *,
|
|
|
|
int, int, long);
|
|
|
|
void *(*attach)(int console, const struct wsscreen_descr *, void *,
|
|
|
|
int, int, void *, long);
|
|
|
|
void (*output)(void *cookie, const u_char *data, u_int count, int);
|
2005-05-30 01:56:35 +04:00
|
|
|
int (*translate)(void *, keysym_t, const char **);
|
2001-10-13 19:56:15 +04:00
|
|
|
void (*detach)(void *cookie, u_int *crow, u_int *ccol);
|
|
|
|
void (*reset)(void *, enum wsemul_resetops);
|
Implement support to dynamically change wscons console and kernel colors.
Two new ioctls are added to the wsdisplay device, named WSDISPLAY_GMSGATTRS
and WSDISPLAY_SMSGATTRS, used to retrieve the actual values and set them,
respectively (the name, if you are wondering, comes from "message attributes").
A new emulop is added to the underlying display driver (only vga, for now)
which sets the new attribute for the whole screen, without having to clear
it. This is optional, which means that this also works with other drivers
that don't have this new operation.
Five new kernel options have been added, although only documented in
i386 kernels (for now):
- WSDISPLAY_CUSTOM_OUTPUT, which enables the ioctls described above to
change the colors dynamically from userland. This is enabled by default
in the GENERIC kernel (as well as others) but disabled on all INSTALL*
kernels (as this feature is useless there).
- WS_DEFAULT_COLATTR, WS_DEFAULT_MONOATTR, WS_DEFAULT_BG and WS_DEFAULT_FG,
which specify the default colors for the console at boot time. These have
the same meaning as the (already existing) WS_KERNEL_* variables.
wsconsctl is modified to add msg.default.{attrs,bg,fg} and
msg.kernel.{attrs,bg,fg} to the display part, so that colors can be changed
after boot.
Tested on NetBSD/i386 with vga (and vga in mono mode), and on NetBSD/mac68k.
No objections in tech-kern@.
2004-07-28 16:34:02 +04:00
|
|
|
void (*getmsgattrs)(void *, struct wsdisplay_msgattrs *);
|
|
|
|
void (*setmsgattrs)(void *, const struct wsscreen_descr *,
|
|
|
|
const struct wsdisplay_msgattrs *);
|
1998-03-22 17:24:02 +03:00
|
|
|
};
|
|
|
|
|
2001-05-30 15:40:35 +04:00
|
|
|
#if defined(_KERNEL_OPT)
|
1998-04-17 04:17:27 +04:00
|
|
|
#include "opt_wsemul.h"
|
|
|
|
#endif
|
|
|
|
|
1998-03-22 17:24:02 +03:00
|
|
|
#ifndef WSEMUL_NO_DUMB
|
|
|
|
extern const struct wsemul_ops wsemul_dumb_ops;
|
|
|
|
#endif
|
|
|
|
#ifdef WSEMUL_SUN
|
|
|
|
extern const struct wsemul_ops wsemul_sun_ops;
|
|
|
|
#endif
|
1998-06-15 21:48:32 +04:00
|
|
|
#ifdef WSEMUL_VT100
|
|
|
|
extern const struct wsemul_ops wsemul_vt100_ops;
|
|
|
|
#endif
|
1998-03-22 17:24:02 +03:00
|
|
|
|
2001-10-13 19:56:15 +04:00
|
|
|
const struct wsemul_ops *wsemul_pick(const char *);
|
1998-03-22 17:24:02 +03:00
|
|
|
|
2005-02-27 03:26:58 +03:00
|
|
|
/*
|
1998-03-22 17:24:02 +03:00
|
|
|
* Callbacks from the emulation code to the display interface driver.
|
2005-02-27 03:26:58 +03:00
|
|
|
*/
|
2001-10-13 19:56:15 +04:00
|
|
|
void wsdisplay_emulbell(void *v);
|
|
|
|
void wsdisplay_emulinput(void *v, const u_char *, u_int);
|