2009-03-15 18:52:12 +03:00
|
|
|
/* $NetBSD: pcdisplayvar.h,v 1.19 2009/03/15 15:52:12 cegger Exp $ */
|
1998-05-28 20:48:40 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1998
|
|
|
|
* Matthias Drochner. 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1999-09-20 01:48:08 +04:00
|
|
|
#include "opt_pcdisplay.h"
|
|
|
|
|
1998-05-28 20:48:40 +04:00
|
|
|
struct pcdisplayscreen {
|
|
|
|
struct pcdisplay_handle *hdl;
|
|
|
|
|
|
|
|
const struct wsscreen_descr *type;
|
|
|
|
|
2002-07-07 10:49:22 +04:00
|
|
|
int active; /* currently displayed */
|
|
|
|
u_int16_t *mem; /* backing store for contents */
|
1998-05-28 20:48:40 +04:00
|
|
|
|
|
|
|
int cursoron; /* cursor displayed? */
|
1999-09-20 01:48:08 +04:00
|
|
|
#ifdef PCDISPLAY_SOFTCURSOR
|
|
|
|
int cursortmp; /* glyph & attribute behind software cursor */
|
|
|
|
#endif
|
2002-07-07 10:36:32 +04:00
|
|
|
int cursorcol, cursorrow; /* current cursor position */
|
1998-07-24 20:12:18 +04:00
|
|
|
|
2002-07-07 10:49:22 +04:00
|
|
|
int dispoffset; /* offset of displayed area in video mem */
|
2004-05-29 01:42:29 +04:00
|
|
|
int visibleoffset;
|
1998-05-28 20:48:40 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pcdisplay_handle {
|
|
|
|
bus_space_tag_t ph_iot, ph_memt;
|
|
|
|
bus_space_handle_t ph_ioh_6845, ph_memh;
|
|
|
|
};
|
|
|
|
|
2006-02-16 23:17:12 +03:00
|
|
|
static __inline u_int8_t _pcdisplay_6845_read(struct pcdisplay_handle *, int);
|
|
|
|
static __inline void _pcdisplay_6845_write(struct pcdisplay_handle *, int,
|
2002-07-07 10:49:22 +04:00
|
|
|
u_int8_t);
|
1998-05-28 20:48:40 +04:00
|
|
|
|
2009-03-15 18:52:12 +03:00
|
|
|
static __inline u_int8_t _pcdisplay_6845_read(struct pcdisplay_handle *ph, int reg)
|
1998-05-28 20:48:40 +04:00
|
|
|
{
|
|
|
|
bus_space_write_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_INDEX, reg);
|
|
|
|
return (bus_space_read_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_DATA));
|
|
|
|
}
|
|
|
|
|
2009-03-15 18:52:12 +03:00
|
|
|
static __inline void _pcdisplay_6845_write(struct pcdisplay_handle *ph,
|
|
|
|
int reg, uint8_t val)
|
1998-05-28 20:48:40 +04:00
|
|
|
{
|
|
|
|
bus_space_write_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_INDEX, reg);
|
|
|
|
bus_space_write_1(ph->ph_iot, ph->ph_ioh_6845, MC6845_DATA, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define pcdisplay_6845_read(ph, reg) \
|
|
|
|
_pcdisplay_6845_read(ph, offsetof(struct reg_mc6845, reg))
|
|
|
|
#define pcdisplay_6845_write(ph, reg, val) \
|
|
|
|
_pcdisplay_6845_write(ph, offsetof(struct reg_mc6845, reg), val)
|
|
|
|
|
2002-07-07 10:49:22 +04:00
|
|
|
void pcdisplay_cursor_init(struct pcdisplayscreen *, int);
|
|
|
|
void pcdisplay_cursor(void *, int, int, int);
|
1998-06-27 01:05:20 +04:00
|
|
|
#if 0
|
2002-07-07 10:49:22 +04:00
|
|
|
unsigned int pcdisplay_mapchar_simple(void *, int);
|
1998-06-27 01:05:20 +04:00
|
|
|
#endif
|
2002-07-07 10:49:22 +04:00
|
|
|
int pcdisplay_mapchar(void *, int, unsigned int *);
|
|
|
|
void pcdisplay_putchar(void *, int, int, u_int, long);
|
|
|
|
void pcdisplay_copycols(void *, int, int, int,int);
|
|
|
|
void pcdisplay_erasecols(void *, int, int, int, long);
|
|
|
|
void pcdisplay_copyrows(void *, int, int, int);
|
|
|
|
void pcdisplay_eraserows(void *, int, int, long);
|
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 pcdisplay_replaceattr(void *, long, long);
|
2002-06-27 03:05:33 +04:00
|
|
|
struct wsdisplay_char;
|
2006-04-15 21:48:23 +04:00
|
|
|
int pcdisplay_getwschar(struct pcdisplayscreen *, struct wsdisplay_char *);
|
|
|
|
int pcdisplay_putwschar(struct pcdisplayscreen *, struct wsdisplay_char *);
|