Home | History | Annotate | Line # | Download | only in vsa
smg.c revision 1.17.4.1
      1  1.17.4.1      fvdl /*	$NetBSD: smg.c,v 1.17.4.1 1999/11/15 00:39:53 fvdl Exp $ */
      2       1.1     ragge /*
      3       1.1     ragge  * Copyright (c) 1998 Ludd, University of Lule}, Sweden.
      4       1.1     ragge  * All rights reserved.
      5       1.1     ragge  *
      6       1.1     ragge  * Redistribution and use in source and binary forms, with or without
      7       1.1     ragge  * modification, are permitted provided that the following conditions
      8       1.1     ragge  * are met:
      9       1.1     ragge  * 1. Redistributions of source code must retain the above copyright
     10       1.1     ragge  *    notice, this list of conditions and the following disclaimer.
     11       1.1     ragge  * 2. Redistributions in binary form must reproduce the above copyright
     12       1.1     ragge  *    notice, this list of conditions and the following disclaimer in the
     13       1.1     ragge  *    documentation and/or other materials provided with the distribution.
     14       1.1     ragge  * 3. All advertising materials mentioning features or use of this software
     15       1.1     ragge  *    must display the following acknowledgement:
     16       1.6     ragge  *	This product includes software developed at Ludd, University of
     17       1.6     ragge  *	Lule}, Sweden and its contributors.
     18       1.1     ragge  * 4. The name of the author may not be used to endorse or promote products
     19       1.1     ragge  *    derived from this software without specific prior written permission
     20       1.1     ragge  *
     21       1.1     ragge  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1     ragge  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1     ragge  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1     ragge  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1     ragge  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1     ragge  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1     ragge  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1     ragge  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1     ragge  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1     ragge  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1     ragge  */
     32       1.1     ragge 
     33       1.1     ragge #include <sys/param.h>
     34       1.1     ragge #include <sys/device.h>
     35       1.1     ragge #include <sys/systm.h>
     36       1.1     ragge #include <sys/time.h>
     37       1.1     ragge #include <sys/malloc.h>
     38       1.1     ragge #include <sys/conf.h>
     39       1.6     ragge #include <sys/kernel.h>
     40       1.1     ragge 
     41       1.1     ragge #include <dev/cons.h>
     42       1.1     ragge 
     43       1.1     ragge #include <dev/wscons/wsdisplayvar.h>
     44       1.1     ragge #include <dev/wscons/wsconsio.h>
     45       1.1     ragge #include <dev/wscons/wscons_callbacks.h>
     46       1.1     ragge 
     47       1.1     ragge #include <machine/vsbus.h>
     48       1.1     ragge #include <machine/sid.h>
     49      1.12     ragge #include <machine/cpu.h>
     50      1.16     ragge #include <machine/ka420.h>
     51       1.1     ragge 
     52       1.1     ragge #include "lkc.h"
     53       1.1     ragge 
     54       1.6     ragge #define SM_COLS		128	/* char width of screen */
     55       1.6     ragge #define SM_ROWS		57	/* rows of char on screen */
     56       1.6     ragge #define SM_CHEIGHT	15	/* lines a char consists of */
     57       1.6     ragge #define SM_NEXTROW	(SM_COLS * SM_CHEIGHT)
     58       1.1     ragge 
     59       1.1     ragge static	int smg_match __P((struct device *, struct cfdata *, void *));
     60       1.1     ragge static	void smg_attach __P((struct device *, struct device *, void *));
     61       1.1     ragge 
     62       1.1     ragge struct	smg_softc {
     63       1.1     ragge 	struct	device ss_dev;
     64       1.1     ragge };
     65       1.1     ragge 
     66       1.1     ragge struct cfattach smg_ca = {
     67       1.1     ragge 	sizeof(struct smg_softc), smg_match, smg_attach,
     68       1.1     ragge };
     69       1.1     ragge 
     70       1.1     ragge static void	smg_cursor __P((void *, int, int, int));
     71      1.13  drochner static int	smg_mapchar __P((void *, int, unsigned int *));
     72       1.4  drochner static void	smg_putchar __P((void *, int, int, u_int, long));
     73       1.1     ragge static void	smg_copycols __P((void *, int, int, int,int));
     74       1.1     ragge static void	smg_erasecols __P((void *, int, int, int, long));
     75       1.1     ragge static void	smg_copyrows __P((void *, int, int, int));
     76       1.1     ragge static void	smg_eraserows __P((void *, int, int, long));
     77       1.1     ragge static int	smg_alloc_attr __P((void *, int, int, int, long *));
     78       1.1     ragge 
     79       1.1     ragge const struct wsdisplay_emulops smg_emulops = {
     80       1.1     ragge 	smg_cursor,
     81       1.5  drochner 	smg_mapchar,
     82       1.4  drochner 	smg_putchar,
     83       1.1     ragge 	smg_copycols,
     84       1.1     ragge 	smg_erasecols,
     85       1.1     ragge 	smg_copyrows,
     86       1.1     ragge 	smg_eraserows,
     87       1.1     ragge 	smg_alloc_attr
     88       1.1     ragge };
     89       1.1     ragge 
     90       1.1     ragge const struct wsscreen_descr smg_stdscreen = {
     91       1.6     ragge 	"128x57", SM_COLS, SM_ROWS,
     92       1.6     ragge 	&smg_emulops,
     93       1.6     ragge 	8, SM_CHEIGHT,
     94       1.6     ragge 	WSSCREEN_UNDERLINE|WSSCREEN_REVERSE,
     95       1.1     ragge };
     96       1.1     ragge 
     97       1.1     ragge const struct wsscreen_descr *_smg_scrlist[] = {
     98       1.1     ragge 	&smg_stdscreen,
     99       1.1     ragge };
    100       1.1     ragge 
    101       1.1     ragge const struct wsscreen_list smg_screenlist = {
    102       1.1     ragge 	sizeof(_smg_scrlist) / sizeof(struct wsscreen_descr *),
    103       1.1     ragge 	_smg_scrlist,
    104       1.1     ragge };
    105       1.1     ragge 
    106      1.12     ragge static	caddr_t	sm_addr;
    107      1.12     ragge 
    108       1.6     ragge extern char q_font[];
    109       1.6     ragge #define QCHAR(c) (c < 32 ? 32 : (c > 127 ? c - 66 : c - 32))
    110       1.6     ragge #define QFONT(c,line)	q_font[QCHAR(c) * 15 + line]
    111       1.6     ragge #define	SM_ADDR(row, col, line) \
    112       1.6     ragge 	sm_addr[col + (row * SM_CHEIGHT * SM_COLS) + line * SM_COLS]
    113       1.6     ragge 
    114       1.6     ragge 
    115       1.1     ragge static int	smg_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
    116       1.1     ragge static int	smg_mmap __P((void *, off_t, int));
    117       1.1     ragge static int	smg_alloc_screen __P((void *, const struct wsscreen_descr *,
    118       1.6     ragge 				      void **, int *, int *, long *));
    119       1.1     ragge static void	smg_free_screen __P((void *, void *));
    120       1.1     ragge static void	smg_show_screen __P((void *, void *));
    121       1.6     ragge static void	smg_crsr_blink __P((void *));
    122       1.1     ragge 
    123       1.1     ragge const struct wsdisplay_accessops smg_accessops = {
    124       1.1     ragge 	smg_ioctl,
    125       1.1     ragge 	smg_mmap,
    126       1.1     ragge 	smg_alloc_screen,
    127       1.1     ragge 	smg_free_screen,
    128       1.1     ragge 	smg_show_screen,
    129      1.11  drochner 	0 /* load_font */
    130       1.1     ragge };
    131       1.1     ragge 
    132       1.1     ragge struct	smg_screen {
    133       1.1     ragge 	int	ss_curx;
    134       1.1     ragge 	int	ss_cury;
    135       1.2     ragge 	u_char	ss_image[SM_ROWS][SM_COLS];	/* Image of current screen */
    136       1.6     ragge 	u_char	ss_attr[SM_ROWS][SM_COLS];	/* Reversed etc... */
    137       1.1     ragge };
    138       1.1     ragge 
    139       1.2     ragge static	struct smg_screen smg_conscreen;
    140       1.2     ragge static	struct smg_screen *curscr;
    141       1.1     ragge 
    142       1.1     ragge int
    143       1.1     ragge smg_match(parent, match, aux)
    144       1.1     ragge 	struct device *parent;
    145       1.1     ragge 	struct cfdata *match;
    146       1.1     ragge 	void *aux;
    147       1.1     ragge {
    148      1.15     ragge 	struct vsbus_attach_args *va = aux;
    149      1.17     ragge 	volatile short *curcmd;
    150      1.17     ragge 	volatile short *cfgtst;
    151      1.15     ragge 	short tmp, tmp2;
    152      1.15     ragge 
    153      1.17     ragge 	if (vax_boardtype == VAX_BTYP_49)
    154      1.17     ragge 		return 0;
    155      1.17     ragge 
    156      1.17     ragge 	curcmd = (short *)va->va_addr;
    157      1.17     ragge 	cfgtst = (short *)vax_map_physmem(VS_CFGTST, 1);
    158      1.15     ragge 	/*
    159      1.15     ragge 	 * Try to find the cursor chip by testing the flip-flop.
    160      1.15     ragge 	 * If nonexistent, no glass tty.
    161      1.15     ragge 	 */
    162      1.15     ragge 	curcmd[0] = 0x7fff;
    163      1.15     ragge 	DELAY(300000);
    164      1.15     ragge 	tmp = cfgtst[0];
    165      1.15     ragge 	curcmd[0] = 0x8000;
    166      1.15     ragge 	DELAY(300000);
    167      1.15     ragge 	tmp2 = cfgtst[0];
    168      1.15     ragge 	vax_unmap_physmem((vaddr_t)cfgtst, 1);
    169      1.15     ragge 
    170      1.15     ragge 	if (tmp2 != tmp)
    171      1.15     ragge 		return 20; /* Using periodic interrupt */
    172      1.15     ragge 	else
    173      1.12     ragge 		return 0;
    174       1.1     ragge }
    175       1.1     ragge 
    176       1.1     ragge void
    177       1.1     ragge smg_attach(parent, self, aux)
    178       1.1     ragge 	struct device *parent, *self;
    179       1.1     ragge 	void *aux;
    180       1.1     ragge {
    181       1.1     ragge 	struct wsemuldisplaydev_attach_args aa;
    182       1.1     ragge 
    183       1.1     ragge 	printf("\n");
    184      1.15     ragge 	sm_addr = (caddr_t)vax_map_physmem(SMADDR, (SMSIZE/VAX_NBPG));
    185      1.15     ragge 	if (sm_addr == 0) {
    186      1.15     ragge 		printf("%s: Couldn't alloc graphics memory.\n", self->dv_xname);
    187      1.15     ragge 		return;
    188      1.15     ragge 	}
    189       1.2     ragge 	curscr = &smg_conscreen;
    190       1.1     ragge 	aa.console = !(vax_confdata & 0x20);
    191       1.1     ragge 	aa.scrdata = &smg_screenlist;
    192       1.1     ragge 	aa.accessops = &smg_accessops;
    193       1.6     ragge 	timeout(smg_crsr_blink, 0, hz/2);
    194       1.1     ragge 
    195       1.1     ragge 	config_found(self, &aa, wsemuldisplaydevprint);
    196       1.1     ragge }
    197       1.1     ragge 
    198       1.6     ragge static	u_char *cursor;
    199       1.6     ragge static	int cur_on;
    200       1.6     ragge 
    201       1.6     ragge static void
    202       1.6     ragge smg_crsr_blink(arg)
    203       1.6     ragge 	void *arg;
    204       1.6     ragge {
    205       1.6     ragge 	if (cur_on)
    206       1.6     ragge 		*cursor ^= 255;
    207       1.6     ragge 	timeout(smg_crsr_blink, 0, hz/2);
    208       1.6     ragge }
    209       1.6     ragge 
    210       1.1     ragge void
    211       1.1     ragge smg_cursor(id, on, row, col)
    212       1.1     ragge 	void *id;
    213       1.1     ragge 	int on, row, col;
    214       1.1     ragge {
    215       1.2     ragge 	struct smg_screen *ss = id;
    216       1.2     ragge 
    217       1.6     ragge 	if (ss == curscr) {
    218       1.6     ragge 		SM_ADDR(ss->ss_cury, ss->ss_curx, 14) =
    219       1.6     ragge 		    QFONT(ss->ss_image[ss->ss_cury][ss->ss_curx], 14);
    220       1.6     ragge 		cursor = &SM_ADDR(row, col, 14);
    221       1.6     ragge 		if ((cur_on = on))
    222       1.6     ragge 			*cursor ^= 255;
    223       1.6     ragge 	}
    224       1.2     ragge 	ss->ss_curx = col;
    225       1.2     ragge 	ss->ss_cury = row;
    226       1.5  drochner }
    227       1.5  drochner 
    228      1.14     ragge int
    229      1.13  drochner smg_mapchar(id, uni, index)
    230       1.5  drochner 	void *id;
    231       1.5  drochner 	int uni;
    232      1.13  drochner 	unsigned int *index;
    233       1.5  drochner {
    234      1.13  drochner 	if (uni < 256) {
    235      1.13  drochner 		*index = uni;
    236      1.13  drochner 		return (5);
    237      1.13  drochner 	}
    238      1.13  drochner 	*index = ' ';
    239       1.5  drochner 	return (0);
    240       1.1     ragge }
    241       1.1     ragge 
    242       1.1     ragge static void
    243       1.4  drochner smg_putchar(id, row, col, c, attr)
    244       1.1     ragge 	void *id;
    245       1.1     ragge 	int row, col;
    246       1.4  drochner 	u_int c;
    247       1.1     ragge 	long attr;
    248       1.1     ragge {
    249       1.2     ragge 	struct smg_screen *ss = id;
    250       1.4  drochner 	int i;
    251       1.1     ragge 
    252       1.4  drochner 	c &= 0xff;
    253       1.4  drochner 
    254       1.4  drochner 	ss->ss_image[row][col] = c;
    255       1.6     ragge 	ss->ss_attr[row][col] = attr;
    256       1.2     ragge 	if (ss != curscr)
    257       1.2     ragge 		return;
    258       1.6     ragge 	for (i = 0; i < 15; i++) {
    259       1.6     ragge 		unsigned char ch = QFONT(c, i);
    260       1.6     ragge 
    261       1.6     ragge 		SM_ADDR(row, col, i) = (attr & WSATTR_REVERSE ? ~ch : ch);
    262       1.6     ragge 
    263       1.6     ragge 	}
    264       1.6     ragge 	if (attr & WSATTR_UNDERLINE)
    265       1.6     ragge 		SM_ADDR(row, col, 14) ^= SM_ADDR(row, col, 14);
    266       1.1     ragge }
    267       1.1     ragge 
    268       1.1     ragge /*
    269       1.1     ragge  * copies columns inside a row.
    270       1.1     ragge  */
    271       1.1     ragge static void
    272       1.1     ragge smg_copycols(id, row, srccol, dstcol, ncols)
    273       1.1     ragge 	void *id;
    274       1.1     ragge 	int row, srccol, dstcol, ncols;
    275       1.1     ragge {
    276       1.2     ragge 	struct smg_screen *ss = id;
    277       1.1     ragge 	int i;
    278       1.1     ragge 
    279       1.2     ragge 	bcopy(&ss->ss_image[row][srccol], &ss->ss_image[row][dstcol], ncols);
    280       1.6     ragge 	bcopy(&ss->ss_attr[row][srccol], &ss->ss_attr[row][dstcol], ncols);
    281       1.2     ragge 	if (ss != curscr)
    282       1.2     ragge 		return;
    283       1.1     ragge 	for (i = 0; i < SM_CHEIGHT; i++)
    284       1.6     ragge 		bcopy(&SM_ADDR(row,srccol, i), &SM_ADDR(row, dstcol, i),ncols);
    285       1.1     ragge }
    286       1.1     ragge 
    287       1.1     ragge /*
    288       1.1     ragge  * Erases a bunch of chars inside one row.
    289       1.1     ragge  */
    290       1.1     ragge static void
    291       1.1     ragge smg_erasecols(id, row, startcol, ncols, fillattr)
    292       1.1     ragge 	void *id;
    293       1.1     ragge 	int row, startcol, ncols;
    294       1.1     ragge 	long fillattr;
    295       1.1     ragge {
    296       1.2     ragge 	struct smg_screen *ss = id;
    297       1.1     ragge 	int i;
    298       1.1     ragge 
    299       1.2     ragge 	bzero(&ss->ss_image[row][startcol], ncols);
    300       1.6     ragge 	bzero(&ss->ss_attr[row][startcol], ncols);
    301       1.2     ragge 	if (ss != curscr)
    302       1.2     ragge 		return;
    303       1.1     ragge 	for (i = 0; i < SM_CHEIGHT; i++)
    304       1.6     ragge 		bzero(&SM_ADDR(row, startcol, i), ncols);
    305       1.1     ragge }
    306       1.1     ragge 
    307       1.1     ragge static void
    308       1.1     ragge smg_copyrows(id, srcrow, dstrow, nrows)
    309       1.1     ragge 	void *id;
    310       1.1     ragge 	int srcrow, dstrow, nrows;
    311       1.1     ragge {
    312       1.2     ragge 	struct smg_screen *ss = id;
    313       1.1     ragge 	int frows;
    314       1.1     ragge 
    315       1.6     ragge 	bcopy(&ss->ss_image[srcrow][0], &ss->ss_image[dstrow][0],
    316       1.6     ragge 	    nrows * SM_COLS);
    317       1.6     ragge 	bcopy(&ss->ss_attr[srcrow][0], &ss->ss_attr[dstrow][0],
    318       1.6     ragge 	    nrows * SM_COLS);
    319       1.2     ragge 	if (ss != curscr)
    320       1.2     ragge 		return;
    321       1.1     ragge 	if (nrows > 25) {
    322       1.1     ragge 		frows = nrows >> 1;
    323       1.1     ragge 		if (srcrow > dstrow) {
    324       1.1     ragge 			bcopy(&sm_addr[(srcrow * SM_NEXTROW)],
    325       1.1     ragge 			    &sm_addr[(dstrow * SM_NEXTROW)],
    326       1.1     ragge 			    frows * SM_NEXTROW);
    327       1.1     ragge 			bcopy(&sm_addr[((srcrow + frows) * SM_NEXTROW)],
    328       1.1     ragge 			    &sm_addr[((dstrow + frows) * SM_NEXTROW)],
    329       1.1     ragge 			    (nrows - frows) * SM_NEXTROW);
    330       1.1     ragge 		} else {
    331       1.1     ragge 			bcopy(&sm_addr[((srcrow + frows) * SM_NEXTROW)],
    332       1.1     ragge 			    &sm_addr[((dstrow + frows) * SM_NEXTROW)],
    333       1.1     ragge 			    (nrows - frows) * SM_NEXTROW);
    334       1.1     ragge 			bcopy(&sm_addr[(srcrow * SM_NEXTROW)],
    335       1.1     ragge 			    &sm_addr[(dstrow * SM_NEXTROW)],
    336       1.1     ragge 			    frows * SM_NEXTROW);
    337       1.1     ragge 		}
    338       1.1     ragge 	} else
    339       1.1     ragge 		bcopy(&sm_addr[(srcrow * SM_NEXTROW)],
    340       1.1     ragge 		    &sm_addr[(dstrow * SM_NEXTROW)], nrows * SM_NEXTROW);
    341       1.1     ragge }
    342       1.1     ragge 
    343       1.1     ragge static void
    344       1.1     ragge smg_eraserows(id, startrow, nrows, fillattr)
    345       1.1     ragge 	void *id;
    346       1.1     ragge 	int startrow, nrows;
    347       1.1     ragge 	long fillattr;
    348       1.1     ragge {
    349       1.2     ragge 	struct smg_screen *ss = id;
    350       1.1     ragge 	int frows;
    351       1.1     ragge 
    352       1.6     ragge 	bzero(&ss->ss_image[startrow][0], nrows * SM_COLS);
    353       1.6     ragge 	bzero(&ss->ss_attr[startrow][0], nrows * SM_COLS);
    354       1.2     ragge 	if (ss != curscr)
    355       1.2     ragge 		return;
    356       1.1     ragge 	if (nrows > 25) {
    357       1.1     ragge 		frows = nrows >> 1;
    358       1.1     ragge 		bzero(&sm_addr[(startrow * SM_NEXTROW)], frows * SM_NEXTROW);
    359       1.1     ragge 		bzero(&sm_addr[((startrow + frows) * SM_NEXTROW)],
    360       1.1     ragge 		    (nrows - frows) * SM_NEXTROW);
    361       1.1     ragge 	} else
    362       1.1     ragge 		bzero(&sm_addr[(startrow * SM_NEXTROW)], nrows * SM_NEXTROW);
    363       1.1     ragge }
    364       1.1     ragge 
    365       1.1     ragge static int
    366       1.1     ragge smg_alloc_attr(id, fg, bg, flags, attrp)
    367       1.1     ragge 	void *id;
    368       1.1     ragge 	int fg, bg;
    369       1.1     ragge 	int flags;
    370       1.1     ragge 	long *attrp;
    371       1.1     ragge {
    372       1.6     ragge 	*attrp = flags;
    373       1.1     ragge 	return 0;
    374       1.1     ragge }
    375       1.1     ragge 
    376       1.1     ragge int
    377       1.1     ragge smg_ioctl(v, cmd, data, flag, p)
    378       1.1     ragge 	void *v;
    379       1.1     ragge 	u_long cmd;
    380       1.1     ragge 	caddr_t data;
    381       1.1     ragge 	int flag;
    382       1.1     ragge 	struct proc *p;
    383       1.1     ragge {
    384       1.8     ragge 	struct wsdisplay_fbinfo fb;
    385       1.8     ragge 
    386       1.8     ragge 	switch (cmd) {
    387       1.8     ragge 	case WSDISPLAYIO_GTYPE:
    388       1.8     ragge 		*(u_int *)data = WSDISPLAY_TYPE_PM_MONO;
    389       1.8     ragge 		break;
    390       1.8     ragge 
    391       1.8     ragge 	case WSDISPLAYIO_GINFO:
    392       1.8     ragge 		fb.height = 864;
    393       1.8     ragge 		fb.width = 1024;
    394       1.8     ragge 		return copyout(&fb, data, sizeof(struct wsdisplay_fbinfo));
    395       1.8     ragge 
    396       1.8     ragge 
    397       1.8     ragge 	default:
    398       1.8     ragge 		return -1;
    399       1.8     ragge 	}
    400       1.8     ragge 	return 0;
    401       1.1     ragge }
    402       1.1     ragge 
    403       1.1     ragge static int
    404       1.1     ragge smg_mmap(v, offset, prot)
    405       1.1     ragge 	void *v;
    406       1.1     ragge 	off_t offset;
    407       1.1     ragge 	int prot;
    408       1.1     ragge {
    409       1.9       mrg 	if (offset >= SMSIZE || offset < 0)
    410       1.8     ragge 		return -1;
    411       1.8     ragge 	return (SMADDR + offset) >> CLSHIFT;
    412       1.1     ragge }
    413       1.1     ragge 
    414       1.1     ragge int
    415       1.1     ragge smg_alloc_screen(v, type, cookiep, curxp, curyp, defattrp)
    416       1.1     ragge 	void *v;
    417       1.1     ragge 	const struct wsscreen_descr *type;
    418       1.1     ragge 	void **cookiep;
    419       1.1     ragge 	int *curxp, *curyp;
    420       1.1     ragge 	long *defattrp;
    421       1.1     ragge {
    422       1.2     ragge 	*cookiep = malloc(sizeof(struct smg_screen), M_DEVBUF, M_WAITOK);
    423       1.3     ragge 	bzero(*cookiep, sizeof(struct smg_screen));
    424       1.3     ragge 	*curxp = *curyp = *defattrp = 0;
    425       1.1     ragge 	return 0;
    426       1.1     ragge }
    427       1.1     ragge 
    428       1.1     ragge void
    429       1.1     ragge smg_free_screen(v, cookie)
    430       1.1     ragge 	void *v;
    431       1.1     ragge 	void *cookie;
    432       1.1     ragge {
    433       1.1     ragge }
    434       1.1     ragge 
    435       1.1     ragge void
    436       1.1     ragge smg_show_screen(v, cookie)
    437       1.1     ragge 	void *v;
    438       1.1     ragge 	void *cookie;
    439       1.1     ragge {
    440       1.2     ragge 	struct smg_screen *ss = cookie;
    441       1.2     ragge 	int row, col, line;
    442       1.2     ragge 
    443       1.2     ragge 	if (ss == curscr)
    444       1.2     ragge 		return;
    445       1.2     ragge 
    446       1.6     ragge 	for (row = 0; row < SM_ROWS; row++)
    447       1.8     ragge 		for (line = 0; line < SM_CHEIGHT; line++) {
    448       1.6     ragge 			for (col = 0; col < SM_COLS; col++) {
    449       1.6     ragge 				u_char s, c = ss->ss_image[row][col];
    450       1.6     ragge 
    451       1.6     ragge 				if (c < 32)
    452       1.6     ragge 					c = 32;
    453       1.6     ragge 				s = QFONT(c, line);
    454       1.6     ragge 				if (ss->ss_attr[row][col] & WSATTR_REVERSE)
    455       1.6     ragge 					s ^= 255;
    456       1.6     ragge 				SM_ADDR(row, col, line) = s;
    457       1.2     ragge 			}
    458       1.8     ragge 			if (ss->ss_attr[row][col] & WSATTR_UNDERLINE)
    459       1.8     ragge 				SM_ADDR(row, col, line) = 255;
    460       1.8     ragge 		}
    461       1.6     ragge 	cursor = &sm_addr[(ss->ss_cury * SM_CHEIGHT * SM_COLS) + ss->ss_curx +
    462       1.6     ragge 	    ((SM_CHEIGHT - 1) * SM_COLS)];
    463       1.2     ragge 	curscr = ss;
    464       1.1     ragge }
    465       1.1     ragge 
    466       1.1     ragge cons_decl(smg);
    467       1.1     ragge 
    468       1.6     ragge #define WSCONSOLEMAJOR 68
    469       1.1     ragge 
    470       1.1     ragge void
    471       1.1     ragge smgcninit(cndev)
    472       1.6     ragge 	struct	consdev *cndev;
    473       1.1     ragge {
    474       1.1     ragge 	extern void lkccninit __P((struct consdev *));
    475       1.1     ragge 	extern int lkccngetc __P((dev_t));
    476       1.1     ragge 	/* Clear screen */
    477      1.10     ragge 	memset(sm_addr, 0, 128*864);
    478       1.1     ragge 
    479       1.2     ragge 	curscr = &smg_conscreen;
    480       1.2     ragge 	wsdisplay_cnattach(&smg_stdscreen, &smg_conscreen, 0, 0, 0);
    481  1.17.4.1      fvdl 	cn_tab->cn_pri = CN_INTERNAL;
    482  1.17.4.1      fvdl #if 0
    483       1.1     ragge 	lkccninit(cndev);
    484       1.1     ragge 	wsdisplay_set_cons_kbd(lkccngetc, nullcnpollc);
    485       1.1     ragge #endif
    486       1.1     ragge }
    487       1.1     ragge 
    488  1.17.4.1      fvdl /*
    489  1.17.4.1      fvdl  * Called very early to setup the glass tty as console.
    490  1.17.4.1      fvdl  * Because it's called before the VM system is inited, virtual memory
    491  1.17.4.1      fvdl  * for the framebuffer can be stolen directly without disturbing anything.
    492  1.17.4.1      fvdl  */
    493  1.17.4.1      fvdl void
    494  1.17.4.1      fvdl smgcnprobe(cndev)
    495  1.17.4.1      fvdl 	struct  consdev *cndev;
    496       1.1     ragge {
    497  1.17.4.1      fvdl 	extern vaddr_t virtual_avail;
    498  1.17.4.1      fvdl 
    499       1.1     ragge 	switch (vax_boardtype) {
    500       1.1     ragge 	case VAX_BTYP_410:
    501       1.1     ragge 	case VAX_BTYP_420:
    502       1.1     ragge 	case VAX_BTYP_43:
    503      1.16     ragge 		if ((vax_confdata & KA420_CFG_L3CON) ||
    504      1.16     ragge 		    (vax_confdata & KA420_CFG_MULTU))
    505      1.16     ragge 			break; /* doesn't use graphics console */
    506  1.17.4.1      fvdl 		sm_addr = (caddr_t)virtual_avail;
    507  1.17.4.1      fvdl 		virtual_avail += SMSIZE;
    508  1.17.4.1      fvdl 		ioaccess((vaddr_t)sm_addr, SMADDR, (SMSIZE/VAX_NBPG));
    509  1.17.4.1      fvdl 		cndev->cn_pri = CN_INTERNAL;
    510  1.17.4.1      fvdl 		cndev->cn_dev = makedev(WSCONSOLEMAJOR, 0);
    511  1.17.4.1      fvdl 		break;
    512       1.1     ragge 
    513       1.1     ragge 	default:
    514       1.1     ragge 		break;
    515       1.1     ragge 	}
    516       1.1     ragge }
    517