Home | History | Annotate | Line # | Download | only in dev
macfb.c revision 1.5.4.3
      1  1.5.4.3  jdolecek /* $NetBSD: macfb.c,v 1.5.4.3 2002/10/10 18:33:46 jdolecek Exp $ */
      2      1.2    scottr /*
      3      1.2    scottr  * Copyright (c) 1998 Matt DeBergalis
      4      1.2    scottr  * All rights reserved.
      5      1.2    scottr  *
      6      1.2    scottr  * Redistribution and use in source and binary forms, with or without
      7      1.2    scottr  * modification, are permitted provided that the following conditions
      8      1.2    scottr  * are met:
      9      1.2    scottr  * 1. Redistributions of source code must retain the above copyright
     10      1.2    scottr  *    notice, this list of conditions and the following disclaimer.
     11      1.2    scottr  * 2. Redistributions in binary form must reproduce the above copyright
     12      1.2    scottr  *    notice, this list of conditions and the following disclaimer in the
     13      1.2    scottr  *    documentation and/or other materials provided with the distribution.
     14      1.2    scottr  * 3. All advertising materials mentioning features or use of this software
     15      1.2    scottr  *    must display the following acknowledgement:
     16      1.2    scottr  *      This product includes software developed by Matt DeBergalis
     17      1.2    scottr  * 4. The name of the author may not be used to endorse or promote products
     18      1.2    scottr  *    derived from this software without specific prior written permission
     19      1.2    scottr  *
     20      1.2    scottr  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     21      1.2    scottr  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     22      1.2    scottr  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     23      1.2    scottr  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     24      1.2    scottr  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     25      1.2    scottr  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     26      1.2    scottr  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     27      1.2    scottr  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     28      1.2    scottr  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     29      1.2    scottr  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     30      1.2    scottr  */
     31      1.2    scottr 
     32      1.2    scottr #include "opt_wsdisplay_compat.h"
     33      1.2    scottr #include "grf.h"
     34      1.2    scottr 
     35      1.2    scottr #include <sys/cdefs.h>			/* RCS ID & Copyright macro defns */
     36      1.2    scottr 
     37      1.2    scottr #include <sys/param.h>
     38      1.2    scottr #include <sys/systm.h>
     39      1.2    scottr #include <sys/kernel.h>
     40      1.2    scottr #include <sys/device.h>
     41      1.2    scottr #include <sys/malloc.h>
     42      1.2    scottr 
     43      1.2    scottr #include <machine/cpu.h>
     44      1.2    scottr #include <machine/bus.h>
     45      1.2    scottr 
     46      1.2    scottr #include <machine/grfioctl.h>
     47      1.2    scottr #include <mac68k/nubus/nubus.h>
     48      1.2    scottr #include <mac68k/dev/grfvar.h>
     49      1.2    scottr #include <mac68k/dev/macfbvar.h>
     50      1.2    scottr #include <dev/wscons/wsconsio.h>
     51      1.2    scottr 
     52      1.2    scottr #include <dev/rcons/raster.h>
     53      1.2    scottr #include <dev/wscons/wscons_raster.h>
     54      1.2    scottr #include <dev/wscons/wsdisplayvar.h>
     55      1.2    scottr 
     56      1.2    scottr int macfb_match __P((struct device *, struct cfdata *, void *));
     57      1.2    scottr void macfb_attach __P((struct device *, struct device *, void *));
     58      1.2    scottr 
     59  1.5.4.3  jdolecek CFATTACH_DECL(macfb, sizeof(struct macfb_softc),
     60  1.5.4.3  jdolecek     macfb_match, macfb_attach, NULL, NULL);
     61      1.2    scottr 
     62      1.2    scottr const struct wsdisplay_emulops macfb_emulops = {
     63      1.2    scottr 	rcons_cursor,
     64      1.2    scottr 	rcons_mapchar,
     65      1.2    scottr 	rcons_putchar,
     66      1.2    scottr 	rcons_copycols,
     67      1.2    scottr 	rcons_erasecols,
     68      1.2    scottr 	rcons_copyrows,
     69      1.2    scottr 	rcons_eraserows,
     70  1.5.4.2  jdolecek 	rcons_allocattr
     71      1.2    scottr };
     72      1.2    scottr 
     73      1.2    scottr struct wsscreen_descr macfb_stdscreen = {
     74      1.2    scottr 	"std",
     75      1.2    scottr 	0, 0, /* will be filled in -- XXX shouldn't, it's global */
     76      1.2    scottr 	&macfb_emulops,
     77      1.2    scottr 	0, 0,
     78      1.2    scottr 	WSSCREEN_REVERSE
     79      1.2    scottr };
     80      1.2    scottr 
     81      1.2    scottr const struct wsscreen_descr *_macfb_scrlist[] = {
     82      1.2    scottr 	&macfb_stdscreen,
     83      1.2    scottr };
     84      1.2    scottr 
     85      1.2    scottr const struct wsscreen_list macfb_screenlist = {
     86      1.2    scottr 	sizeof(_macfb_scrlist) / sizeof(struct wsscreen_descr *),
     87      1.2    scottr 	_macfb_scrlist
     88      1.2    scottr };
     89      1.2    scottr 
     90      1.2    scottr static int	macfb_ioctl __P((void *, u_long, caddr_t, int, struct proc *));
     91      1.4    simonb static paddr_t	macfb_mmap __P((void *, off_t, int));
     92      1.2    scottr static int	macfb_alloc_screen __P((void *, const struct wsscreen_descr *,
     93      1.2    scottr 		    void **, int *, int *, long *));
     94      1.2    scottr static void	macfb_free_screen __P((void *, void *));
     95      1.2    scottr static int	macfb_show_screen __P((void *, void *, int,
     96      1.2    scottr 		    void (*)(void *, int, int), void *));
     97      1.2    scottr 
     98      1.2    scottr const struct wsdisplay_accessops macfb_accessops = {
     99      1.2    scottr 	macfb_ioctl,
    100      1.2    scottr 	macfb_mmap,
    101      1.2    scottr 	macfb_alloc_screen,
    102      1.2    scottr 	macfb_free_screen,
    103      1.2    scottr 	macfb_show_screen,
    104      1.2    scottr 	0 /* load_font */
    105      1.2    scottr };
    106      1.2    scottr 
    107      1.2    scottr void macfb_init __P((struct macfb_devconfig *));
    108      1.2    scottr 
    109      1.2    scottr paddr_t macfb_consaddr;
    110      1.2    scottr static int macfb_is_console __P((paddr_t addr));
    111      1.2    scottr #ifdef WSDISPLAY_COMPAT_ITEFONT
    112      1.2    scottr static void	init_itefont __P((void));
    113      1.2    scottr #endif /* WSDISPLAY_COMPAT_ITEFONT */
    114      1.2    scottr 
    115      1.2    scottr static struct macfb_devconfig macfb_console_dc;
    116      1.2    scottr 
    117      1.2    scottr /* From Booter via locore */
    118      1.2    scottr extern long		videoaddr;
    119      1.2    scottr extern long		videorowbytes;
    120      1.2    scottr extern long		videobitdepth;
    121      1.2    scottr extern u_long		videosize;
    122      1.2    scottr extern u_int32_t	mac68k_vidlog;
    123      1.2    scottr extern u_int32_t	mac68k_vidphys;
    124      1.2    scottr extern u_int32_t	mac68k_vidlen;
    125      1.2    scottr 
    126      1.2    scottr static int
    127      1.2    scottr macfb_is_console(paddr_t addr)
    128      1.2    scottr {
    129      1.3    scottr 	if (addr != macfb_consaddr &&
    130      1.3    scottr 	    (addr >= 0xf9000000 && addr <= 0xfeffffff)) {
    131      1.3    scottr 		/*
    132      1.3    scottr 		 * This is in the NuBus standard slot space range, so we
    133      1.3    scottr 		 * may well have to look at 0xFssxxxxx, too.  Mask off the
    134      1.3    scottr 		 * slot number and duplicate it in bits 20-23, per IM:V
    135      1.3    scottr 		 * pp 459, 463, and IM:VI ch 30 p 17.
    136      1.3    scottr 		 * Note:  this is an ugly hack and I wish I knew what
    137      1.3    scottr 		 * to do about it.  -- sr
    138      1.3    scottr 		 */
    139      1.3    scottr 		addr = (paddr_t)(((u_long)addr & 0xff0fffff) |
    140      1.3    scottr 		    (((u_long)addr & 0x0f000000) >> 4));
    141      1.3    scottr 	}
    142      1.2    scottr 	return ((mac68k_machine.serial_console & 0x03) == 0
    143      1.2    scottr 	    && (addr == macfb_consaddr));
    144      1.2    scottr }
    145      1.2    scottr 
    146      1.2    scottr void
    147      1.2    scottr macfb_clear(dc)
    148      1.2    scottr 	struct macfb_devconfig *dc;
    149      1.2    scottr {
    150      1.2    scottr 	int i, rows;
    151      1.2    scottr 
    152      1.2    scottr 	/* clear the display */
    153      1.2    scottr 	rows = dc->dc_ht;
    154      1.2    scottr 	for (i = 0; rows-- > 0; i += dc->dc_rowbytes)
    155      1.2    scottr 		memset((u_char *)dc->dc_vaddr + dc->dc_offset + i,
    156      1.2    scottr 		    0, dc->dc_rowbytes);
    157      1.2    scottr }
    158      1.2    scottr 
    159      1.2    scottr void
    160      1.2    scottr macfb_init(dc)
    161      1.2    scottr 	struct macfb_devconfig *dc;
    162      1.2    scottr {
    163      1.2    scottr 	struct raster *rap;
    164      1.2    scottr 	struct rcons *rcp;
    165      1.2    scottr 
    166      1.2    scottr 	macfb_clear(dc);
    167      1.2    scottr 
    168      1.2    scottr #ifdef WSDISPLAY_COMPAT_ITEFONT
    169      1.2    scottr 	init_itefont();
    170      1.2    scottr #endif /* WSDISPLAY_COMPAT_ITEFONT */
    171      1.2    scottr 
    172      1.2    scottr 	rap = &dc->dc_raster;
    173      1.2    scottr 	rap->width = dc->dc_wid;
    174      1.2    scottr 	rap->height = dc->dc_ht;
    175      1.2    scottr 	rap->depth = dc->dc_depth;
    176      1.2    scottr 	rap->linelongs = dc->dc_rowbytes / sizeof(u_int32_t);
    177      1.2    scottr 	rap->pixels = (u_int32_t *)(dc->dc_vaddr + dc->dc_offset);
    178      1.2    scottr 
    179      1.2    scottr 	/* initialize the raster console blitter */
    180      1.2    scottr 	rcp = &dc->dc_rcons;
    181      1.2    scottr 	rcp->rc_sp = rap;
    182      1.2    scottr 	rcp->rc_crow = rcp->rc_ccol = -1;
    183      1.2    scottr 	rcp->rc_crowp = &rcp->rc_crow;
    184      1.2    scottr 	rcp->rc_ccolp = &rcp->rc_ccol;
    185      1.2    scottr 	rcons_init(rcp, 128, 192);
    186      1.2    scottr 
    187      1.2    scottr 	macfb_stdscreen.nrows = dc->dc_rcons.rc_maxrow;
    188      1.2    scottr 	macfb_stdscreen.ncols = dc->dc_rcons.rc_maxcol;
    189      1.2    scottr }
    190      1.2    scottr 
    191      1.2    scottr int
    192      1.2    scottr macfb_match(parent, match, aux)
    193      1.2    scottr 	struct device *parent;
    194      1.2    scottr 	struct cfdata *match;
    195      1.2    scottr 	void *aux;
    196      1.2    scottr {
    197      1.2    scottr 	return (1);
    198      1.2    scottr }
    199      1.2    scottr 
    200      1.2    scottr void
    201      1.2    scottr macfb_attach(parent, self, aux)
    202      1.2    scottr 	struct device *parent;
    203      1.2    scottr 	struct device *self;
    204      1.2    scottr 	void *aux;
    205      1.2    scottr {
    206      1.2    scottr 	struct grfbus_attach_args *ga = aux;
    207      1.2    scottr 	struct grfmode *gm = ga->ga_grfmode;
    208      1.2    scottr 	struct macfb_softc *sc;
    209      1.2    scottr 	struct wsemuldisplaydev_attach_args waa;
    210      1.2    scottr 	int isconsole;
    211      1.2    scottr 
    212      1.2    scottr 	sc = (struct macfb_softc *)self;
    213      1.2    scottr 
    214      1.2    scottr 	printf("\n");
    215      1.2    scottr 
    216      1.2    scottr 	isconsole = macfb_is_console(ga->ga_phys + ga->ga_grfmode->fboff);
    217      1.2    scottr 
    218      1.2    scottr 	if (isconsole) {
    219      1.2    scottr 		sc->sc_dc = &macfb_console_dc;
    220      1.2    scottr 		sc->nscreens = 1;
    221      1.2    scottr 	} else {
    222      1.2    scottr 		sc->sc_dc = malloc(sizeof(struct macfb_devconfig), M_DEVBUF, M_WAITOK);
    223      1.2    scottr 		sc->sc_dc->dc_vaddr = (vaddr_t)gm->fbbase;
    224      1.2    scottr 		sc->sc_dc->dc_paddr = ga->ga_phys;
    225      1.2    scottr 		sc->sc_dc->dc_size = gm->fbsize;
    226      1.2    scottr 
    227      1.2    scottr 		sc->sc_dc->dc_wid = gm->width;
    228      1.2    scottr 		sc->sc_dc->dc_ht = gm->height;
    229      1.2    scottr 		sc->sc_dc->dc_depth = gm->psize;
    230      1.2    scottr 		sc->sc_dc->dc_rowbytes = gm->rowbytes;
    231      1.2    scottr 
    232      1.2    scottr 		sc->sc_dc->dc_offset = gm->fboff;
    233      1.2    scottr 
    234      1.5    scottr 		macfb_clear(sc->sc_dc);
    235      1.2    scottr 
    236      1.2    scottr 		sc->nscreens = 1;
    237      1.2    scottr 	}
    238      1.2    scottr 
    239      1.2    scottr 	/* initialize the raster */
    240      1.2    scottr 	waa.console = isconsole;
    241      1.2    scottr 	waa.scrdata = &macfb_screenlist;
    242      1.2    scottr 	waa.accessops = &macfb_accessops;
    243      1.2    scottr 	waa.accesscookie = sc;
    244      1.2    scottr 
    245      1.2    scottr 	config_found(self, &waa, wsemuldisplaydevprint);
    246      1.2    scottr 
    247      1.2    scottr #if NGRF > 0
    248      1.2    scottr 	grf_attach(sc, self->dv_unit);
    249      1.2    scottr #endif
    250      1.2    scottr }
    251      1.2    scottr 
    252      1.2    scottr 
    253      1.2    scottr int
    254      1.2    scottr macfb_ioctl(v, cmd, data, flag, p)
    255      1.2    scottr 	void *v;
    256      1.2    scottr 	u_long cmd;
    257      1.2    scottr 	caddr_t data;
    258      1.2    scottr 	int flag;
    259      1.2    scottr 	struct proc *p;
    260      1.2    scottr {
    261      1.2    scottr 	struct macfb_softc *sc = v;
    262      1.2    scottr 	struct macfb_devconfig *dc = sc->sc_dc;
    263      1.2    scottr 	struct wsdisplay_fbinfo *wdf;
    264      1.2    scottr 
    265      1.2    scottr 	switch (cmd) {
    266      1.2    scottr 	case WSDISPLAYIO_GTYPE:
    267      1.2    scottr 		*(int *)data = dc->dc_type;
    268      1.2    scottr 		return 0;
    269      1.2    scottr 
    270      1.2    scottr 	case WSDISPLAYIO_GINFO:
    271      1.2    scottr 		wdf = (struct wsdisplay_fbinfo *)data;
    272      1.2    scottr 		wdf->height = dc->dc_raster.height;
    273      1.2    scottr 		wdf->width = dc->dc_raster.width;
    274      1.2    scottr 		wdf->depth = dc->dc_raster.depth;
    275      1.2    scottr 		wdf->cmsize = 256;
    276      1.2    scottr 		return 0;
    277      1.2    scottr 
    278      1.2    scottr 	case WSDISPLAYIO_GCURMAX:
    279      1.2    scottr 	case WSDISPLAYIO_GCURPOS:
    280      1.2    scottr 	case WSDISPLAYIO_GCURSOR:
    281      1.2    scottr 	case WSDISPLAYIO_GETCMAP:
    282      1.2    scottr 	case WSDISPLAYIO_GVIDEO:
    283      1.2    scottr 	case WSDISPLAYIO_PUTCMAP:
    284      1.2    scottr 	case WSDISPLAYIO_SCURPOS:
    285      1.2    scottr 	case WSDISPLAYIO_SCURSOR:
    286      1.2    scottr 	case WSDISPLAYIO_SVIDEO:
    287      1.2    scottr 		/* NONE of these operations are supported. */
    288  1.5.4.1  jdolecek 		return EPASSTHROUGH;
    289      1.2    scottr 	}
    290      1.2    scottr 
    291  1.5.4.1  jdolecek 	return EPASSTHROUGH;
    292      1.2    scottr }
    293      1.2    scottr 
    294      1.4    simonb static paddr_t
    295      1.2    scottr macfb_mmap(v, offset, prot)
    296      1.2    scottr 	void *v;
    297      1.2    scottr 	off_t offset;
    298      1.2    scottr 	int prot;
    299      1.2    scottr {
    300      1.2    scottr 	struct macfb_softc *sc = v;
    301      1.2    scottr 	struct macfb_devconfig *dc = sc->sc_dc;
    302      1.4    simonb 	paddr_t addr;
    303      1.2    scottr 
    304      1.2    scottr 	if (offset >= 0 &&
    305      1.2    scottr 	    offset < m68k_round_page(dc->dc_rowbytes * dc->dc_ht))
    306      1.2    scottr 		addr = m68k_btop(dc->dc_paddr + dc->dc_offset + offset);
    307      1.2    scottr 	else
    308      1.2    scottr 		addr = (-1);	/* XXX bogus */
    309      1.2    scottr 
    310      1.4    simonb 	return addr;
    311      1.2    scottr }
    312      1.2    scottr 
    313      1.2    scottr int
    314      1.2    scottr macfb_alloc_screen(v, type, cookiep, curxp, curyp, defattrp)
    315      1.2    scottr 	void *v;
    316      1.2    scottr 	const struct wsscreen_descr *type;
    317      1.2    scottr 	void **cookiep;
    318      1.2    scottr 	int *curxp, *curyp;
    319      1.2    scottr 	long *defattrp;
    320      1.2    scottr {
    321      1.2    scottr 	struct macfb_softc *sc = v;
    322      1.2    scottr 	long defattr;
    323      1.2    scottr 
    324      1.2    scottr 	if (sc->nscreens > 0)
    325      1.2    scottr 		return (ENOMEM);
    326      1.2    scottr 
    327      1.2    scottr 	*cookiep = &sc->sc_dc->dc_rcons; /* one and only for now */
    328      1.2    scottr 	*curxp = 0;
    329      1.2    scottr 	*curyp = 0;
    330  1.5.4.2  jdolecek 	rcons_allocattr(&sc->sc_dc->dc_rcons, 0, 0, 0, &defattr);
    331      1.2    scottr 	*defattrp = defattr;
    332      1.2    scottr 	sc->nscreens++;
    333      1.2    scottr 	return (0);
    334      1.2    scottr }
    335      1.2    scottr 
    336      1.2    scottr void
    337      1.2    scottr macfb_free_screen(v, cookie)
    338      1.2    scottr 	void *v;
    339      1.2    scottr 	void *cookie;
    340      1.2    scottr {
    341      1.2    scottr 	struct macfb_softc *sc = v;
    342      1.2    scottr 
    343      1.2    scottr 	if (sc->sc_dc == &macfb_console_dc)
    344      1.2    scottr 		panic("cfb_free_screen: console");
    345      1.2    scottr 
    346      1.2    scottr 	sc->nscreens--;
    347      1.2    scottr }
    348      1.2    scottr 
    349      1.2    scottr int
    350      1.2    scottr macfb_show_screen(v, cookie, waitok, cb, cbarg)
    351      1.2    scottr 	void *v;
    352      1.2    scottr 	void *cookie;
    353      1.2    scottr 	int waitok;
    354      1.2    scottr 	void (*cb) __P((void *, int, int));
    355      1.2    scottr 	void *cbarg;
    356      1.2    scottr {
    357      1.2    scottr 	return 0;
    358      1.2    scottr }
    359      1.2    scottr 
    360      1.2    scottr int
    361      1.2    scottr macfb_cnattach(addr)
    362      1.2    scottr 	paddr_t addr;
    363      1.2    scottr {
    364      1.2    scottr 	struct macfb_devconfig *dc = &macfb_console_dc;
    365      1.2    scottr 	long defattr;
    366      1.2    scottr 
    367      1.2    scottr 	dc->dc_vaddr = m68k_trunc_page(videoaddr);
    368      1.2    scottr 	dc->dc_paddr = m68k_trunc_page(mac68k_vidphys);
    369      1.2    scottr 
    370      1.2    scottr 	dc->dc_wid = videosize & 0xffff;
    371      1.2    scottr 	dc->dc_ht = (videosize >> 16) & 0xffff;
    372      1.2    scottr 	dc->dc_depth = videobitdepth;
    373      1.2    scottr 	dc->dc_rowbytes = videorowbytes;
    374      1.2    scottr 
    375      1.2    scottr 	dc->dc_size = (mac68k_vidlen > 0) ?
    376      1.2    scottr 	    mac68k_vidlen : dc->dc_ht * dc->dc_rowbytes;
    377      1.2    scottr 	dc->dc_offset = m68k_page_offset(mac68k_vidphys);
    378      1.2    scottr 
    379      1.2    scottr 	/* set up the display */
    380      1.2    scottr 	macfb_init(&macfb_console_dc);
    381      1.2    scottr 
    382  1.5.4.2  jdolecek 	rcons_allocattr(&dc->dc_rcons, 0, 0, 0, &defattr);
    383      1.2    scottr 
    384      1.2    scottr 	wsdisplay_cnattach(&macfb_stdscreen, &dc->dc_rcons,
    385      1.2    scottr 			0, 0, defattr);
    386      1.2    scottr 
    387      1.2    scottr 	macfb_consaddr = addr;
    388      1.2    scottr 	dc->isconsole = 1;
    389      1.2    scottr 	return (0);
    390      1.2    scottr }
    391      1.2    scottr 
    392      1.2    scottr #ifdef WSDISPLAY_COMPAT_ITEFONT
    393      1.2    scottr #include <mac68k/dev/6x10.h>
    394      1.2    scottr 
    395      1.2    scottr void
    396      1.2    scottr init_itefont()
    397      1.2    scottr {
    398      1.2    scottr 	static int itefont_initted = 0;
    399      1.2    scottr 	int i, j;
    400      1.2    scottr 
    401      1.2    scottr 	extern struct raster_font gallant19;		/* XXX */
    402      1.2    scottr 
    403      1.2    scottr 	if (itefont_initted)
    404      1.2    scottr 		return;
    405      1.2    scottr 	itefont_initted = 1;
    406      1.2    scottr 
    407      1.2    scottr 	/* XXX but we cannot use malloc here... */
    408      1.2    scottr 	gallant19.width = 6;
    409      1.2    scottr 	gallant19.height = 10;
    410      1.2    scottr 	gallant19.ascent = 0;
    411      1.2    scottr 
    412      1.2    scottr 	for (i = 32; i < 128; i++) {
    413      1.2    scottr 		u_int *p;
    414      1.2    scottr 
    415      1.2    scottr 		if (gallant19.chars[i].r == NULL)
    416      1.2    scottr 			continue;
    417      1.2    scottr 
    418      1.2    scottr 		gallant19.chars[i].r->width = 6;
    419      1.2    scottr 		gallant19.chars[i].r->height = 10;
    420      1.2    scottr 		p = gallant19.chars[i].r->pixels;
    421      1.2    scottr 
    422      1.2    scottr 		for (j = 0; j < 10; j++)
    423      1.2    scottr 			*p++ = Font6x10[i * 10 + j] << 26;
    424      1.2    scottr 	}
    425      1.2    scottr }
    426      1.2    scottr #endif /* WSDISPLAY_COMPAT_ITEFONT */
    427