Home | History | Annotate | Line # | Download | only in wscons
wsdisplay_vcons.c revision 1.60
      1  1.60  riastrad /*	$NetBSD: wsdisplay_vcons.c,v 1.60 2022/07/17 11:31:47 riastradh Exp $ */
      2   1.1  macallan 
      3   1.1  macallan /*-
      4   1.1  macallan  * Copyright (c) 2005, 2006 Michael Lorenz
      5   1.1  macallan  * All rights reserved.
      6   1.1  macallan  *
      7   1.1  macallan  * Redistribution and use in source and binary forms, with or without
      8   1.1  macallan  * modification, are permitted provided that the following conditions
      9   1.1  macallan  * are met:
     10   1.1  macallan  * 1. Redistributions of source code must retain the above copyright
     11   1.1  macallan  *    notice, this list of conditions and the following disclaimer.
     12   1.1  macallan  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  macallan  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  macallan  *    documentation and/or other materials provided with the distribution.
     15   1.1  macallan  *
     16   1.1  macallan  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17   1.1  macallan  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18   1.1  macallan  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19   1.1  macallan  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20   1.1  macallan  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21   1.1  macallan  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22   1.1  macallan  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23   1.1  macallan  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24   1.1  macallan  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25   1.1  macallan  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26   1.1  macallan  * POSSIBILITY OF SUCH DAMAGE.
     27   1.1  macallan  */
     28   1.1  macallan 
     29   1.1  macallan #include <sys/cdefs.h>
     30  1.60  riastrad __KERNEL_RCSID(0, "$NetBSD: wsdisplay_vcons.c,v 1.60 2022/07/17 11:31:47 riastradh Exp $");
     31   1.1  macallan 
     32   1.1  macallan #include <sys/param.h>
     33   1.1  macallan #include <sys/systm.h>
     34   1.1  macallan #include <sys/kernel.h>
     35   1.1  macallan #include <sys/buf.h>
     36   1.1  macallan #include <sys/device.h>
     37   1.1  macallan #include <sys/ioctl.h>
     38   1.1  macallan #include <sys/malloc.h>
     39   1.1  macallan #include <sys/mman.h>
     40   1.1  macallan #include <sys/tty.h>
     41   1.1  macallan #include <sys/conf.h>
     42   1.1  macallan #include <sys/proc.h>
     43   1.1  macallan #include <sys/kthread.h>
     44   1.1  macallan #include <sys/tprintf.h>
     45  1.19  macallan #include <sys/atomic.h>
     46   1.1  macallan 
     47   1.1  macallan #include <dev/wscons/wsdisplayvar.h>
     48   1.1  macallan #include <dev/wscons/wsconsio.h>
     49   1.1  macallan #include <dev/wsfont/wsfont.h>
     50   1.1  macallan #include <dev/rasops/rasops.h>
     51   1.1  macallan 
     52   1.1  macallan #include <dev/wscons/wsdisplay_vconsvar.h>
     53   1.1  macallan 
     54  1.32  riastrad #ifdef _KERNEL_OPT
     55  1.14  macallan #include "opt_wsemul.h"
     56  1.14  macallan #include "opt_wsdisplay_compat.h"
     57  1.14  macallan #include "opt_vcons.h"
     58  1.32  riastrad #endif
     59  1.14  macallan 
     60  1.37  macallan #ifdef VCONS_DEBUG
     61  1.37  macallan #define DPRINTF printf
     62  1.37  macallan #else
     63  1.37  macallan #define DPRINTF if (0) printf
     64  1.37  macallan #endif
     65  1.37  macallan 
     66  1.55  riastrad static void vcons_dummy_init_screen(void *, struct vcons_screen *, int,
     67   1.1  macallan 	    long *);
     68   1.1  macallan 
     69  1.10  christos static int  vcons_ioctl(void *, void *, u_long, void *, int, struct lwp *);
     70  1.55  riastrad static int  vcons_alloc_screen(void *, const struct wsscreen_descr *, void **,
     71   1.1  macallan 	    int *, int *, long *);
     72   1.1  macallan static void vcons_free_screen(void *, void *);
     73   1.1  macallan static int  vcons_show_screen(void *, void *, int, void (*)(void *, int, int),
     74   1.1  macallan 	    void *);
     75  1.37  macallan static int  vcons_load_font(void *, void *, struct wsdisplay_font *);
     76   1.1  macallan 
     77  1.14  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
     78  1.14  macallan static void vcons_scroll(void *, void *, int);
     79  1.14  macallan static void vcons_do_scroll(struct vcons_screen *);
     80  1.14  macallan #endif
     81  1.14  macallan 
     82  1.15     joerg static void vcons_do_switch(void *);
     83   1.1  macallan 
     84   1.1  macallan /* methods that work only on text buffers */
     85   1.1  macallan static void vcons_copycols_buffer(void *, int, int, int, int);
     86   1.1  macallan static void vcons_erasecols_buffer(void *, int, int, int, long);
     87   1.1  macallan static void vcons_copyrows_buffer(void *, int, int, int);
     88   1.1  macallan static void vcons_eraserows_buffer(void *, int, int, long);
     89   1.1  macallan static void vcons_putchar_buffer(void *, int, int, u_int, long);
     90   1.1  macallan 
     91   1.1  macallan /*
     92   1.1  macallan  * actual wrapper methods which call both the _buffer ones above and the
     93   1.1  macallan  * driver supplied ones to do the drawing
     94   1.1  macallan  */
     95   1.1  macallan static void vcons_copycols(void *, int, int, int, int);
     96   1.1  macallan static void vcons_erasecols(void *, int, int, int, long);
     97   1.1  macallan static void vcons_copyrows(void *, int, int, int);
     98   1.1  macallan static void vcons_eraserows(void *, int, int, long);
     99   1.1  macallan static void vcons_putchar(void *, int, int, u_int, long);
    100  1.25  macallan #ifdef VCONS_DRAW_INTR
    101  1.30   mlelstv static void vcons_erasecols_cached(void *, int, int, int, long);
    102  1.30   mlelstv static void vcons_eraserows_cached(void *, int, int, long);
    103  1.25  macallan static void vcons_putchar_cached(void *, int, int, u_int, long);
    104  1.25  macallan #endif
    105   1.1  macallan static void vcons_cursor(void *, int, int, int);
    106  1.48  macallan static void vcons_cursor_noread(void *, int, int, int);
    107   1.1  macallan 
    108  1.17  macallan /*
    109  1.17  macallan  * methods that avoid framebuffer reads
    110  1.17  macallan  */
    111  1.17  macallan static void vcons_copycols_noread(void *, int, int, int, int);
    112  1.17  macallan static void vcons_copyrows_noread(void *, int, int, int);
    113  1.17  macallan 
    114  1.17  macallan 
    115  1.14  macallan /* support for reading/writing text buffers. For wsmoused */
    116   1.6      jmmv static int  vcons_putwschar(struct vcons_screen *, struct wsdisplay_char *);
    117   1.6      jmmv static int  vcons_getwschar(struct vcons_screen *, struct wsdisplay_char *);
    118   1.1  macallan 
    119   1.1  macallan static void vcons_lock(struct vcons_screen *);
    120   1.1  macallan static void vcons_unlock(struct vcons_screen *);
    121   1.1  macallan 
    122  1.20  jmcneill #ifdef VCONS_DRAW_INTR
    123  1.20  jmcneill static void vcons_intr(void *);
    124  1.22  jmcneill static void vcons_softintr(void *);
    125  1.47  jmcneill static void vcons_init_thread(void *);
    126  1.20  jmcneill #endif
    127   1.1  macallan 
    128  1.57  riastrad static inline bool
    129  1.57  riastrad vcons_use_intr(const struct vcons_screen *scr)
    130  1.57  riastrad {
    131  1.57  riastrad #ifdef VCONS_DRAW_INTR
    132  1.57  riastrad 	return scr->scr_vd->use_intr;
    133  1.57  riastrad #else
    134  1.57  riastrad 	return false;
    135  1.57  riastrad #endif
    136  1.57  riastrad }
    137  1.57  riastrad 
    138  1.58  riastrad static inline void
    139  1.58  riastrad vcons_dirty(struct vcons_screen *scr)
    140  1.58  riastrad {
    141  1.58  riastrad #ifdef VCONS_DRAW_INTR
    142  1.59  riastrad 	membar_release();
    143  1.58  riastrad 	atomic_inc_uint(&scr->scr_dirty);
    144  1.58  riastrad #endif
    145  1.58  riastrad }
    146  1.58  riastrad 
    147  1.47  jmcneill static int
    148  1.47  jmcneill vcons_init_common(struct vcons_data *vd, void *cookie,
    149  1.47  jmcneill     struct wsscreen_descr *def, struct wsdisplay_accessops *ao,
    150  1.47  jmcneill     int enable_intr)
    151   1.1  macallan {
    152   1.2  macallan 
    153   1.2  macallan 	/* zero out everything so we can rely on untouched fields being 0 */
    154   1.3  macallan 	memset(vd, 0, sizeof(struct vcons_data));
    155  1.47  jmcneill 
    156   1.1  macallan 	vd->cookie = cookie;
    157   1.1  macallan 
    158   1.1  macallan 	vd->init_screen = vcons_dummy_init_screen;
    159   1.1  macallan 	vd->show_screen_cb = NULL;
    160   1.1  macallan 
    161   1.6      jmmv 	/* keep a copy of the accessops that we replace below with our
    162   1.6      jmmv 	 * own wrappers */
    163   1.6      jmmv 	vd->ioctl = ao->ioctl;
    164   1.6      jmmv 
    165   1.6      jmmv 	/* configure the accessops */
    166   1.6      jmmv 	ao->ioctl = vcons_ioctl;
    167   1.1  macallan 	ao->alloc_screen = vcons_alloc_screen;
    168   1.1  macallan 	ao->free_screen = vcons_free_screen;
    169   1.1  macallan 	ao->show_screen = vcons_show_screen;
    170  1.37  macallan 	ao->load_font = vcons_load_font;
    171  1.14  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
    172  1.14  macallan 	ao->scroll = vcons_scroll;
    173  1.14  macallan #endif
    174   1.1  macallan 
    175   1.1  macallan 	LIST_INIT(&vd->screens);
    176   1.1  macallan 	vd->active = NULL;
    177   1.1  macallan 	vd->wanted = NULL;
    178   1.1  macallan 	vd->currenttype = def;
    179  1.37  macallan 	vd->defaulttype = def;
    180  1.42   mlelstv 	callout_init(&vd->switch_callout, 0);
    181  1.15     joerg 	callout_setfunc(&vd->switch_callout, vcons_do_switch, vd);
    182  1.25  macallan #ifdef VCONS_DRAW_INTR
    183  1.25  macallan 	vd->cells = 0;
    184  1.25  macallan 	vd->attrs = NULL;
    185  1.25  macallan 	vd->chars = NULL;
    186  1.25  macallan 	vd->cursor_offset = -1;
    187  1.25  macallan #endif
    188   1.1  macallan 
    189   1.1  macallan 	/*
    190   1.1  macallan 	 * a lock to serialize access to the framebuffer.
    191   1.1  macallan 	 * when switching screens we need to make sure there's no rasops
    192   1.1  macallan 	 * operation in progress
    193   1.1  macallan 	 */
    194   1.1  macallan #ifdef DIAGNOSTIC
    195   1.1  macallan 	vd->switch_poll_count = 0;
    196   1.1  macallan #endif
    197  1.20  jmcneill #ifdef VCONS_DRAW_INTR
    198  1.47  jmcneill 	if (enable_intr) {
    199  1.47  jmcneill 		vd->intr_softint = softint_establish(SOFTINT_SERIAL,
    200  1.47  jmcneill 		    vcons_softintr, vd);
    201  1.47  jmcneill 		callout_init(&vd->intr, CALLOUT_MPSAFE);
    202  1.47  jmcneill 		callout_setfunc(&vd->intr, vcons_intr, vd);
    203  1.47  jmcneill 		vd->intr_valid = 1;
    204  1.47  jmcneill 
    205  1.47  jmcneill 		if (kthread_create(PRI_NONE, 0, NULL, vcons_init_thread, vd,
    206  1.47  jmcneill 		    NULL, "vcons_init") != 0) {
    207  1.47  jmcneill 			printf("%s: unable to create thread.\n", __func__);
    208  1.47  jmcneill 			return -1;
    209  1.47  jmcneill 		}
    210  1.47  jmcneill 	}
    211  1.20  jmcneill #endif
    212   1.1  macallan 	return 0;
    213   1.1  macallan }
    214   1.1  macallan 
    215  1.47  jmcneill int
    216  1.47  jmcneill vcons_init(struct vcons_data *vd, void *cookie,
    217  1.47  jmcneill     struct wsscreen_descr *def, struct wsdisplay_accessops *ao)
    218  1.47  jmcneill {
    219  1.47  jmcneill 	return vcons_init_common(vd, cookie, def, ao, 1);
    220  1.47  jmcneill }
    221  1.47  jmcneill 
    222  1.47  jmcneill int
    223  1.47  jmcneill vcons_earlyinit(struct vcons_data *vd, void *cookie,
    224  1.47  jmcneill     struct wsscreen_descr *def, struct wsdisplay_accessops *ao)
    225  1.47  jmcneill {
    226  1.47  jmcneill 	return vcons_init_common(vd, cookie, def, ao, 0);
    227  1.47  jmcneill }
    228  1.47  jmcneill 
    229   1.1  macallan static void
    230   1.1  macallan vcons_lock(struct vcons_screen *scr)
    231   1.1  macallan {
    232   1.1  macallan #ifdef VCONS_PARANOIA
    233   1.1  macallan 	int s;
    234   1.1  macallan 
    235   1.1  macallan 	s = splhigh();
    236   1.1  macallan #endif
    237   1.1  macallan 	SCREEN_BUSY(scr);
    238   1.1  macallan #ifdef VCONS_PARANOIA
    239   1.1  macallan 	splx(s);
    240   1.1  macallan #endif
    241   1.1  macallan }
    242   1.1  macallan 
    243   1.1  macallan static void
    244   1.1  macallan vcons_unlock(struct vcons_screen *scr)
    245   1.1  macallan {
    246   1.1  macallan #ifdef VCONS_PARANOIA
    247   1.1  macallan 	int s;
    248   1.1  macallan 
    249   1.1  macallan 	s = splhigh();
    250   1.1  macallan #endif
    251   1.1  macallan 	SCREEN_IDLE(scr);
    252   1.1  macallan #ifdef VCONS_PARANOIA
    253   1.1  macallan 	splx(s);
    254   1.1  macallan #endif
    255   1.1  macallan }
    256   1.1  macallan 
    257   1.1  macallan static void
    258   1.9  christos vcons_dummy_init_screen(void *cookie,
    259   1.9  christos     struct vcons_screen *scr, int exists,
    260   1.9  christos     long *defattr)
    261   1.1  macallan {
    262   1.1  macallan 
    263   1.1  macallan 	/*
    264   1.1  macallan 	 * default init_screen() method.
    265   1.1  macallan 	 * Needs to be overwritten so we bitch and whine in case anyone ends
    266   1.1  macallan 	 * up in here.
    267   1.1  macallan 	 */
    268   1.1  macallan 	printf("vcons_init_screen: dummy function called. Your driver is "
    269   1.1  macallan 	       "supposed to supply a replacement for proper operation\n");
    270   1.1  macallan }
    271   1.1  macallan 
    272  1.37  macallan static int
    273  1.37  macallan vcons_alloc_buffers(struct vcons_data *vd, struct vcons_screen *scr)
    274   1.1  macallan {
    275   1.1  macallan 	struct rasops_info *ri = &scr->scr_ri;
    276   1.1  macallan 	int cnt, i;
    277  1.25  macallan #ifdef VCONS_DRAW_INTR
    278  1.25  macallan 	int size;
    279  1.25  macallan #endif
    280   1.1  macallan 
    281  1.55  riastrad 	/*
    282  1.55  riastrad 	 * we allocate both chars and attributes in one chunk, attributes first
    283  1.55  riastrad 	 * because they have the (potentially) bigger alignment
    284  1.37  macallan 	 */
    285  1.37  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
    286  1.37  macallan 	cnt = (ri->ri_rows + WSDISPLAY_SCROLLBACK_LINES) * ri->ri_cols;
    287  1.37  macallan 	scr->scr_lines_in_buffer = WSDISPLAY_SCROLLBACK_LINES;
    288  1.37  macallan 	scr->scr_current_line = 0;
    289  1.37  macallan 	scr->scr_line_wanted = 0;
    290  1.37  macallan 	scr->scr_offset_to_zero = ri->ri_cols * WSDISPLAY_SCROLLBACK_LINES;
    291  1.37  macallan 	scr->scr_current_offset = scr->scr_offset_to_zero;
    292  1.37  macallan #else
    293  1.37  macallan 	cnt = ri->ri_rows * ri->ri_cols;
    294  1.37  macallan #endif
    295  1.55  riastrad 	scr->scr_attrs = malloc(cnt * (sizeof(long) +
    296  1.37  macallan 	    sizeof(uint32_t)), M_DEVBUF, M_WAITOK);
    297  1.37  macallan 	if (scr->scr_attrs == NULL)
    298  1.37  macallan 		return ENOMEM;
    299  1.37  macallan 
    300  1.37  macallan 	scr->scr_chars = (uint32_t *)&scr->scr_attrs[cnt];
    301  1.37  macallan 
    302  1.55  riastrad 	/*
    303  1.55  riastrad 	 * fill the attribute buffer with *defattr, chars with 0x20
    304  1.37  macallan 	 * since we don't know if the driver tries to mimic firmware output or
    305  1.37  macallan 	 * reset everything we do nothing to VRAM here, any driver that feels
    306  1.37  macallan 	 * the need to clear screen or something will have to do it on its own
    307  1.37  macallan 	 * Additional screens will start out in the background anyway so
    308  1.37  macallan 	 * cleaning or not only really affects the initial console screen
    309  1.37  macallan 	 */
    310  1.37  macallan 	for (i = 0; i < cnt; i++) {
    311  1.37  macallan 		scr->scr_attrs[i] = scr->scr_defattr;
    312  1.37  macallan 		scr->scr_chars[i] = 0x20;
    313  1.37  macallan 	}
    314  1.37  macallan 
    315  1.37  macallan #ifdef VCONS_DRAW_INTR
    316  1.37  macallan 	size = ri->ri_cols * ri->ri_rows;
    317  1.37  macallan 	if (size > vd->cells) {
    318  1.37  macallan 		if (vd->chars != NULL) free(vd->chars, M_DEVBUF);
    319  1.37  macallan 		if (vd->attrs != NULL) free(vd->attrs, M_DEVBUF);
    320  1.37  macallan 		vd->cells = size;
    321  1.37  macallan 		vd->chars = malloc(size * sizeof(uint32_t), M_DEVBUF,
    322  1.37  macallan 		    M_WAITOK|M_ZERO);
    323  1.37  macallan 		vd->attrs = malloc(size * sizeof(long), M_DEVBUF,
    324  1.37  macallan 		    M_WAITOK|M_ZERO);
    325  1.37  macallan 		vcons_invalidate_cache(vd);
    326  1.37  macallan 	} else if (SCREEN_IS_VISIBLE(scr))
    327  1.37  macallan 		vcons_invalidate_cache(vd);
    328  1.37  macallan #endif
    329  1.37  macallan 	return 0;
    330  1.37  macallan }
    331  1.37  macallan 
    332  1.37  macallan int
    333  1.37  macallan vcons_init_screen(struct vcons_data *vd, struct vcons_screen *scr,
    334  1.37  macallan     int existing, long *defattr)
    335  1.37  macallan {
    336  1.37  macallan 	struct rasops_info *ri = &scr->scr_ri;
    337  1.37  macallan 	int i;
    338  1.37  macallan 
    339   1.1  macallan 	scr->scr_cookie = vd->cookie;
    340   1.4  jmcneill 	scr->scr_vd = scr->scr_origvd = vd;
    341  1.14  macallan 	scr->scr_busy = 0;
    342  1.50  macallan 
    343  1.37  macallan 	if (scr->scr_type == NULL)
    344  1.37  macallan 		scr->scr_type = vd->defaulttype;
    345  1.55  riastrad 
    346   1.1  macallan 	/*
    347   1.1  macallan 	 * call the driver-supplied init_screen function which is expected
    348   1.1  macallan 	 * to set up rasops_info, override cursor() and probably others
    349   1.1  macallan 	 */
    350   1.1  macallan 	vd->init_screen(vd->cookie, scr, existing, defattr);
    351   1.1  macallan 
    352  1.55  riastrad 	/*
    353  1.55  riastrad 	 * save the non virtual console aware rasops and replace them with
    354   1.1  macallan 	 * our wrappers
    355   1.1  macallan 	 */
    356   1.1  macallan 	vd->eraserows = ri->ri_ops.eraserows;
    357   1.1  macallan 	vd->erasecols = ri->ri_ops.erasecols;
    358  1.37  macallan 	scr->putchar   = ri->ri_ops.putchar;
    359   1.1  macallan 
    360  1.18  macallan 	if (scr->scr_flags & VCONS_NO_COPYCOLS) {
    361  1.19  macallan 		vd->copycols  = vcons_copycols_noread;
    362  1.18  macallan 	} else {
    363  1.19  macallan 		vd->copycols = ri->ri_ops.copycols;
    364  1.18  macallan 	}
    365  1.18  macallan 
    366  1.18  macallan 	if (scr->scr_flags & VCONS_NO_COPYROWS) {
    367  1.19  macallan 		vd->copyrows  = vcons_copyrows_noread;
    368  1.17  macallan 	} else {
    369  1.19  macallan 		vd->copyrows = ri->ri_ops.copyrows;
    370  1.17  macallan 	}
    371  1.17  macallan 
    372  1.48  macallan 	if (scr->scr_flags & VCONS_NO_CURSOR) {
    373  1.50  macallan 		vd->cursor  = vcons_cursor_noread;
    374  1.48  macallan 	} else {
    375  1.50  macallan 		vd->cursor = ri->ri_ops.cursor;
    376  1.48  macallan 	}
    377  1.48  macallan 
    378  1.55  riastrad 	ri->ri_ops.eraserows = vcons_eraserows;
    379  1.55  riastrad 	ri->ri_ops.erasecols = vcons_erasecols;
    380  1.50  macallan 	ri->ri_ops.putchar   = vcons_putchar;
    381  1.50  macallan 	ri->ri_ops.cursor    = vcons_cursor;
    382  1.19  macallan 	ri->ri_ops.copycols  = vcons_copycols;
    383  1.19  macallan 	ri->ri_ops.copyrows  = vcons_copyrows;
    384  1.19  macallan 
    385  1.19  macallan 
    386   1.1  macallan 	ri->ri_hw = scr;
    387   1.1  macallan 
    388  1.35  christos 	i = ri->ri_ops.allocattr(ri, WS_DEFAULT_FG, WS_DEFAULT_BG, 0, defattr);
    389  1.35  christos 	if (i != 0) {
    390  1.35  christos #ifdef DIAGNOSTIC
    391  1.35  christos 		printf("vcons: error allocating attribute %d\n", i);
    392  1.35  christos #endif
    393  1.35  christos 		scr->scr_defattr = 0;
    394  1.35  christos 	} else
    395  1.35  christos 		scr->scr_defattr = *defattr;
    396   1.1  macallan 
    397  1.37  macallan 	vcons_alloc_buffers(vd, scr);
    398  1.25  macallan 
    399   1.2  macallan 	if(vd->active == NULL) {
    400   1.2  macallan 		vd->active = scr;
    401   1.2  macallan 		SCREEN_VISIBLE(scr);
    402   1.2  macallan 	}
    403  1.55  riastrad 
    404   1.1  macallan 	if (existing) {
    405   1.2  macallan 		SCREEN_VISIBLE(scr);
    406   1.2  macallan 		vd->active = scr;
    407   1.1  macallan 	} else {
    408   1.2  macallan 		SCREEN_INVISIBLE(scr);
    409   1.1  macallan 	}
    410  1.55  riastrad 
    411   1.1  macallan 	LIST_INSERT_HEAD(&vd->screens, scr, next);
    412   1.1  macallan 	return 0;
    413   1.1  macallan }
    414   1.1  macallan 
    415  1.37  macallan static int
    416  1.37  macallan vcons_load_font(void *v, void *cookie, struct wsdisplay_font *f)
    417  1.37  macallan {
    418  1.37  macallan 	struct vcons_data *vd = v;
    419  1.37  macallan 	struct vcons_screen *scr = cookie;
    420  1.37  macallan 	struct rasops_info *ri;
    421  1.37  macallan 	struct wsdisplay_font *font;
    422  1.37  macallan 	int flags = WSFONT_FIND_BITMAP, fcookie;
    423  1.37  macallan 
    424  1.37  macallan 	/* see if we're asked to add a font or use it */
    425  1.37  macallan 	if (scr == NULL)
    426  1.37  macallan 		return 0;
    427  1.37  macallan 
    428  1.37  macallan 	ri = &scr->scr_ri;
    429  1.37  macallan 
    430  1.37  macallan 	/* see if the driver knows how to handle multiple fonts */
    431  1.37  macallan 	if ((scr->scr_flags & VCONS_LOADFONT) == 0) {
    432  1.37  macallan 		return EOPNOTSUPP;
    433  1.37  macallan 	}
    434  1.37  macallan 
    435  1.37  macallan 	/* now see what fonts we can use */
    436  1.37  macallan 	if (ri->ri_flg & RI_ENABLE_ALPHA) {
    437  1.37  macallan 		flags |= WSFONT_FIND_ALPHA;
    438  1.37  macallan 	}
    439  1.37  macallan 
    440  1.37  macallan 	fcookie = wsfont_find(f->name, 0, 0, 0, 0, 0, flags);
    441  1.37  macallan 	if (fcookie == -1)
    442  1.37  macallan 		return EINVAL;
    443  1.37  macallan 
    444  1.37  macallan 	wsfont_lock(fcookie, &font);
    445  1.37  macallan 	if (font == NULL)
    446  1.37  macallan 		return EINVAL;
    447  1.37  macallan 
    448  1.37  macallan 	/* ok, we got a font. Now clear the screen with the old parameters */
    449  1.37  macallan 	if (SCREEN_IS_VISIBLE(scr))
    450  1.37  macallan 		vd->eraserows(ri, 0, ri->ri_rows, scr->scr_defattr);
    451  1.37  macallan 
    452  1.37  macallan 	vcons_lock(vd->active);
    453  1.37  macallan #ifdef VCONS_DRAW_INTR
    454  1.37  macallan 	callout_halt(&vd->intr, NULL);
    455  1.37  macallan #endif
    456  1.37  macallan 	/* set the new font and re-initialize things */
    457  1.37  macallan 	ri->ri_font = font;
    458  1.37  macallan 	wsfont_unlock(ri->ri_wsfcookie);
    459  1.37  macallan 	ri->ri_wsfcookie = fcookie;
    460  1.37  macallan 
    461  1.37  macallan 	vd->init_screen(vd->cookie, scr, 1, &scr->scr_defattr);
    462  1.37  macallan 	DPRINTF("caps %x %x\n", scr->scr_type->capabilities, ri->ri_caps);
    463  1.37  macallan 	if (scr->scr_type->capabilities & WSSCREEN_RESIZE) {
    464  1.37  macallan 		scr->scr_type->nrows = ri->ri_rows;
    465  1.37  macallan 		scr->scr_type->ncols = ri->ri_cols;
    466  1.37  macallan 		DPRINTF("new size %d %d\n", ri->ri_rows, ri->ri_cols);
    467  1.37  macallan 	}
    468  1.37  macallan 
    469  1.37  macallan 
    470  1.37  macallan 	/* now, throw the old buffers away */
    471  1.37  macallan 	if (scr->scr_attrs)
    472  1.37  macallan 		free(scr->scr_attrs, M_DEVBUF);
    473  1.37  macallan 	/* allocate new buffers */
    474  1.37  macallan 	vcons_alloc_buffers(vd, scr);
    475  1.55  riastrad 
    476  1.55  riastrad 	/* save the potentially changed ri_ops */
    477  1.40       rin 	vd->eraserows = ri->ri_ops.eraserows;
    478  1.40       rin 	vd->erasecols = ri->ri_ops.erasecols;
    479  1.37  macallan 	scr->putchar   = ri->ri_ops.putchar;
    480  1.40       rin 	vd->cursor    = ri->ri_ops.cursor;
    481  1.40       rin 
    482  1.40       rin 	if (scr->scr_flags & VCONS_NO_COPYCOLS) {
    483  1.40       rin 		vd->copycols  = vcons_copycols_noread;
    484  1.40       rin 	} else {
    485  1.40       rin 		vd->copycols = ri->ri_ops.copycols;
    486  1.40       rin 	}
    487  1.40       rin 
    488  1.40       rin 	if (scr->scr_flags & VCONS_NO_COPYROWS) {
    489  1.40       rin 		vd->copyrows  = vcons_copyrows_noread;
    490  1.40       rin 	} else {
    491  1.40       rin 		vd->copyrows = ri->ri_ops.copyrows;
    492  1.40       rin 	}
    493  1.37  macallan 
    494  1.50  macallan 	if (scr->scr_flags & VCONS_NO_CURSOR) {
    495  1.50  macallan 		vd->cursor  = vcons_cursor_noread;
    496  1.50  macallan 	} else {
    497  1.50  macallan 		vd->cursor = ri->ri_ops.cursor;
    498  1.50  macallan 	}
    499  1.50  macallan 
    500  1.37  macallan 	/* and put our wrappers back */
    501  1.55  riastrad 	ri->ri_ops.eraserows = vcons_eraserows;
    502  1.55  riastrad 	ri->ri_ops.erasecols = vcons_erasecols;
    503  1.37  macallan 	ri->ri_ops.putchar   = vcons_putchar;
    504  1.50  macallan 	ri->ri_ops.cursor    = vcons_cursor;
    505  1.37  macallan 	ri->ri_ops.copycols  = vcons_copycols;
    506  1.37  macallan 	ri->ri_ops.copyrows  = vcons_copyrows;
    507  1.37  macallan 	vcons_unlock(vd->active);
    508  1.38  macallan 
    509  1.38  macallan 	/* notify things that we're about to redraw */
    510  1.38  macallan 	if (vd->show_screen_cb != NULL)
    511  1.38  macallan 		vd->show_screen_cb(scr, vd->show_screen_cookie);
    512  1.55  riastrad 
    513  1.37  macallan #ifdef VCONS_DRAW_INTR
    514  1.37  macallan 	/*
    515  1.37  macallan 	 * XXX
    516  1.55  riastrad 	 * Something(tm) craps all over VRAM somewhere up there if we're
    517  1.37  macallan 	 * using VCONS_DRAW_INTR. Until I figure out what causes it, just
    518  1.37  macallan 	 * redraw the screen for now.
    519  1.37  macallan 	 */
    520  1.37  macallan 	vcons_redraw_screen(vd->active);
    521  1.37  macallan 	callout_schedule(&vd->intr, mstohz(33));
    522  1.37  macallan #endif
    523  1.37  macallan 	/* no need to draw anything, wsdisplay should reset the terminal */
    524  1.37  macallan 
    525  1.37  macallan 	return 0;
    526  1.55  riastrad }
    527  1.37  macallan 
    528   1.1  macallan static void
    529  1.15     joerg vcons_do_switch(void *arg)
    530   1.1  macallan {
    531  1.15     joerg 	struct vcons_data *vd = arg;
    532   1.1  macallan 	struct vcons_screen *scr, *oldscr;
    533   1.1  macallan 
    534   1.1  macallan 	scr = vd->wanted;
    535   1.1  macallan 	if (!scr) {
    536   1.1  macallan 		printf("vcons_switch_screen: disappeared\n");
    537   1.1  macallan 		vd->switch_cb(vd->switch_cb_arg, EIO, 0);
    538   1.1  macallan 		return;
    539   1.1  macallan 	}
    540   1.1  macallan 	oldscr = vd->active; /* can be NULL! */
    541   1.1  macallan 
    542  1.55  riastrad 	/*
    543   1.1  macallan 	 * if there's an old, visible screen we mark it invisible and wait
    544  1.55  riastrad 	 * until it's not busy so we can safely switch
    545   1.1  macallan 	 */
    546   1.1  macallan 	if (oldscr != NULL) {
    547   1.1  macallan 		SCREEN_INVISIBLE(oldscr);
    548   1.1  macallan 		if (SCREEN_IS_BUSY(oldscr)) {
    549  1.15     joerg 			callout_schedule(&vd->switch_callout, 1);
    550   1.1  macallan #ifdef DIAGNOSTIC
    551   1.1  macallan 			/* bitch if we wait too long */
    552   1.1  macallan 			vd->switch_poll_count++;
    553   1.1  macallan 			if (vd->switch_poll_count > 100) {
    554   1.1  macallan 				panic("vcons: screen still busy");
    555   1.1  macallan 			}
    556   1.1  macallan #endif
    557   1.1  macallan 			return;
    558   1.1  macallan 		}
    559   1.1  macallan 		/* invisible screen -> no visible cursor image */
    560   1.1  macallan 		oldscr->scr_ri.ri_flg &= ~RI_CURSOR;
    561   1.1  macallan #ifdef DIAGNOSTIC
    562   1.1  macallan 		vd->switch_poll_count = 0;
    563   1.1  macallan #endif
    564   1.1  macallan 	}
    565   1.1  macallan 
    566   1.1  macallan 	if (scr == oldscr)
    567   1.1  macallan 		return;
    568   1.1  macallan 
    569   1.1  macallan #ifdef DIAGNOSTIC
    570   1.1  macallan 	if (SCREEN_IS_VISIBLE(scr))
    571  1.14  macallan 		printf("vcons_switch_screen: already active");
    572   1.1  macallan #endif
    573   1.1  macallan 
    574   1.1  macallan #ifdef notyet
    575   1.1  macallan 	if (vd->currenttype != type) {
    576   1.1  macallan 		vcons_set_screentype(vd, type);
    577   1.1  macallan 		vd->currenttype = type;
    578   1.1  macallan 	}
    579   1.1  macallan #endif
    580   1.1  macallan 
    581   1.1  macallan 	SCREEN_VISIBLE(scr);
    582   1.1  macallan 	vd->active = scr;
    583   1.1  macallan 	vd->wanted = NULL;
    584   1.1  macallan 
    585  1.37  macallan #ifdef VCONS_DRAW_INTR
    586  1.37  macallan 	vcons_invalidate_cache(vd);
    587  1.37  macallan #endif
    588  1.37  macallan 
    589   1.1  macallan 	if (vd->show_screen_cb != NULL)
    590  1.38  macallan 		vd->show_screen_cb(scr, vd->show_screen_cookie);
    591   1.1  macallan 
    592   1.1  macallan 	if ((scr->scr_flags & VCONS_NO_REDRAW) == 0)
    593   1.1  macallan 		vcons_redraw_screen(scr);
    594   1.1  macallan 
    595   1.1  macallan 	if (vd->switch_cb)
    596   1.1  macallan 		vd->switch_cb(vd->switch_cb_arg, 0, 0);
    597   1.1  macallan }
    598   1.1  macallan 
    599   1.1  macallan void
    600   1.1  macallan vcons_redraw_screen(struct vcons_screen *scr)
    601   1.1  macallan {
    602  1.28  macallan 	uint32_t *charptr = scr->scr_chars, c;
    603  1.28  macallan 	long *attrptr = scr->scr_attrs, a, last_a = 0, mask, cmp, acmp;
    604   1.1  macallan 	struct rasops_info *ri = &scr->scr_ri;
    605  1.25  macallan 	struct vcons_data *vd = scr->scr_vd;
    606  1.28  macallan 	int i, j, offset, boffset = 0, start = -1;
    607   1.1  macallan 
    608  1.28  macallan 	mask = 0x00ff00ff;	/* background and flags */
    609  1.36  macallan 	cmp = 0xffffffff;	/* never match anything */
    610   1.1  macallan 	vcons_lock(scr);
    611   1.5  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
    612   1.1  macallan 
    613   1.1  macallan 		/*
    614   1.1  macallan 		 * only clear the screen when RI_FULLCLEAR is set since we're
    615   1.1  macallan 		 * going to overwrite every single character cell anyway
    616   1.1  macallan 		 */
    617   1.1  macallan 		if (ri->ri_flg & RI_FULLCLEAR) {
    618  1.25  macallan 			vd->eraserows(ri, 0, ri->ri_rows,
    619   1.1  macallan 			    scr->scr_defattr);
    620  1.28  macallan 			cmp = scr->scr_defattr & mask;
    621   1.1  macallan 		}
    622   1.1  macallan 
    623   1.1  macallan 		/* redraw the screen */
    624  1.14  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
    625  1.14  macallan 		offset = scr->scr_current_offset;
    626  1.14  macallan #else
    627   1.1  macallan 		offset = 0;
    628  1.14  macallan #endif
    629   1.1  macallan 		for (i = 0; i < ri->ri_rows; i++) {
    630  1.28  macallan 			start = -1;
    631   1.1  macallan 			for (j = 0; j < ri->ri_cols; j++) {
    632   1.1  macallan 				/*
    633  1.55  riastrad 				 * no need to use the wrapper function - we
    634   1.1  macallan 				 * don't change any characters or attributes
    635   1.1  macallan 				 * and we already made sure the screen we're
    636   1.1  macallan 				 * working on is visible
    637   1.1  macallan 				 */
    638  1.28  macallan 				c = charptr[offset];
    639  1.28  macallan 				a = attrptr[offset];
    640  1.28  macallan 				acmp = a & mask;
    641  1.28  macallan 				if (c == ' ') {
    642  1.28  macallan 					/*
    643  1.28  macallan 					 * if we already erased the background
    644  1.55  riastrad 					 * and if this blank uses the same
    645  1.48  macallan 					 * colour and flags we don't need to do
    646  1.28  macallan 					 * anything here
    647  1.28  macallan 					 */
    648  1.45  macallan 					if (acmp == cmp && start == -1)
    649  1.28  macallan 						goto next;
    650  1.28  macallan 					/*
    651  1.28  macallan 					 * see if we can optimize things a
    652  1.28  macallan 					 * little bit by drawing stretches of
    653  1.28  macallan 					 * blanks using erasecols
    654  1.28  macallan 					 */
    655  1.55  riastrad 
    656  1.28  macallan 					if (start == -1) {
    657  1.28  macallan 						start = j;
    658  1.28  macallan 						last_a = acmp;
    659  1.28  macallan 					} else if (acmp != last_a) {
    660  1.28  macallan 						/*
    661  1.28  macallan 						 * different attr, need to
    662  1.55  riastrad 						 * flush & restart
    663  1.28  macallan 						 */
    664  1.28  macallan 						vd->erasecols(ri, i, start,
    665  1.28  macallan 						    j - start, last_a);
    666  1.36  macallan 						start = j;
    667  1.36  macallan 						last_a = acmp;
    668  1.28  macallan 					}
    669  1.28  macallan 				} else {
    670  1.28  macallan 					if (start != -1) {
    671  1.28  macallan 						vd->erasecols(ri, i, start,
    672  1.28  macallan 						    j - start, last_a);
    673  1.28  macallan 						start = -1;
    674  1.28  macallan 					}
    675  1.55  riastrad 
    676  1.37  macallan 					scr->putchar(ri, i, j, c, a);
    677  1.28  macallan 				}
    678  1.28  macallan next:
    679  1.25  macallan #ifdef VCONS_DRAW_INTR
    680  1.25  macallan 				vd->chars[boffset] = charptr[offset];
    681  1.25  macallan 				vd->attrs[boffset] = attrptr[offset];
    682  1.25  macallan #endif
    683  1.25  macallan 				offset++;
    684  1.25  macallan 				boffset++;
    685  1.25  macallan 			}
    686  1.28  macallan 			/* end of the line - draw all defered blanks, if any */
    687  1.28  macallan 			if (start != -1) {
    688  1.28  macallan 				vd->erasecols(ri, i, start, j - start, last_a);
    689  1.55  riastrad 			}
    690  1.25  macallan 		}
    691  1.25  macallan 		ri->ri_flg &= ~RI_CURSOR;
    692  1.25  macallan 		scr->scr_vd->cursor(ri, 1, ri->ri_crow, ri->ri_ccol);
    693  1.25  macallan #ifdef VCONS_DRAW_INTR
    694  1.25  macallan 		vd->cursor_offset = ri->ri_crow * ri->ri_cols + ri->ri_ccol;
    695  1.25  macallan #endif
    696  1.25  macallan 	}
    697  1.25  macallan 	vcons_unlock(scr);
    698  1.25  macallan }
    699  1.25  macallan 
    700  1.25  macallan #ifdef VCONS_DRAW_INTR
    701  1.25  macallan void
    702  1.25  macallan vcons_update_screen(struct vcons_screen *scr)
    703  1.25  macallan {
    704  1.27  macallan 	uint32_t *charptr = scr->scr_chars;
    705  1.25  macallan 	long *attrptr = scr->scr_attrs;
    706  1.25  macallan 	struct rasops_info *ri = &scr->scr_ri;
    707  1.25  macallan 	struct vcons_data *vd = scr->scr_vd;
    708  1.25  macallan 	int i, j, offset, boffset = 0;
    709  1.25  macallan 
    710  1.25  macallan 	vcons_lock(scr);
    711  1.25  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
    712  1.25  macallan 
    713  1.25  macallan 		/* redraw the screen */
    714  1.25  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
    715  1.25  macallan 		offset = scr->scr_current_offset;
    716  1.25  macallan #else
    717  1.25  macallan 		offset = 0;
    718  1.25  macallan #endif
    719  1.25  macallan 		/*
    720  1.25  macallan 		 * we mark the character cell occupied by the cursor as dirty
    721  1.25  macallan 		 * so we don't have to deal with it
    722  1.25  macallan 		 * notice that this isn't necessarily the position where rasops
    723  1.25  macallan 		 * thinks it is, just where we drew it the last time
    724  1.25  macallan 		 */
    725  1.25  macallan 		if (vd->cursor_offset >= 0)
    726  1.25  macallan 			vd->attrs[vd->cursor_offset] = 0xffffffff;
    727  1.25  macallan 
    728  1.25  macallan 		for (i = 0; i < ri->ri_rows; i++) {
    729  1.25  macallan 			for (j = 0; j < ri->ri_cols; j++) {
    730  1.25  macallan 				/*
    731  1.55  riastrad 				 * no need to use the wrapper function - we
    732  1.25  macallan 				 * don't change any characters or attributes
    733  1.25  macallan 				 * and we already made sure the screen we're
    734  1.25  macallan 				 * working on is visible
    735  1.25  macallan 				 */
    736  1.25  macallan 				if ((vd->chars[boffset] != charptr[offset]) ||
    737  1.25  macallan 				    (vd->attrs[boffset] != attrptr[offset])) {
    738  1.55  riastrad 					scr->putchar(ri, i, j,
    739  1.25  macallan 				 	   charptr[offset], attrptr[offset]);
    740  1.25  macallan 					vd->chars[boffset] = charptr[offset];
    741  1.25  macallan 					vd->attrs[boffset] = attrptr[offset];
    742  1.25  macallan 				}
    743   1.1  macallan 				offset++;
    744  1.25  macallan 				boffset++;
    745   1.1  macallan 			}
    746   1.1  macallan 		}
    747   1.1  macallan 		ri->ri_flg &= ~RI_CURSOR;
    748   1.1  macallan 		scr->scr_vd->cursor(ri, 1, ri->ri_crow, ri->ri_ccol);
    749  1.25  macallan 		vd->cursor_offset = ri->ri_crow * ri->ri_cols + ri->ri_ccol;
    750   1.1  macallan 	}
    751   1.1  macallan 	vcons_unlock(scr);
    752   1.1  macallan }
    753  1.25  macallan #endif
    754   1.1  macallan 
    755   1.1  macallan static int
    756  1.10  christos vcons_ioctl(void *v, void *vs, u_long cmd, void *data, int flag,
    757   1.6      jmmv 	struct lwp *l)
    758   1.6      jmmv {
    759   1.6      jmmv 	struct vcons_data *vd = v;
    760  1.27  macallan 	int error = 0;
    761  1.27  macallan 
    762   1.6      jmmv 
    763   1.6      jmmv 	switch (cmd) {
    764   1.6      jmmv 	case WSDISPLAYIO_GETWSCHAR:
    765   1.6      jmmv 		error = vcons_getwschar((struct vcons_screen *)vs,
    766   1.6      jmmv 			(struct wsdisplay_char *)data);
    767   1.6      jmmv 		break;
    768   1.6      jmmv 
    769   1.6      jmmv 	case WSDISPLAYIO_PUTWSCHAR:
    770   1.6      jmmv 		error = vcons_putwschar((struct vcons_screen *)vs,
    771   1.6      jmmv 			(struct wsdisplay_char *)data);
    772   1.6      jmmv 		break;
    773   1.6      jmmv 
    774  1.27  macallan 	case WSDISPLAYIO_SET_POLLING: {
    775  1.27  macallan 		int poll = *(int *)data;
    776  1.27  macallan 
    777  1.27  macallan 		/* first call the driver's ioctl handler */
    778  1.27  macallan 		if (vd->ioctl != NULL)
    779  1.27  macallan 			error = (*vd->ioctl)(v, vs, cmd, data, flag, l);
    780  1.27  macallan 		if (poll) {
    781  1.27  macallan 			vcons_enable_polling(vd);
    782  1.27  macallan 			vcons_hard_switch(LIST_FIRST(&vd->screens));
    783  1.27  macallan 		} else
    784  1.27  macallan 			vcons_disable_polling(vd);
    785  1.27  macallan 		}
    786  1.27  macallan 		break;
    787  1.27  macallan 
    788   1.6      jmmv 	default:
    789   1.6      jmmv 		if (vd->ioctl != NULL)
    790   1.6      jmmv 			error = (*vd->ioctl)(v, vs, cmd, data, flag, l);
    791   1.6      jmmv 		else
    792   1.6      jmmv 			error = EPASSTHROUGH;
    793   1.6      jmmv 	}
    794   1.6      jmmv 
    795   1.6      jmmv 	return error;
    796   1.6      jmmv }
    797   1.6      jmmv 
    798   1.6      jmmv static int
    799   1.1  macallan vcons_alloc_screen(void *v, const struct wsscreen_descr *type, void **cookiep,
    800   1.1  macallan     int *curxp, int *curyp, long *defattrp)
    801   1.1  macallan {
    802   1.1  macallan 	struct vcons_data *vd = v;
    803   1.1  macallan 	struct vcons_screen *scr;
    804  1.37  macallan 	struct wsscreen_descr *t = __UNCONST(type);
    805   1.1  macallan 	int ret;
    806   1.1  macallan 
    807   1.1  macallan 	scr = malloc(sizeof(struct vcons_screen), M_DEVBUF, M_WAITOK | M_ZERO);
    808   1.1  macallan 	if (scr == NULL)
    809   1.1  macallan 		return ENOMEM;
    810   1.1  macallan 
    811  1.55  riastrad 	scr->scr_flags = 0;
    812   1.2  macallan 	scr->scr_status = 0;
    813   1.2  macallan 	scr->scr_busy = 0;
    814  1.37  macallan 	scr->scr_type = __UNCONST(type);
    815   1.1  macallan 
    816   1.1  macallan 	ret = vcons_init_screen(vd, scr, 0, defattrp);
    817   1.1  macallan 	if (ret != 0) {
    818   1.1  macallan 		free(scr, M_DEVBUF);
    819   1.1  macallan 		return ret;
    820   1.1  macallan 	}
    821  1.37  macallan 	if (t->capabilities & WSSCREEN_RESIZE) {
    822  1.37  macallan 		t->nrows = scr->scr_ri.ri_rows;
    823  1.37  macallan 		t->ncols = scr->scr_ri.ri_cols;
    824  1.37  macallan 	}
    825   1.1  macallan 
    826   1.1  macallan 	if (vd->active == NULL) {
    827   1.1  macallan 		SCREEN_VISIBLE(scr);
    828   1.1  macallan 		vd->active = scr;
    829   1.1  macallan 		vd->currenttype = type;
    830   1.1  macallan 	}
    831   1.1  macallan 
    832   1.1  macallan 	*cookiep = scr;
    833   1.1  macallan 	*curxp = scr->scr_ri.ri_ccol;
    834   1.1  macallan 	*curyp = scr->scr_ri.ri_crow;
    835   1.1  macallan 	return 0;
    836   1.1  macallan }
    837   1.1  macallan 
    838   1.1  macallan static void
    839   1.1  macallan vcons_free_screen(void *v, void *cookie)
    840   1.1  macallan {
    841   1.1  macallan 	struct vcons_data *vd = v;
    842   1.1  macallan 	struct vcons_screen *scr = cookie;
    843   1.1  macallan 
    844   1.1  macallan 	vcons_lock(scr);
    845   1.1  macallan 	/* there should be no rasops activity here */
    846   1.1  macallan 
    847   1.1  macallan 	LIST_REMOVE(scr, next);
    848   1.1  macallan 
    849   1.1  macallan 	if ((scr->scr_flags & VCONS_SCREEN_IS_STATIC) == 0) {
    850   1.1  macallan 		free(scr->scr_attrs, M_DEVBUF);
    851   1.1  macallan 		free(scr, M_DEVBUF);
    852   1.1  macallan 	} else {
    853   1.1  macallan 		/*
    854   1.1  macallan 		 * maybe we should just restore the old rasops_info methods
    855   1.1  macallan 		 * and free the character/attribute buffer here?
    856   1.1  macallan 		 */
    857   1.1  macallan #ifdef VCONS_DEBUG
    858   1.1  macallan 		panic("vcons_free_screen: console");
    859   1.1  macallan #else
    860   1.1  macallan 		printf("vcons_free_screen: console\n");
    861   1.1  macallan #endif
    862   1.1  macallan 	}
    863   1.1  macallan 
    864   1.1  macallan 	if (vd->active == scr)
    865   1.1  macallan 		vd->active = NULL;
    866   1.1  macallan }
    867   1.1  macallan 
    868   1.1  macallan static int
    869   1.9  christos vcons_show_screen(void *v, void *cookie, int waitok,
    870   1.1  macallan     void (*cb)(void *, int, int), void *cb_arg)
    871   1.1  macallan {
    872   1.1  macallan 	struct vcons_data *vd = v;
    873   1.1  macallan 	struct vcons_screen *scr;
    874   1.1  macallan 
    875   1.1  macallan 	scr = cookie;
    876   1.1  macallan 	if (scr == vd->active)
    877   1.1  macallan 		return 0;
    878   1.1  macallan 
    879   1.1  macallan 	vd->wanted = scr;
    880   1.1  macallan 	vd->switch_cb = cb;
    881   1.1  macallan 	vd->switch_cb_arg = cb_arg;
    882   1.1  macallan 	if (cb) {
    883  1.15     joerg 		callout_schedule(&vd->switch_callout, 0);
    884   1.1  macallan 		return EAGAIN;
    885   1.1  macallan 	}
    886   1.1  macallan 
    887   1.1  macallan 	vcons_do_switch(vd);
    888   1.1  macallan 	return 0;
    889   1.1  macallan }
    890   1.1  macallan 
    891   1.1  macallan /* wrappers for rasops_info methods */
    892   1.1  macallan 
    893   1.1  macallan static void
    894   1.1  macallan vcons_copycols_buffer(void *cookie, int row, int srccol, int dstcol, int ncols)
    895   1.1  macallan {
    896   1.1  macallan 	struct rasops_info *ri = cookie;
    897   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    898   1.1  macallan 	int from = srccol + row * ri->ri_cols;
    899   1.1  macallan 	int to = dstcol + row * ri->ri_cols;
    900  1.56  riastrad 	int offset = vcons_offset_to_zero(scr);
    901  1.14  macallan 
    902  1.14  macallan 	memmove(&scr->scr_attrs[offset + to], &scr->scr_attrs[offset + from],
    903  1.14  macallan 	    ncols * sizeof(long));
    904  1.14  macallan 	memmove(&scr->scr_chars[offset + to], &scr->scr_chars[offset + from],
    905  1.27  macallan 	    ncols * sizeof(uint32_t));
    906  1.20  jmcneill 
    907  1.58  riastrad 	vcons_dirty(scr);
    908   1.1  macallan }
    909   1.1  macallan 
    910   1.1  macallan static void
    911   1.1  macallan vcons_copycols(void *cookie, int row, int srccol, int dstcol, int ncols)
    912   1.1  macallan {
    913   1.1  macallan 	struct rasops_info *ri = cookie;
    914   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    915   1.1  macallan 
    916   1.1  macallan 	vcons_copycols_buffer(cookie, row, srccol, dstcol, ncols);
    917   1.1  macallan 
    918  1.57  riastrad 	if (vcons_use_intr(scr))
    919  1.21  jmcneill 		return;
    920  1.21  jmcneill 
    921   1.1  macallan 	vcons_lock(scr);
    922   1.5  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
    923  1.34   mlelstv #if defined(VCONS_DRAW_INTR)
    924  1.34   mlelstv 		vcons_update_screen(scr);
    925  1.34   mlelstv #else
    926  1.26  macallan 		scr->scr_vd->copycols(cookie, row, srccol, dstcol, ncols);
    927  1.30   mlelstv #endif
    928   1.1  macallan 	}
    929   1.1  macallan 	vcons_unlock(scr);
    930   1.1  macallan }
    931   1.1  macallan 
    932   1.1  macallan static void
    933  1.17  macallan vcons_copycols_noread(void *cookie, int row, int srccol, int dstcol, int ncols)
    934  1.17  macallan {
    935  1.17  macallan 	struct rasops_info *ri = cookie;
    936  1.17  macallan 	struct vcons_screen *scr = ri->ri_hw;
    937  1.37  macallan #ifdef VCONS_DRAW_INTR
    938  1.25  macallan 	struct vcons_data *vd = scr->scr_vd;
    939  1.37  macallan #endif
    940  1.17  macallan 
    941  1.30   mlelstv 	vcons_lock(scr);
    942  1.17  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
    943  1.25  macallan 		int pos, c, offset, ppos;
    944  1.17  macallan 
    945  1.17  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
    946  1.17  macallan 		offset = scr->scr_current_offset;
    947  1.17  macallan #else
    948  1.17  macallan 		offset = 0;
    949  1.17  macallan #endif
    950  1.25  macallan 		ppos = ri->ri_cols * row + dstcol;
    951  1.25  macallan 		pos = ppos + offset;
    952  1.17  macallan 		for (c = dstcol; c < (dstcol + ncols); c++) {
    953  1.25  macallan #ifdef VCONS_DRAW_INTR
    954  1.25  macallan 			if ((scr->scr_chars[pos] != vd->chars[ppos]) ||
    955  1.25  macallan 			    (scr->scr_attrs[pos] != vd->attrs[ppos])) {
    956  1.55  riastrad 				scr->putchar(cookie, row, c,
    957  1.25  macallan 				   scr->scr_chars[pos], scr->scr_attrs[pos]);
    958  1.25  macallan 				vd->chars[ppos] = scr->scr_chars[pos];
    959  1.25  macallan 				vd->attrs[ppos] = scr->scr_attrs[pos];
    960  1.25  macallan 			}
    961  1.25  macallan #else
    962  1.37  macallan 			scr->putchar(cookie, row, c, scr->scr_chars[pos],
    963  1.25  macallan 			    scr->scr_attrs[pos]);
    964  1.25  macallan #endif
    965  1.17  macallan 			pos++;
    966  1.25  macallan 			ppos++;
    967  1.17  macallan 		}
    968  1.55  riastrad 		if (ri->ri_crow == row &&
    969  1.50  macallan 		   (ri->ri_ccol >= dstcol && ri->ri_ccol < (dstcol + ncols )))
    970  1.50  macallan 			ri->ri_flg &= ~RI_CURSOR;
    971  1.17  macallan 	}
    972  1.30   mlelstv 	vcons_unlock(scr);
    973  1.17  macallan }
    974  1.17  macallan 
    975  1.17  macallan static void
    976   1.1  macallan vcons_erasecols_buffer(void *cookie, int row, int startcol, int ncols, long fillattr)
    977   1.1  macallan {
    978   1.1  macallan 	struct rasops_info *ri = cookie;
    979   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
    980   1.1  macallan 	int start = startcol + row * ri->ri_cols;
    981   1.1  macallan 	int end = start + ncols, i;
    982  1.56  riastrad 	int offset = vcons_offset_to_zero(scr);
    983  1.14  macallan 
    984  1.14  macallan 	for (i = start; i < end; i++) {
    985  1.14  macallan 		scr->scr_attrs[offset + i] = fillattr;
    986  1.14  macallan 		scr->scr_chars[offset + i] = 0x20;
    987  1.14  macallan 	}
    988  1.20  jmcneill 
    989  1.58  riastrad 	vcons_dirty(scr);
    990   1.1  macallan }
    991   1.1  macallan 
    992  1.25  macallan #ifdef VCONS_DRAW_INTR
    993  1.25  macallan static void
    994  1.25  macallan vcons_erasecols_cached(void *cookie, int row, int startcol, int ncols, long fillattr)
    995  1.25  macallan {
    996  1.25  macallan 	struct rasops_info *ri = cookie;
    997  1.25  macallan 	struct vcons_screen *scr = ri->ri_hw;
    998  1.25  macallan 	struct vcons_data *vd = scr->scr_vd;
    999  1.25  macallan 	int i, pos = row * ri->ri_cols + startcol;
   1000  1.25  macallan 
   1001  1.54   mlelstv 	vd->erasecols(cookie, row, startcol, ncols, fillattr);
   1002  1.25  macallan 	for (i = pos; i < ncols; i++) {
   1003  1.54   mlelstv 		vd->chars[i] = scr->scr_chars[i];
   1004  1.54   mlelstv 		vd->attrs[i] = scr->scr_attrs[i];
   1005  1.25  macallan 	}
   1006  1.25  macallan }
   1007  1.25  macallan #endif
   1008  1.25  macallan 
   1009   1.1  macallan static void
   1010   1.1  macallan vcons_erasecols(void *cookie, int row, int startcol, int ncols, long fillattr)
   1011   1.1  macallan {
   1012   1.1  macallan 	struct rasops_info *ri = cookie;
   1013   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1014   1.1  macallan 
   1015   1.1  macallan 	vcons_erasecols_buffer(cookie, row, startcol, ncols, fillattr);
   1016   1.1  macallan 
   1017  1.57  riastrad 	if (vcons_use_intr(scr))
   1018  1.21  jmcneill 		return;
   1019  1.21  jmcneill 
   1020   1.1  macallan 	vcons_lock(scr);
   1021   1.5  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
   1022  1.25  macallan #ifdef VCONS_DRAW_INTR
   1023  1.55  riastrad 		vcons_erasecols_cached(cookie, row, startcol, ncols,
   1024  1.30   mlelstv 		    fillattr);
   1025  1.25  macallan #else
   1026  1.25  macallan 		scr->scr_vd->erasecols(cookie, row, startcol, ncols, fillattr);
   1027  1.55  riastrad #endif
   1028   1.1  macallan 	}
   1029   1.1  macallan 	vcons_unlock(scr);
   1030   1.1  macallan }
   1031   1.1  macallan 
   1032   1.1  macallan static void
   1033   1.1  macallan vcons_copyrows_buffer(void *cookie, int srcrow, int dstrow, int nrows)
   1034   1.1  macallan {
   1035   1.1  macallan 	struct rasops_info *ri = cookie;
   1036   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1037   1.1  macallan 	int from, to, len;
   1038  1.56  riastrad 	int offset = vcons_offset_to_zero(scr);
   1039  1.14  macallan 
   1040  1.14  macallan 	/* do we need to scroll the back buffer? */
   1041  1.56  riastrad 	if (dstrow == 0 && offset != 0) {
   1042  1.14  macallan 		from = ri->ri_cols * srcrow;
   1043  1.14  macallan 		to = ri->ri_cols * dstrow;
   1044  1.14  macallan 
   1045  1.14  macallan 		memmove(&scr->scr_attrs[to], &scr->scr_attrs[from],
   1046  1.56  riastrad 		    offset * sizeof(long));
   1047  1.14  macallan 		memmove(&scr->scr_chars[to], &scr->scr_chars[from],
   1048  1.56  riastrad 		    offset * sizeof(uint32_t));
   1049  1.14  macallan 	}
   1050  1.14  macallan 	from = ri->ri_cols * srcrow + offset;
   1051  1.14  macallan 	to = ri->ri_cols * dstrow + offset;
   1052  1.55  riastrad 	len = ri->ri_cols * nrows;
   1053  1.55  riastrad 
   1054   1.1  macallan 	memmove(&scr->scr_attrs[to], &scr->scr_attrs[from],
   1055   1.1  macallan 	    len * sizeof(long));
   1056   1.1  macallan 	memmove(&scr->scr_chars[to], &scr->scr_chars[from],
   1057  1.27  macallan 	    len * sizeof(uint32_t));
   1058  1.20  jmcneill 
   1059  1.58  riastrad 	vcons_dirty(scr);
   1060   1.1  macallan }
   1061   1.1  macallan 
   1062   1.1  macallan static void
   1063   1.1  macallan vcons_copyrows(void *cookie, int srcrow, int dstrow, int nrows)
   1064   1.1  macallan {
   1065   1.1  macallan 	struct rasops_info *ri = cookie;
   1066   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1067   1.1  macallan 
   1068   1.1  macallan 	vcons_copyrows_buffer(cookie, srcrow, dstrow, nrows);
   1069   1.1  macallan 
   1070  1.57  riastrad 	if (vcons_use_intr(scr))
   1071  1.21  jmcneill 		return;
   1072  1.21  jmcneill 
   1073   1.1  macallan 	vcons_lock(scr);
   1074   1.5  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
   1075  1.34   mlelstv #if defined(VCONS_DRAW_INTR)
   1076  1.34   mlelstv 		vcons_update_screen(scr);
   1077  1.34   mlelstv #else
   1078  1.26  macallan 		scr->scr_vd->copyrows(cookie, srcrow, dstrow, nrows);
   1079  1.30   mlelstv #endif
   1080   1.1  macallan 	}
   1081   1.1  macallan 	vcons_unlock(scr);
   1082   1.1  macallan }
   1083   1.1  macallan 
   1084   1.1  macallan static void
   1085  1.17  macallan vcons_copyrows_noread(void *cookie, int srcrow, int dstrow, int nrows)
   1086  1.17  macallan {
   1087  1.17  macallan 	struct rasops_info *ri = cookie;
   1088  1.17  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1089  1.37  macallan #ifdef VCONS_DRAW_INTR
   1090  1.25  macallan 	struct vcons_data *vd = scr->scr_vd;
   1091  1.37  macallan #endif
   1092  1.30   mlelstv 	vcons_lock(scr);
   1093  1.17  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
   1094  1.25  macallan 		int pos, l, c, offset, ppos;
   1095  1.17  macallan 
   1096  1.17  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
   1097  1.17  macallan 		offset = scr->scr_current_offset;
   1098  1.17  macallan #else
   1099  1.17  macallan 		offset = 0;
   1100  1.17  macallan #endif
   1101  1.25  macallan 		ppos = ri->ri_cols * dstrow;
   1102  1.25  macallan 		pos = ppos + offset;
   1103  1.17  macallan 		for (l = dstrow; l < (dstrow + nrows); l++) {
   1104  1.17  macallan 			for (c = 0; c < ri->ri_cols; c++) {
   1105  1.25  macallan #ifdef VCONS_DRAW_INTR
   1106  1.25  macallan 				if ((scr->scr_chars[pos] != vd->chars[ppos]) ||
   1107  1.25  macallan 				    (scr->scr_attrs[pos] != vd->attrs[ppos])) {
   1108  1.55  riastrad 					scr->putchar(cookie, l, c,
   1109  1.25  macallan 					   scr->scr_chars[pos], scr->scr_attrs[pos]);
   1110  1.25  macallan 					vd->chars[ppos] = scr->scr_chars[pos];
   1111  1.25  macallan 					vd->attrs[ppos] = scr->scr_attrs[pos];
   1112  1.25  macallan 				}
   1113  1.25  macallan #else
   1114  1.37  macallan 				scr->putchar(cookie, l, c, scr->scr_chars[pos],
   1115  1.25  macallan 				    scr->scr_attrs[pos]);
   1116  1.25  macallan #endif
   1117  1.17  macallan 				pos++;
   1118  1.25  macallan 				ppos++;
   1119  1.17  macallan 			}
   1120  1.17  macallan 		}
   1121  1.50  macallan 		if (ri->ri_crow >= dstrow && ri->ri_crow < (dstrow + nrows))
   1122  1.50  macallan 			ri->ri_flg &= ~RI_CURSOR;
   1123  1.17  macallan 	}
   1124  1.30   mlelstv 	vcons_unlock(scr);
   1125  1.17  macallan }
   1126  1.17  macallan 
   1127  1.17  macallan static void
   1128   1.1  macallan vcons_eraserows_buffer(void *cookie, int row, int nrows, long fillattr)
   1129   1.1  macallan {
   1130   1.1  macallan 	struct rasops_info *ri = cookie;
   1131   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1132  1.56  riastrad 	int offset = vcons_offset_to_zero(scr);
   1133   1.1  macallan 	int start, end, i;
   1134   1.1  macallan 
   1135  1.14  macallan 	start = ri->ri_cols * row + offset;
   1136  1.14  macallan 	end = ri->ri_cols * (row + nrows) + offset;
   1137   1.1  macallan 
   1138   1.1  macallan 	for (i = start; i < end; i++) {
   1139   1.1  macallan 		scr->scr_attrs[i] = fillattr;
   1140   1.1  macallan 		scr->scr_chars[i] = 0x20;
   1141   1.1  macallan 	}
   1142  1.20  jmcneill 
   1143  1.58  riastrad 	vcons_dirty(scr);
   1144   1.1  macallan }
   1145   1.1  macallan 
   1146  1.30   mlelstv #ifdef VCONS_DRAW_INTR
   1147  1.30   mlelstv static void
   1148  1.30   mlelstv vcons_eraserows_cached(void *cookie, int row, int nrows, long fillattr)
   1149  1.30   mlelstv {
   1150  1.30   mlelstv 	struct rasops_info *ri = cookie;
   1151  1.30   mlelstv 	struct vcons_screen *scr = ri->ri_hw;
   1152  1.30   mlelstv 	struct vcons_data *vd = scr->scr_vd;
   1153  1.30   mlelstv 	int i, pos = row * ri->ri_cols, end = (row+nrows) * ri->ri_cols;
   1154  1.30   mlelstv 
   1155  1.30   mlelstv 	for (i = pos; i < end; i++) {
   1156  1.30   mlelstv 		vd->chars[i] = 0x20;
   1157  1.30   mlelstv 		vd->attrs[i] = fillattr;
   1158  1.30   mlelstv 	}
   1159  1.30   mlelstv 	vd->eraserows(cookie, row, nrows, fillattr);
   1160  1.30   mlelstv }
   1161  1.30   mlelstv #endif
   1162  1.30   mlelstv 
   1163   1.1  macallan static void
   1164   1.1  macallan vcons_eraserows(void *cookie, int row, int nrows, long fillattr)
   1165   1.1  macallan {
   1166   1.1  macallan 	struct rasops_info *ri = cookie;
   1167   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1168   1.1  macallan 
   1169   1.1  macallan 	vcons_eraserows_buffer(cookie, row, nrows, fillattr);
   1170   1.1  macallan 
   1171  1.57  riastrad 	if (vcons_use_intr(scr))
   1172  1.21  jmcneill 		return;
   1173  1.21  jmcneill 
   1174   1.1  macallan 	vcons_lock(scr);
   1175   1.5  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
   1176  1.30   mlelstv #ifdef VCONS_DRAW_INTR
   1177  1.30   mlelstv 		vcons_eraserows_cached(cookie, row, nrows, fillattr);
   1178  1.30   mlelstv #else
   1179  1.25  macallan 		scr->scr_vd->eraserows(cookie, row, nrows, fillattr);
   1180  1.30   mlelstv #endif
   1181   1.1  macallan 	}
   1182   1.1  macallan 	vcons_unlock(scr);
   1183   1.1  macallan }
   1184   1.1  macallan 
   1185   1.1  macallan static void
   1186   1.1  macallan vcons_putchar_buffer(void *cookie, int row, int col, u_int c, long attr)
   1187   1.1  macallan {
   1188   1.1  macallan 	struct rasops_info *ri = cookie;
   1189   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1190  1.56  riastrad 	int offset = vcons_offset_to_zero(scr);
   1191   1.1  macallan 	int pos;
   1192  1.55  riastrad 
   1193  1.55  riastrad 	if ((row >= 0) && (row < ri->ri_rows) && (col >= 0) &&
   1194  1.14  macallan 	     (col < ri->ri_cols)) {
   1195  1.14  macallan 		pos = col + row * ri->ri_cols;
   1196  1.14  macallan 		scr->scr_attrs[pos + offset] = attr;
   1197  1.14  macallan 		scr->scr_chars[pos + offset] = c;
   1198  1.14  macallan 	}
   1199  1.20  jmcneill 
   1200  1.58  riastrad 	vcons_dirty(scr);
   1201   1.1  macallan }
   1202   1.1  macallan 
   1203  1.25  macallan #ifdef VCONS_DRAW_INTR
   1204  1.25  macallan static void
   1205  1.25  macallan vcons_putchar_cached(void *cookie, int row, int col, u_int c, long attr)
   1206  1.25  macallan {
   1207  1.25  macallan 	struct rasops_info *ri = cookie;
   1208  1.25  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1209  1.25  macallan 	struct vcons_data *vd = scr->scr_vd;
   1210  1.25  macallan 	int pos = row * ri->ri_cols + col;
   1211  1.25  macallan 
   1212  1.25  macallan 	if ((vd->chars == NULL) || (vd->attrs == NULL)) {
   1213  1.37  macallan 		scr->putchar(cookie, row, col, c, attr);
   1214  1.25  macallan 		return;
   1215  1.25  macallan 	}
   1216  1.25  macallan 	if ((vd->chars[pos] != c) || (vd->attrs[pos] != attr)) {
   1217  1.25  macallan 		vd->attrs[pos] = attr;
   1218  1.25  macallan 		vd->chars[pos] = c;
   1219  1.37  macallan 		scr->putchar(cookie, row, col, c, attr);
   1220  1.25  macallan 	}
   1221  1.25  macallan }
   1222  1.25  macallan #endif
   1223  1.25  macallan 
   1224   1.1  macallan static void
   1225   1.1  macallan vcons_putchar(void *cookie, int row, int col, u_int c, long attr)
   1226   1.1  macallan {
   1227   1.1  macallan 	struct rasops_info *ri = cookie;
   1228   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1229  1.55  riastrad 
   1230   1.1  macallan 	vcons_putchar_buffer(cookie, row, col, c, attr);
   1231  1.21  jmcneill 
   1232  1.57  riastrad 	if (vcons_use_intr(scr))
   1233  1.21  jmcneill 		return;
   1234  1.21  jmcneill 
   1235   1.1  macallan 	vcons_lock(scr);
   1236   1.5  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
   1237  1.25  macallan #ifdef VCONS_DRAW_INTR
   1238  1.25  macallan 		vcons_putchar_cached(cookie, row, col, c, attr);
   1239  1.25  macallan #else
   1240  1.49  macallan 		if (row == ri->ri_crow && col == ri->ri_ccol) {
   1241  1.49  macallan 			ri->ri_flg &= ~RI_CURSOR;
   1242  1.49  macallan 		}
   1243  1.37  macallan 		scr->putchar(cookie, row, col, c, attr);
   1244  1.25  macallan #endif
   1245   1.1  macallan 	}
   1246   1.1  macallan 	vcons_unlock(scr);
   1247   1.1  macallan }
   1248   1.1  macallan 
   1249   1.1  macallan static void
   1250   1.1  macallan vcons_cursor(void *cookie, int on, int row, int col)
   1251   1.1  macallan {
   1252   1.1  macallan 	struct rasops_info *ri = cookie;
   1253   1.1  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1254   1.1  macallan 
   1255  1.57  riastrad 	if (vcons_use_intr(scr)) {
   1256  1.21  jmcneill 		vcons_lock(scr);
   1257  1.21  jmcneill 		if (scr->scr_ri.ri_crow != row || scr->scr_ri.ri_ccol != col) {
   1258  1.21  jmcneill 			scr->scr_ri.ri_crow = row;
   1259  1.21  jmcneill 			scr->scr_ri.ri_ccol = col;
   1260  1.58  riastrad 			vcons_dirty(scr);
   1261  1.21  jmcneill 		}
   1262  1.21  jmcneill 		vcons_unlock(scr);
   1263  1.21  jmcneill 		return;
   1264  1.20  jmcneill 	}
   1265  1.21  jmcneill 
   1266  1.21  jmcneill 	vcons_lock(scr);
   1267  1.21  jmcneill 
   1268   1.5  macallan 	if (SCREEN_IS_VISIBLE(scr) && SCREEN_CAN_DRAW(scr)) {
   1269  1.26  macallan 		scr->scr_vd->cursor(cookie, on, row, col);
   1270   1.1  macallan 	} else {
   1271   1.1  macallan 		scr->scr_ri.ri_crow = row;
   1272   1.1  macallan 		scr->scr_ri.ri_ccol = col;
   1273   1.1  macallan 	}
   1274   1.1  macallan 	vcons_unlock(scr);
   1275   1.1  macallan }
   1276   1.1  macallan 
   1277  1.48  macallan static void
   1278  1.48  macallan vcons_cursor_noread(void *cookie, int on, int row, int col)
   1279  1.48  macallan {
   1280  1.48  macallan 	struct rasops_info *ri = cookie;
   1281  1.48  macallan 	struct vcons_screen *scr = ri->ri_hw;
   1282  1.50  macallan 	int offset = 0, ofs;
   1283  1.48  macallan 
   1284  1.48  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
   1285  1.48  macallan 	offset = scr->scr_current_offset;
   1286  1.48  macallan #endif
   1287  1.50  macallan 	ofs = offset + ri->ri_crow * ri->ri_cols + ri->ri_ccol;
   1288  1.55  riastrad 	if ((ri->ri_flg & RI_CURSOR) &&
   1289  1.51  macallan 	   (((scr->scr_flags & VCONS_DONT_READ) != VCONS_DONT_READ) || on)) {
   1290  1.50  macallan 		scr->putchar(cookie, ri->ri_crow, ri->ri_ccol,
   1291  1.50  macallan 		    scr->scr_chars[ofs], scr->scr_attrs[ofs]);
   1292  1.50  macallan 		ri->ri_flg &= ~RI_CURSOR;
   1293  1.50  macallan 	}
   1294  1.50  macallan 	ri->ri_crow = row;
   1295  1.50  macallan 	ri->ri_ccol = col;
   1296  1.50  macallan 	ofs = offset + ri->ri_crow * ri->ri_cols + ri->ri_ccol;
   1297  1.50  macallan 	if (on) {
   1298  1.50  macallan 		scr->putchar(cookie, row, col, scr->scr_chars[ofs],
   1299  1.48  macallan #ifdef VCONS_DEBUG_CURSOR_NOREAD
   1300  1.55  riastrad 		/* draw a red cursor so we can tell which cursor()
   1301  1.50  macallan 		 * implementation is being used */
   1302  1.50  macallan 		    ((scr->scr_attrs[ofs] & 0xff00ffff) ^ 0x0f000000) |
   1303  1.50  macallan 		      0x00010000);
   1304  1.48  macallan #else
   1305  1.50  macallan 		    scr->scr_attrs[ofs] ^ 0x0f0f0000);
   1306  1.48  macallan #endif
   1307  1.50  macallan 		ri->ri_flg |= RI_CURSOR;
   1308  1.48  macallan 	}
   1309  1.48  macallan }
   1310  1.48  macallan 
   1311   1.1  macallan /* methods to read/write characters via ioctl() */
   1312   1.1  macallan 
   1313   1.1  macallan static int
   1314   1.6      jmmv vcons_putwschar(struct vcons_screen *scr, struct wsdisplay_char *wsc)
   1315   1.1  macallan {
   1316   1.1  macallan 	long attr;
   1317   1.6      jmmv 	struct rasops_info *ri;
   1318  1.35  christos 	int error;
   1319   1.6      jmmv 
   1320   1.6      jmmv 	KASSERT(scr != NULL && wsc != NULL);
   1321   1.6      jmmv 
   1322  1.13    rumble 	ri = &scr->scr_ri;
   1323  1.13    rumble 
   1324  1.44  macallan 	/* allow col as linear index if row == 0 */
   1325  1.44  macallan 	if (wsc->row == 0) {
   1326  1.44  macallan 		if (wsc->col < 0 || wsc->col > (ri->ri_cols * ri->ri_rows))
   1327  1.44  macallan 			return EINVAL;
   1328  1.44  macallan 	    	int rem;
   1329  1.44  macallan 	    	rem = wsc->col % ri->ri_cols;
   1330  1.44  macallan 	    	wsc->row = wsc->col / ri->ri_cols;
   1331  1.44  macallan 	    	DPRINTF("off %d -> %d, %d\n", wsc->col, rem, wsc->row);
   1332  1.44  macallan 	    	wsc->col = rem;
   1333  1.44  macallan 	} else {
   1334  1.44  macallan 		if (__predict_false(wsc->col < 0 || wsc->col >= ri->ri_cols))
   1335  1.12       mjf 			return (EINVAL);
   1336  1.55  riastrad 
   1337  1.44  macallan 		if (__predict_false(wsc->row < 0 || wsc->row >= ri->ri_rows))
   1338  1.44  macallan 			return (EINVAL);
   1339  1.44  macallan 	}
   1340  1.14  macallan 
   1341  1.44  macallan 	error = ri->ri_ops.allocattr(ri, wsc->foreground,
   1342  1.44  macallan 	    wsc->background, wsc->flags, &attr);
   1343  1.44  macallan 	if (error)
   1344  1.44  macallan 		return error;
   1345  1.44  macallan 	vcons_putchar(ri, wsc->row, wsc->col, wsc->letter, attr);
   1346  1.60  riastrad 	DPRINTF("vcons_putwschar(%d, %d, %x, %lx\n", wsc->row, wsc->col,
   1347  1.44  macallan 	    wsc->letter, attr);
   1348  1.44  macallan 	return 0;
   1349   1.1  macallan }
   1350   1.1  macallan 
   1351   1.1  macallan static int
   1352   1.6      jmmv vcons_getwschar(struct vcons_screen *scr, struct wsdisplay_char *wsc)
   1353   1.1  macallan {
   1354   1.6      jmmv 	int offset;
   1355   1.1  macallan 	long attr;
   1356   1.6      jmmv 	struct rasops_info *ri;
   1357  1.53   mlelstv 	int fg, bg, ul;
   1358   1.6      jmmv 
   1359   1.6      jmmv 	KASSERT(scr != NULL && wsc != NULL);
   1360   1.6      jmmv 
   1361   1.6      jmmv 	ri = &scr->scr_ri;
   1362   1.1  macallan 
   1363  1.44  macallan 	/* allow col as linear index if row == 0 */
   1364  1.44  macallan 	if (wsc->row == 0) {
   1365  1.44  macallan 		if (wsc->col < 0 || wsc->col > (ri->ri_cols * ri->ri_rows))
   1366  1.44  macallan 			return EINVAL;
   1367  1.44  macallan 	    	int rem;
   1368  1.44  macallan 	    	rem = wsc->col % ri->ri_cols;
   1369  1.44  macallan 	    	wsc->row = wsc->col / ri->ri_cols;
   1370  1.44  macallan 	    	DPRINTF("off %d -> %d, %d\n", wsc->col, rem, wsc->row);
   1371  1.44  macallan 	    	wsc->col = rem;
   1372  1.44  macallan 	} else {
   1373  1.44  macallan 		if (__predict_false(wsc->col < 0 || wsc->col >= ri->ri_cols))
   1374  1.44  macallan 			return (EINVAL);
   1375  1.55  riastrad 
   1376  1.44  macallan 		if (__predict_false(wsc->row < 0 || wsc->row >= ri->ri_rows))
   1377  1.44  macallan 			return (EINVAL);
   1378  1.44  macallan 	}
   1379  1.14  macallan 
   1380  1.44  macallan 	offset = ri->ri_cols * wsc->row + wsc->col;
   1381  1.56  riastrad 	offset += vcons_offset_to_zero(scr);
   1382  1.44  macallan 	wsc->letter = scr->scr_chars[offset];
   1383  1.44  macallan 	attr = scr->scr_attrs[offset];
   1384  1.14  macallan 
   1385  1.60  riastrad 	DPRINTF("vcons_getwschar: %d, %d, %x, %lx\n", wsc->row,
   1386  1.53   mlelstv 	    wsc->col, wsc->letter, attr);
   1387  1.53   mlelstv 
   1388  1.55  riastrad 	/*
   1389  1.44  macallan 	 * this is ugly. We need to break up an attribute into colours and
   1390  1.44  macallan 	 * flags but there's no rasops method to do that so we must rely on
   1391  1.44  macallan 	 * the 'canonical' encoding.
   1392  1.44  macallan 	 */
   1393  1.53   mlelstv 
   1394  1.53   mlelstv 	/* only fetches underline attribute */
   1395  1.53   mlelstv 	/* rasops_unpack_attr(attr, &fg, &bg, &ul); */
   1396  1.53   mlelstv 	fg = (attr >> 24) & 0xf;
   1397  1.53   mlelstv 	bg = (attr >> 16) & 0xf;
   1398  1.53   mlelstv 	ul = (attr & 1);
   1399  1.53   mlelstv 
   1400  1.53   mlelstv 	wsc->foreground = fg;
   1401  1.53   mlelstv 	wsc->background = bg;
   1402  1.53   mlelstv 
   1403  1.53   mlelstv 	/* clear trashed bits and restore underline flag */
   1404  1.53   mlelstv 	attr &= ~(WSATTR_HILIT | WSATTR_BLINK | WSATTR_UNDERLINE);
   1405  1.53   mlelstv 	if (ul)
   1406  1.53   mlelstv 		attr |= WSATTR_UNDERLINE;
   1407  1.53   mlelstv 
   1408  1.53   mlelstv 	/* restore highlight boost */
   1409  1.53   mlelstv 	if (attr & WSATTR_HILIT)
   1410  1.53   mlelstv 		if (wsc->foreground >= 8)
   1411  1.53   mlelstv 			wsc->foreground -= 8;
   1412  1.53   mlelstv 
   1413  1.53   mlelstv 	/* we always use colors, even when not stored */
   1414  1.53   mlelstv 	attr |= WSATTR_WSCOLORS;
   1415  1.44  macallan 	return 0;
   1416  1.14  macallan }
   1417  1.14  macallan 
   1418  1.14  macallan #ifdef WSDISPLAY_SCROLLSUPPORT
   1419  1.14  macallan 
   1420  1.14  macallan static void
   1421  1.14  macallan vcons_scroll(void *cookie, void *vs, int where)
   1422  1.14  macallan {
   1423  1.14  macallan 	struct vcons_screen *scr = vs;
   1424  1.14  macallan 
   1425  1.14  macallan 	if (where == 0) {
   1426  1.14  macallan 		scr->scr_line_wanted = 0;
   1427  1.14  macallan 	} else {
   1428  1.14  macallan 		scr->scr_line_wanted = scr->scr_line_wanted - where;
   1429  1.14  macallan 		if (scr->scr_line_wanted < 0)
   1430  1.14  macallan 			scr->scr_line_wanted = 0;
   1431  1.14  macallan 		if (scr->scr_line_wanted > scr->scr_lines_in_buffer)
   1432  1.14  macallan 			scr->scr_line_wanted = scr->scr_lines_in_buffer;
   1433  1.14  macallan 	}
   1434  1.14  macallan 
   1435  1.14  macallan 	if (scr->scr_line_wanted != scr->scr_current_line) {
   1436  1.14  macallan 
   1437  1.14  macallan 		vcons_do_scroll(scr);
   1438  1.14  macallan 	}
   1439  1.14  macallan }
   1440  1.14  macallan 
   1441  1.14  macallan static void
   1442  1.14  macallan vcons_do_scroll(struct vcons_screen *scr)
   1443  1.14  macallan {
   1444  1.14  macallan 	int dist, from, to, num;
   1445  1.14  macallan 	int r_offset, r_start;
   1446  1.14  macallan 	int i, j;
   1447  1.14  macallan 
   1448  1.14  macallan 	if (scr->scr_line_wanted == scr->scr_current_line)
   1449  1.14  macallan 		return;
   1450  1.14  macallan 	dist = scr->scr_line_wanted - scr->scr_current_line;
   1451  1.14  macallan 	scr->scr_current_line = scr->scr_line_wanted;
   1452  1.14  macallan 	scr->scr_current_offset = scr->scr_ri.ri_cols *
   1453  1.14  macallan 	    (scr->scr_lines_in_buffer - scr->scr_current_line);
   1454  1.14  macallan 	if (abs(dist) >= scr->scr_ri.ri_rows) {
   1455  1.14  macallan 		vcons_redraw_screen(scr);
   1456  1.14  macallan 		return;
   1457  1.14  macallan 	}
   1458  1.14  macallan 	/* scroll and redraw only what we really have to */
   1459  1.14  macallan 	if (dist > 0) {
   1460  1.14  macallan 		/* we scroll down */
   1461  1.14  macallan 		from = 0;
   1462  1.14  macallan 		to = dist;
   1463  1.14  macallan 		num = scr->scr_ri.ri_rows - dist;
   1464  1.14  macallan 		/* now the redraw parameters */
   1465  1.14  macallan 		r_offset = scr->scr_current_offset;
   1466  1.14  macallan 		r_start = 0;
   1467  1.14  macallan 	} else {
   1468  1.14  macallan 		/* scrolling up */
   1469  1.14  macallan 		to = 0;
   1470  1.14  macallan 		from = -dist;
   1471  1.14  macallan 		num = scr->scr_ri.ri_rows + dist;
   1472  1.14  macallan 		r_offset = scr->scr_current_offset + num * scr->scr_ri.ri_cols;
   1473  1.14  macallan 		r_start = num;
   1474  1.14  macallan 	}
   1475  1.14  macallan 	scr->scr_vd->copyrows(scr, from, to, num);
   1476  1.14  macallan 	for (i = 0; i < abs(dist); i++) {
   1477  1.14  macallan 		for (j = 0; j < scr->scr_ri.ri_cols; j++) {
   1478  1.25  macallan #ifdef VCONS_DRAW_INTR
   1479  1.25  macallan 			vcons_putchar_cached(scr, i + r_start, j,
   1480  1.25  macallan 			    scr->scr_chars[r_offset],
   1481  1.25  macallan 			    scr->scr_attrs[r_offset]);
   1482  1.25  macallan #else
   1483  1.37  macallan 			scr->putchar(scr, i + r_start, j,
   1484  1.14  macallan 			    scr->scr_chars[r_offset],
   1485  1.14  macallan 			    scr->scr_attrs[r_offset]);
   1486  1.25  macallan #endif
   1487  1.14  macallan 			r_offset++;
   1488  1.14  macallan 		}
   1489  1.14  macallan 	}
   1490  1.14  macallan 
   1491  1.14  macallan 	if (scr->scr_line_wanted == 0) {
   1492  1.14  macallan 		/* this was a reset - need to draw the cursor */
   1493  1.14  macallan 		scr->scr_ri.ri_flg &= ~RI_CURSOR;
   1494  1.14  macallan 		scr->scr_vd->cursor(scr, 1, scr->scr_ri.ri_crow,
   1495  1.14  macallan 		    scr->scr_ri.ri_ccol);
   1496  1.14  macallan 	}
   1497  1.14  macallan }
   1498  1.14  macallan 
   1499  1.14  macallan #endif /* WSDISPLAY_SCROLLSUPPORT */
   1500  1.14  macallan 
   1501  1.20  jmcneill #ifdef VCONS_DRAW_INTR
   1502  1.20  jmcneill static void
   1503  1.20  jmcneill vcons_intr(void *cookie)
   1504  1.20  jmcneill {
   1505  1.20  jmcneill 	struct vcons_data *vd = cookie;
   1506  1.20  jmcneill 
   1507  1.22  jmcneill 	softint_schedule(vd->intr_softint);
   1508  1.20  jmcneill }
   1509  1.20  jmcneill 
   1510  1.20  jmcneill static void
   1511  1.22  jmcneill vcons_softintr(void *cookie)
   1512  1.20  jmcneill {
   1513  1.20  jmcneill 	struct vcons_data *vd = cookie;
   1514  1.20  jmcneill 	struct vcons_screen *scr = vd->active;
   1515  1.22  jmcneill 	unsigned int dirty;
   1516  1.20  jmcneill 
   1517  1.30   mlelstv 	if (scr && vd->use_intr) {
   1518  1.22  jmcneill 		if (!SCREEN_IS_BUSY(scr)) {
   1519  1.22  jmcneill 			dirty = atomic_swap_uint(&scr->scr_dirty, 0);
   1520  1.59  riastrad 			membar_acquire();
   1521  1.30   mlelstv 			if (vd->use_intr == 2) {
   1522  1.30   mlelstv 				if ((scr->scr_flags & VCONS_NO_REDRAW) == 0) {
   1523  1.30   mlelstv 					vd->use_intr = 1;
   1524  1.30   mlelstv 					vcons_redraw_screen(scr);
   1525  1.30   mlelstv 				}
   1526  1.30   mlelstv 			} else if (dirty > 0) {
   1527  1.22  jmcneill 				if ((scr->scr_flags & VCONS_NO_REDRAW) == 0)
   1528  1.25  macallan 					vcons_update_screen(scr);
   1529  1.22  jmcneill 			}
   1530  1.20  jmcneill 		}
   1531  1.20  jmcneill 	}
   1532  1.20  jmcneill 
   1533  1.20  jmcneill 	callout_schedule(&vd->intr, mstohz(33));
   1534  1.20  jmcneill }
   1535  1.21  jmcneill 
   1536  1.47  jmcneill static void
   1537  1.47  jmcneill vcons_init_thread(void *cookie)
   1538  1.21  jmcneill {
   1539  1.47  jmcneill 	struct vcons_data *vd = (struct vcons_data *)cookie;
   1540  1.39   msaitoh 
   1541  1.30   mlelstv 	vd->use_intr = 2;
   1542  1.21  jmcneill 	callout_schedule(&vd->intr, mstohz(33));
   1543  1.47  jmcneill 	kthread_exit(0);
   1544  1.21  jmcneill }
   1545  1.20  jmcneill #endif /* VCONS_DRAW_INTR */
   1546  1.23  jmcneill 
   1547  1.23  jmcneill void
   1548  1.23  jmcneill vcons_enable_polling(struct vcons_data *vd)
   1549  1.23  jmcneill {
   1550  1.23  jmcneill 	struct vcons_screen *scr = vd->active;
   1551  1.23  jmcneill 
   1552  1.23  jmcneill #ifdef VCONS_DRAW_INTR
   1553  1.23  jmcneill 	vd->use_intr = 0;
   1554  1.23  jmcneill #endif
   1555  1.23  jmcneill 
   1556  1.23  jmcneill 	if (scr && !SCREEN_IS_BUSY(scr)) {
   1557  1.23  jmcneill 		if ((scr->scr_flags & VCONS_NO_REDRAW) == 0)
   1558  1.23  jmcneill 			vcons_redraw_screen(scr);
   1559  1.23  jmcneill 	}
   1560  1.23  jmcneill }
   1561  1.23  jmcneill 
   1562  1.23  jmcneill void
   1563  1.23  jmcneill vcons_disable_polling(struct vcons_data *vd)
   1564  1.23  jmcneill {
   1565  1.23  jmcneill #ifdef VCONS_DRAW_INTR
   1566  1.23  jmcneill 	struct vcons_screen *scr = vd->active;
   1567  1.23  jmcneill 
   1568  1.23  jmcneill 	if (!vd->intr_valid)
   1569  1.23  jmcneill 		return;
   1570  1.23  jmcneill 
   1571  1.30   mlelstv 	vd->use_intr = 2;
   1572  1.23  jmcneill 	if (scr)
   1573  1.58  riastrad 		vcons_dirty(scr);
   1574  1.23  jmcneill #endif
   1575  1.23  jmcneill }
   1576  1.24  jmcneill 
   1577  1.24  jmcneill void
   1578  1.24  jmcneill vcons_hard_switch(struct vcons_screen *scr)
   1579  1.24  jmcneill {
   1580  1.24  jmcneill 	struct vcons_data *vd = scr->scr_vd;
   1581  1.24  jmcneill 	struct vcons_screen *oldscr = vd->active;
   1582  1.24  jmcneill 
   1583  1.24  jmcneill 	if (oldscr) {
   1584  1.24  jmcneill 		SCREEN_INVISIBLE(oldscr);
   1585  1.24  jmcneill 		oldscr->scr_ri.ri_flg &= ~RI_CURSOR;
   1586  1.24  jmcneill 	}
   1587  1.24  jmcneill 	SCREEN_VISIBLE(scr);
   1588  1.24  jmcneill 	vd->active = scr;
   1589  1.24  jmcneill 	vd->wanted = NULL;
   1590  1.24  jmcneill 
   1591  1.24  jmcneill 	if (vd->show_screen_cb != NULL)
   1592  1.38  macallan 		vd->show_screen_cb(scr, vd->show_screen_cookie);
   1593  1.24  jmcneill }
   1594  1.25  macallan 
   1595  1.25  macallan #ifdef VCONS_DRAW_INTR
   1596  1.25  macallan void
   1597  1.25  macallan vcons_invalidate_cache(struct vcons_data *vd)
   1598  1.25  macallan {
   1599  1.25  macallan 	int i;
   1600  1.25  macallan 
   1601  1.43  macallan 	for (i = 0; i < vd->cells; i++) {
   1602  1.25  macallan 		vd->chars[i] = -1;
   1603  1.25  macallan 		vd->attrs[i] = -1;
   1604  1.25  macallan 	}
   1605  1.25  macallan }
   1606  1.25  macallan #endif
   1607