2002-06-27 10:26:51 +04:00
|
|
|
/* $NetBSD: vga_subr.c,v 1.9 2002/06/27 06:26:54 junyoung Exp $ */
|
1998-03-22 18:11:49 +03: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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed for the NetBSD Project
|
|
|
|
* by Matthias Drochner.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2001-11-13 16:14:31 +03:00
|
|
|
#include <sys/cdefs.h>
|
2002-06-27 10:26:51 +04:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: vga_subr.c,v 1.9 2002/06/27 06:26:54 junyoung Exp $");
|
2001-11-13 16:14:31 +03:00
|
|
|
|
1998-03-22 18:11:49 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
|
1998-05-28 20:48:40 +04:00
|
|
|
#include <dev/ic/mc6845reg.h>
|
|
|
|
#include <dev/ic/pcdisplayvar.h>
|
1998-03-22 18:11:49 +03:00
|
|
|
#include <dev/ic/vgareg.h>
|
|
|
|
#include <dev/ic/vgavar.h>
|
|
|
|
|
|
|
|
#include <dev/wscons/wsdisplayvar.h>
|
|
|
|
|
2001-12-13 11:34:55 +03:00
|
|
|
static void fontram(struct vga_handle *);
|
|
|
|
static void textram(struct vga_handle *);
|
1998-03-22 18:11:49 +03:00
|
|
|
|
|
|
|
static void
|
2001-12-13 11:34:55 +03:00
|
|
|
fontram(struct vga_handle *vh)
|
1998-03-22 18:11:49 +03:00
|
|
|
{
|
|
|
|
/* program sequencer to access character generator */
|
|
|
|
|
|
|
|
vga_ts_write(vh, syncreset, 0x01); /* synchronous reset */
|
|
|
|
vga_ts_write(vh, wrplmask, 0x04); /* write to map 2 */
|
|
|
|
vga_ts_write(vh, memmode, 0x07); /* sequential addressing */
|
|
|
|
vga_ts_write(vh, syncreset, 0x03); /* clear synchronous reset */
|
|
|
|
|
|
|
|
/* program graphics controller to access character generator */
|
|
|
|
|
|
|
|
vga_gdc_write(vh, rdplanesel, 0x02); /* select map 2 for cpu reads */
|
|
|
|
vga_gdc_write(vh, mode, 0x00); /* disable odd-even addressing */
|
|
|
|
vga_gdc_write(vh, misc, 0x04); /* map starts at 0xA000 */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-12-13 11:34:55 +03:00
|
|
|
textram(struct vga_handle *vh)
|
1998-03-22 18:11:49 +03:00
|
|
|
{
|
|
|
|
/* program sequencer to access video ram */
|
|
|
|
|
|
|
|
vga_ts_write(vh, syncreset, 0x01); /* synchronous reset */
|
|
|
|
vga_ts_write(vh, wrplmask, 0x03); /* write to map 0 & 1 */
|
|
|
|
vga_ts_write(vh, memmode, 0x03); /* odd-even addressing */
|
|
|
|
vga_ts_write(vh, syncreset, 0x03); /* clear synchronous reset */
|
|
|
|
|
|
|
|
/* program graphics controller for text mode */
|
|
|
|
|
|
|
|
vga_gdc_write(vh, rdplanesel, 0x00); /* select map 0 for cpu reads */
|
|
|
|
vga_gdc_write(vh, mode, 0x10); /* enable odd-even addressing */
|
|
|
|
/* map starts at 0xb800 or 0xb000 (mono) */
|
1998-05-28 20:48:40 +04:00
|
|
|
vga_gdc_write(vh, misc, (vh->vh_mono ? 0x0a : 0x0e));
|
1998-03-22 18:11:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-13 11:34:55 +03:00
|
|
|
vga_loadchars(struct vga_handle *vh, int fontset, int first, int num, int lpc,
|
|
|
|
char *data)
|
1998-03-22 18:11:49 +03:00
|
|
|
{
|
|
|
|
int offset, i, j, s;
|
|
|
|
|
|
|
|
/* fontset number swizzle done in vga_setfontset() */
|
|
|
|
offset = (fontset << 13) | (first << 5);
|
|
|
|
|
|
|
|
s = splhigh();
|
|
|
|
fontram(vh);
|
|
|
|
|
2002-06-27 10:26:51 +04:00
|
|
|
#ifdef VGA_CONSOLE_ATI_BROKEN_FONTSEL
|
|
|
|
if (fontset == 1)
|
|
|
|
bus_space_copy_region_1(vh->vh_memt, vh->vh_allmemh, 0,
|
|
|
|
vh->vh_allmemh, offset, 8192);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
for (i = 0; i < num; i++)
|
|
|
|
for (j = 0; j < lpc; j++)
|
|
|
|
bus_space_write_1(vh->vh_memt, vh->vh_allmemh,
|
|
|
|
offset + (i << 5) + j,
|
|
|
|
data[i * lpc + j]);
|
1998-03-22 18:11:49 +03:00
|
|
|
|
|
|
|
textram(vh);
|
|
|
|
splx(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-13 11:34:55 +03:00
|
|
|
vga_setfontset(struct vga_handle *vh, int fontset1, int fontset2)
|
1998-03-22 18:11:49 +03:00
|
|
|
{
|
2002-06-27 10:26:51 +04:00
|
|
|
#ifdef VGA_CONSOLE_ATI_BROKEN_FONTSEL
|
|
|
|
/* XXXBJY: 512 character mode is still broken. */
|
|
|
|
|
|
|
|
int s;
|
|
|
|
|
|
|
|
s = splhigh();
|
|
|
|
fontram(vh);
|
|
|
|
|
|
|
|
if (fontset1 == 0)
|
|
|
|
fontset1++;
|
|
|
|
bus_space_copy_region_1(vh->vh_memt, vh->vh_allmemh, fontset1 << 13,
|
|
|
|
vh->vh_allmemh, 0, 8192);
|
|
|
|
|
|
|
|
textram(vh);
|
|
|
|
splx(s);
|
|
|
|
#else
|
1998-03-22 18:11:49 +03:00
|
|
|
u_int8_t cmap;
|
|
|
|
static u_int8_t cmaptaba[] = {
|
1999-01-13 19:48:58 +03:00
|
|
|
0x00, 0x10, 0x01, 0x11,
|
|
|
|
0x02, 0x12, 0x03, 0x13
|
1998-03-22 18:11:49 +03:00
|
|
|
};
|
|
|
|
static u_int8_t cmaptabb[] = {
|
1999-01-13 19:48:58 +03:00
|
|
|
0x00, 0x20, 0x04, 0x24,
|
|
|
|
0x08, 0x28, 0x0c, 0x2c
|
1998-03-22 18:11:49 +03:00
|
|
|
};
|
|
|
|
|
1999-08-17 20:15:05 +04:00
|
|
|
/* extended font if fontset1 != fontset2 */
|
1999-01-13 19:48:58 +03:00
|
|
|
cmap = cmaptaba[fontset1] | cmaptabb[fontset2];
|
1998-03-22 18:11:49 +03:00
|
|
|
|
|
|
|
vga_ts_write(vh, fontsel, cmap);
|
2002-06-27 10:26:51 +04:00
|
|
|
#endif /* VGA_CONSOLE_ATI_BROKEN_FONTSEL */
|
1998-03-22 18:11:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2001-12-13 11:34:55 +03:00
|
|
|
vga_setscreentype(struct vga_handle *vh, const struct wsscreen_descr *type)
|
1998-03-22 18:11:49 +03:00
|
|
|
{
|
|
|
|
vga_6845_write(vh, maxrow, type->fontheight - 1);
|
|
|
|
|
|
|
|
/* lo byte */
|
|
|
|
vga_6845_write(vh, vde, type->fontheight * type->nrows - 1);
|
|
|
|
|
2000-01-25 05:44:03 +03:00
|
|
|
#ifndef PCDISPLAY_SOFTCURSOR
|
1998-03-22 18:11:49 +03:00
|
|
|
/* set cursor to last 2 lines */
|
|
|
|
vga_6845_write(vh, curstart, type->fontheight - 2);
|
|
|
|
vga_6845_write(vh, curend, type->fontheight - 1);
|
1999-09-20 01:48:08 +04:00
|
|
|
#endif
|
1999-01-13 19:48:58 +03:00
|
|
|
/*
|
|
|
|
* disable colour plane 3 if needed for font selection
|
|
|
|
*/
|
|
|
|
if (type->capabilities & WSSCREEN_HILIT) {
|
|
|
|
/*
|
|
|
|
* these are the screens which don't support
|
|
|
|
* 512-character fonts
|
|
|
|
*/
|
|
|
|
vga_attr_write(vh, colplen, 0x0f);
|
|
|
|
} else
|
|
|
|
vga_attr_write(vh, colplen, 0x07);
|
1998-03-22 18:11:49 +03:00
|
|
|
}
|