Home | History | Annotate | Line # | Download | only in hpc
bicons.c revision 1.5
      1  1.5    uch /*	$NetBSD: bicons.c,v 1.5 2002/01/02 12:57:49 uch Exp $	*/
      2  1.1    uch 
      3  1.1    uch /*-
      4  1.1    uch  * Copyright (c) 1999-2001
      5  1.1    uch  *         Shin Takemura and PocketBSD Project. All rights reserved.
      6  1.1    uch  *
      7  1.1    uch  * Redistribution and use in source and binary forms, with or without
      8  1.1    uch  * modification, are permitted provided that the following conditions
      9  1.1    uch  * are met:
     10  1.1    uch  * 1. Redistributions of source code must retain the above copyright
     11  1.1    uch  *    notice, this list of conditions and the following disclaimer.
     12  1.1    uch  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1    uch  *    notice, this list of conditions and the following disclaimer in the
     14  1.1    uch  *    documentation and/or other materials provided with the distribution.
     15  1.1    uch  * 3. All advertising materials mentioning features or use of this software
     16  1.1    uch  *    must display the following acknowledgement:
     17  1.1    uch  *	This product includes software developed by the PocketBSD project
     18  1.1    uch  *	and its contributors.
     19  1.1    uch  * 4. Neither the name of the project nor the names of its contributors
     20  1.1    uch  *    may be used to endorse or promote products derived from this software
     21  1.1    uch  *    without specific prior written permission.
     22  1.1    uch  *
     23  1.1    uch  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.1    uch  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.1    uch  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.1    uch  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.1    uch  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.1    uch  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.1    uch  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.1    uch  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.1    uch  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.1    uch  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.1    uch  * SUCH DAMAGE.
     34  1.1    uch  *
     35  1.1    uch  */
     36  1.4  lukem 
     37  1.4  lukem #include <sys/cdefs.h>
     38  1.5    uch __KERNEL_RCSID(0, "$NetBSD: bicons.c,v 1.5 2002/01/02 12:57:49 uch Exp $");
     39  1.1    uch 
     40  1.1    uch #define HALF_FONT
     41  1.1    uch 
     42  1.1    uch #include <sys/param.h>
     43  1.1    uch #include <sys/device.h>
     44  1.1    uch #include <sys/systm.h>
     45  1.1    uch #include <sys/conf.h>
     46  1.1    uch #include <dev/cons.h>
     47  1.1    uch 
     48  1.1    uch #include <machine/bootinfo.h>
     49  1.1    uch #include <machine/bus.h>
     50  1.1    uch #include <machine/platid.h>
     51  1.1    uch #include <machine/stdarg.h>
     52  1.1    uch 
     53  1.1    uch #include <dev/hpc/biconsvar.h>
     54  1.1    uch #include <dev/hpc/bicons.h>
     55  1.1    uch extern u_int8_t font_clR8x8_data[];
     56  1.1    uch #define FONT_HEIGHT	8
     57  1.1    uch #define FONT_WIDTH	1
     58  1.1    uch 
     59  1.1    uch static void put_oxel_D2_M2L_3(u_int8_t *, u_int8_t, u_int8_t);
     60  1.1    uch static void put_oxel_D2_M2L_3x2(u_int8_t *, u_int8_t, u_int8_t);
     61  1.1    uch static void put_oxel_D2_M2L_0(u_int8_t *, u_int8_t, u_int8_t);
     62  1.1    uch static void put_oxel_D2_M2L_0x2(u_int8_t *, u_int8_t, u_int8_t);
     63  1.1    uch static void put_oxel_D4_M2L_F(u_int8_t *, u_int8_t, u_int8_t);
     64  1.1    uch static void put_oxel_D4_M2L_Fx2(u_int8_t *, u_int8_t, u_int8_t);
     65  1.1    uch static void put_oxel_D4_M2L_0(u_int8_t *, u_int8_t, u_int8_t);
     66  1.1    uch static void put_oxel_D4_M2L_0x2(u_int8_t *, u_int8_t, u_int8_t);
     67  1.1    uch static void put_oxel_D8_00(u_int8_t *, u_int8_t, u_int8_t);
     68  1.1    uch static void put_oxel_D8_FF(u_int8_t *, u_int8_t, u_int8_t);
     69  1.1    uch static void put_oxel_D16_0000(u_int8_t *, u_int8_t, u_int8_t);
     70  1.1    uch static void put_oxel_D16_FFFF(u_int8_t *, u_int8_t, u_int8_t);
     71  1.1    uch 
     72  1.5    uch static const struct {
     73  1.1    uch 	int type;
     74  1.1    uch 	char *name;
     75  1.1    uch 	void (*func)(u_int8_t *, u_int8_t, u_int8_t);
     76  1.1    uch 	u_int8_t clear_byte;
     77  1.1    uch 	int16_t oxel_bytes;
     78  1.1    uch } fb_table[] = {
     79  1.1    uch 	{ BIFB_D2_M2L_3,	BIFBN_D2_M2L_3,
     80  1.1    uch 	  put_oxel_D2_M2L_3,	0,	2	},
     81  1.1    uch 	{ BIFB_D2_M2L_3x2,	BIFBN_D2_M2L_3x2,
     82  1.1    uch 	  put_oxel_D2_M2L_3x2,	0,	1	},
     83  1.1    uch 	{ BIFB_D2_M2L_0,	BIFBN_D2_M2L_0,
     84  1.1    uch 	  put_oxel_D2_M2L_0,	0xff,	2	},
     85  1.1    uch 	{ BIFB_D2_M2L_0x2,	BIFBN_D2_M2L_0x2,
     86  1.1    uch 	  put_oxel_D2_M2L_0x2,	0xff,	1	},
     87  1.1    uch 	{ BIFB_D4_M2L_F,	BIFBN_D4_M2L_F,
     88  1.1    uch 	  put_oxel_D4_M2L_F,	0x00,	4	},
     89  1.1    uch 	{ BIFB_D4_M2L_Fx2,	BIFBN_D4_M2L_Fx2,
     90  1.1    uch 	  put_oxel_D4_M2L_Fx2,	0x00,	2	},
     91  1.1    uch 	{ BIFB_D4_M2L_0,	BIFBN_D4_M2L_0,
     92  1.1    uch 	  put_oxel_D4_M2L_0,	0xff,	4	},
     93  1.1    uch 	{ BIFB_D4_M2L_0x2,	BIFBN_D4_M2L_0x2,
     94  1.1    uch 	  put_oxel_D4_M2L_0x2,	0xff,	2	},
     95  1.1    uch 	{ BIFB_D8_00,		BIFBN_D8_00,
     96  1.1    uch 	  put_oxel_D8_00,	0xff,	8	},
     97  1.1    uch 	{ BIFB_D8_FF,		BIFBN_D8_FF,
     98  1.1    uch 	  put_oxel_D8_FF,	0x00,	8	},
     99  1.1    uch 	{ BIFB_D16_0000,	BIFBN_D16_0000,
    100  1.1    uch 	  put_oxel_D16_0000,	0xff,	16	},
    101  1.1    uch 	{ BIFB_D16_FFFF,	BIFBN_D16_FFFF,
    102  1.1    uch 	  put_oxel_D16_FFFF,	0x00,	16	},
    103  1.1    uch };
    104  1.5    uch #define FB_TABLE_SIZE (sizeof(fb_table) / sizeof(*fb_table))
    105  1.1    uch 
    106  1.1    uch static u_int8_t	*fb_vram;
    107  1.1    uch static int16_t	fb_line_bytes;
    108  1.1    uch static u_int8_t	fb_clear_byte;
    109  1.1    uch int16_t	bicons_ypixel;
    110  1.1    uch int16_t	bicons_xpixel;
    111  1.1    uch #ifdef HALF_FONT
    112  1.1    uch static int16_t	fb_oxel_bytes	= 1;
    113  1.1    uch int16_t	bicons_width	= 80;
    114  1.1    uch void	(*fb_put_oxel)(u_int8_t *, u_int8_t, u_int8_t) = put_oxel_D2_M2L_3x2;
    115  1.1    uch #else /* HALF_FONT */
    116  1.1    uch static int16_t	fb_oxel_bytes	= 2;
    117  1.1    uch int16_t	bicons_width	= 40;
    118  1.1    uch void	(*fb_put_oxel)(u_int8_t *, u_int8_t, u_int8_t) = put_oxel_D2_M2L_3;
    119  1.1    uch #endif /* HALF_FONT */
    120  1.1    uch int16_t bicons_height;
    121  1.1    uch static int16_t curs_x;
    122  1.1    uch static int16_t curs_y;
    123  1.1    uch 
    124  1.1    uch cdev_decl(biconsdev);
    125  1.1    uch 
    126  1.1    uch static int bicons_priority;
    127  1.5    uch int biconscninit(struct consdev *);
    128  1.1    uch void biconscnprobe(struct consdev *);
    129  1.1    uch void biconscnputc(dev_t, int);
    130  1.1    uch int biconscngetc(dev_t);	/* harmless place holder */
    131  1.1    uch 
    132  1.1    uch static void draw_char(int, int, int);
    133  1.1    uch static void clear(int, int);
    134  1.1    uch static void scroll(int, int, int);
    135  1.1    uch static void bicons_puts(char *);
    136  1.1    uch static void bicons_printf(const char *, ...) __attribute__((__unused__));
    137  1.2    uch 
    138  1.5    uch int
    139  1.2    uch bicons_init(struct consdev *cndev)
    140  1.2    uch {
    141  1.5    uch 
    142  1.5    uch 	if (biconscninit(cndev) != 0)
    143  1.5    uch 		return (1);
    144  1.5    uch 
    145  1.2    uch 	biconscnprobe(cndev);
    146  1.5    uch 
    147  1.5    uch 	return (0);	/* success */
    148  1.2    uch }
    149  1.1    uch 
    150  1.5    uch int
    151  1.1    uch biconscninit(struct consdev *cndev)
    152  1.1    uch {
    153  1.1    uch 	int fb_index = -1;
    154  1.1    uch 
    155  1.5    uch 	if (bootinfo->fb_addr == 0) {
    156  1.5    uch 		/* Bootinfo don't have frame buffer address */
    157  1.5    uch 		return (1);
    158  1.5    uch 	}
    159  1.5    uch 
    160  1.1    uch 	for (fb_index = 0; fb_index < FB_TABLE_SIZE; fb_index++)
    161  1.1    uch 		if (fb_table[fb_index].type == bootinfo->fb_type)
    162  1.1    uch 			break;
    163  1.1    uch 
    164  1.1    uch 	if (FB_TABLE_SIZE <= fb_index || fb_index == -1) {
    165  1.5    uch 		/* Unknown frame buffer type, don't enable bicons. */
    166  1.5    uch 		return (1);
    167  1.1    uch 	}
    168  1.1    uch 
    169  1.1    uch 	fb_vram = (u_int8_t *)bootinfo->fb_addr;
    170  1.1    uch 	fb_line_bytes = bootinfo->fb_line_bytes;
    171  1.1    uch 	bicons_xpixel = bootinfo->fb_width;
    172  1.1    uch 	bicons_ypixel = bootinfo->fb_height;
    173  1.1    uch 
    174  1.1    uch 	fb_put_oxel = fb_table[fb_index].func;
    175  1.1    uch 	fb_clear_byte = fb_table[fb_index].clear_byte;
    176  1.1    uch 	fb_oxel_bytes = fb_table[fb_index].oxel_bytes;
    177  1.1    uch 
    178  1.1    uch 	bicons_width = bicons_xpixel / (8 * FONT_WIDTH);
    179  1.1    uch 	bicons_height = bicons_ypixel / FONT_HEIGHT;
    180  1.1    uch 	clear(0, bicons_ypixel);
    181  1.1    uch 
    182  1.1    uch 	curs_x = 0;
    183  1.1    uch 	curs_y = 0;
    184  1.1    uch 
    185  1.1    uch 	bicons_puts("builtin console type = ");
    186  1.1    uch 	bicons_puts(fb_table[fb_index].name);
    187  1.1    uch 	bicons_puts("\n");
    188  1.5    uch 
    189  1.5    uch 	return (0);
    190  1.1    uch }
    191  1.1    uch 
    192  1.1    uch void
    193  1.1    uch biconscnprobe(struct consdev *cndev)
    194  1.1    uch {
    195  1.1    uch 	int maj;
    196  1.1    uch 
    197  1.1    uch 	/* locate the major number */
    198  1.1    uch 	for (maj = 0; maj < nchrdev; maj++)
    199  1.1    uch 		if (cdevsw[maj].d_open == biconsdevopen)
    200  1.1    uch 			break;
    201  1.1    uch 
    202  1.1    uch 	cndev->cn_dev = makedev(maj, 0);
    203  1.1    uch 	cndev->cn_pri = bicons_priority;
    204  1.1    uch }
    205  1.1    uch 
    206  1.1    uch void
    207  1.1    uch bicons_set_priority(int priority)
    208  1.1    uch {
    209  1.1    uch 	bicons_priority = priority;
    210  1.1    uch }
    211  1.1    uch 
    212  1.1    uch int
    213  1.1    uch biconscngetc(dev_t dev)
    214  1.1    uch {
    215  1.1    uch 	printf("no input method. reboot me.\n");
    216  1.1    uch 	while (1)
    217  1.1    uch 		;
    218  1.1    uch 	/* NOTREACHED */
    219  1.1    uch }
    220  1.1    uch 
    221  1.1    uch void
    222  1.1    uch biconscnputc(dev_t dev, int c)
    223  1.1    uch {
    224  1.1    uch 	int line_feed = 0;
    225  1.1    uch 
    226  1.1    uch 	switch (c) {
    227  1.1    uch 	case 0x08: /* back space */
    228  1.1    uch 		if (--curs_x < 0) {
    229  1.1    uch 			curs_x = 0;
    230  1.1    uch 		}
    231  1.1    uch 		/* erase character ar cursor position */
    232  1.1    uch 		draw_char(curs_x, curs_y, ' ');
    233  1.1    uch 		break;
    234  1.1    uch 	case '\r':
    235  1.1    uch 		curs_x = 0;
    236  1.1    uch 		break;
    237  1.1    uch 	case '\n':
    238  1.1    uch 		curs_x = 0;
    239  1.1    uch 		line_feed = 1;
    240  1.1    uch 		break;
    241  1.1    uch 	default:
    242  1.1    uch 		draw_char(curs_x, curs_y, c);
    243  1.1    uch 		if (bicons_width <= ++curs_x) {
    244  1.1    uch 			curs_x = 0;
    245  1.1    uch 			line_feed = 1;
    246  1.1    uch 		}
    247  1.1    uch 	}
    248  1.1    uch 
    249  1.1    uch 	if (line_feed) {
    250  1.1    uch 		if (bicons_height <= ++curs_y) {
    251  1.1    uch 			/* scroll up */
    252  1.1    uch 			scroll(FONT_HEIGHT, (bicons_height - 1) * FONT_HEIGHT,
    253  1.1    uch 			       - FONT_HEIGHT);
    254  1.1    uch 			clear((bicons_height - 1) * FONT_HEIGHT, FONT_HEIGHT);
    255  1.1    uch 			curs_y--;
    256  1.1    uch 		}
    257  1.1    uch 	}
    258  1.1    uch }
    259  1.1    uch 
    260  1.1    uch void
    261  1.1    uch bicons_puts(char *s)
    262  1.1    uch {
    263  1.1    uch 	while (*s)
    264  1.1    uch 		biconscnputc(NULL, *s++);
    265  1.1    uch }
    266  1.1    uch 
    267  1.1    uch 
    268  1.1    uch void
    269  1.1    uch bicons_putn(const char *s, int n)
    270  1.1    uch {
    271  1.1    uch 	while (0 < n--)
    272  1.1    uch 		biconscnputc(NULL, *s++);
    273  1.1    uch }
    274  1.1    uch 
    275  1.1    uch void
    276  1.1    uch #ifdef __STDC__
    277  1.1    uch bicons_printf(const char *fmt, ...)
    278  1.1    uch #else
    279  1.1    uch bicons_printf(fmt, va_alist)
    280  1.1    uch 	char *fmt;
    281  1.1    uch 	va_dcl
    282  1.1    uch #endif
    283  1.1    uch {
    284  1.1    uch 	va_list ap;
    285  1.1    uch 	char buf[0x100];
    286  1.1    uch 
    287  1.1    uch 	va_start(ap, fmt);
    288  1.1    uch 	vsnprintf(buf, sizeof(buf), fmt, ap);
    289  1.1    uch 	va_end(ap);
    290  1.1    uch 	bicons_puts(buf);
    291  1.1    uch }
    292  1.1    uch 
    293  1.1    uch static void
    294  1.1    uch draw_char(int x, int y, int c)
    295  1.1    uch {
    296  1.1    uch 	int i;
    297  1.1    uch 	u_int8_t *p;
    298  1.1    uch 
    299  1.1    uch 	if (!fb_vram)
    300  1.1    uch 		return;
    301  1.1    uch 
    302  1.1    uch 	p = &fb_vram[(y * FONT_HEIGHT * fb_line_bytes) +
    303  1.1    uch 		    x * FONT_WIDTH * fb_oxel_bytes];
    304  1.1    uch 	for (i = 0; i < FONT_HEIGHT; i++) {
    305  1.1    uch 		(*fb_put_oxel)(p, font_clR8x8_data
    306  1.1    uch 			       [FONT_WIDTH * (FONT_HEIGHT * c + i)], 0xff);
    307  1.1    uch 		p += (fb_line_bytes);
    308  1.1    uch 	}
    309  1.1    uch }
    310  1.1    uch 
    311  1.1    uch static void
    312  1.1    uch clear(int y, int height)
    313  1.1    uch {
    314  1.1    uch 	u_int8_t *p;
    315  1.1    uch 
    316  1.1    uch 	if (!fb_vram)
    317  1.1    uch 		return;
    318  1.1    uch 
    319  1.1    uch 	p = &fb_vram[y * fb_line_bytes];
    320  1.1    uch 
    321  1.1    uch 	while (0 < height--) {
    322  1.1    uch 		memset(p, fb_clear_byte,
    323  1.1    uch 		       bicons_width * fb_oxel_bytes * FONT_WIDTH);
    324  1.1    uch 		p += fb_line_bytes;
    325  1.1    uch 	}
    326  1.1    uch }
    327  1.1    uch 
    328  1.1    uch static void
    329  1.1    uch scroll(int y, int height, int d)
    330  1.1    uch {
    331  1.1    uch 	u_int8_t *from, *to;
    332  1.1    uch 
    333  1.1    uch 	if (!fb_vram)
    334  1.1    uch 		return;
    335  1.1    uch 
    336  1.1    uch 	if (d < 0) {
    337  1.1    uch 		from = &fb_vram[y * fb_line_bytes];
    338  1.1    uch 		to = from + d * fb_line_bytes;
    339  1.1    uch 		while (0 < height--) {
    340  1.1    uch 			memcpy(to, from, bicons_width * fb_oxel_bytes);
    341  1.1    uch 			from += fb_line_bytes;
    342  1.1    uch 			to += fb_line_bytes;
    343  1.1    uch 		}
    344  1.1    uch 	} else {
    345  1.1    uch 		from = &fb_vram[(y + height - 1) * fb_line_bytes];
    346  1.1    uch 		to = from + d * fb_line_bytes;
    347  1.1    uch 		while (0 < height--) {
    348  1.1    uch 			memcpy(to, from, bicons_xpixel * fb_oxel_bytes / 8);
    349  1.1    uch 			from -= fb_line_bytes;
    350  1.1    uch 			to -= fb_line_bytes;
    351  1.1    uch 		}
    352  1.1    uch 	}
    353  1.1    uch }
    354  1.1    uch 
    355  1.1    uch /*=============================================================================
    356  1.1    uch  *
    357  1.1    uch  *	D2_M2L_3
    358  1.1    uch  *
    359  1.1    uch  */
    360  1.1    uch static void
    361  1.1    uch put_oxel_D2_M2L_3(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    362  1.1    uch {
    363  1.1    uch #if 1
    364  1.1    uch 	u_int16_t *addr = (u_int16_t *)xaddr;
    365  1.1    uch 	static u_int16_t map0[] = {
    366  1.1    uch 		0x0000, 0x0300, 0x0c00, 0x0f00, 0x3000, 0x3300, 0x3c00, 0x3f00,
    367  1.1    uch 		0xc000, 0xc300, 0xcc00, 0xcf00, 0xf000, 0xf300, 0xfc00, 0xff00,
    368  1.1    uch 	};
    369  1.1    uch 	static u_int16_t map1[] = {
    370  1.1    uch 		0x0000, 0x0003, 0x000c, 0x000f, 0x0030, 0x0033, 0x003c, 0x003f,
    371  1.1    uch 		0x00c0, 0x00c3, 0x00cc, 0x00cf, 0x00f0, 0x00f3, 0x00fc, 0x00ff,
    372  1.1    uch 	};
    373  1.1    uch 	*addr = (map1[data >> 4] | map0[data & 0x0f]);
    374  1.1    uch #else
    375  1.1    uch 	static u_int8_t map[] = {
    376  1.1    uch 		0x00, 0x03, 0x0c, 0x0f, 0x30, 0x33, 0x3c, 0x3f,
    377  1.1    uch 		0xc0, 0xc3, 0xcc, 0xcf, 0xf0, 0xf3, 0xfc, 0xff,
    378  1.1    uch 	};
    379  1.1    uch 	u_int8_t *addr = xaddr;
    380  1.1    uch 
    381  1.1    uch 	*addr++ = (map[(data >> 4) & 0x0f] & map[(mask >> 4) & 0x0f]) |
    382  1.1    uch 		(*addr & ~map[(mask >> 4) & 0x0f]);
    383  1.1    uch 	*addr   = (map[(data >> 0) & 0x0f] & map[(mask >> 0) & 0x0f]) |
    384  1.1    uch 		(*addr & ~map[(mask >> 0) & 0x0f]);
    385  1.1    uch #endif
    386  1.1    uch }
    387  1.1    uch 
    388  1.1    uch /*=============================================================================
    389  1.1    uch  *
    390  1.1    uch  *	D2_M2L_3x2
    391  1.1    uch  *
    392  1.1    uch  */
    393  1.1    uch static void
    394  1.1    uch put_oxel_D2_M2L_3x2(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    395  1.1    uch {
    396  1.1    uch 	register u_int8_t odd = (data & 0xaa);
    397  1.1    uch 	register u_int8_t even = (data & 0x55);
    398  1.1    uch 
    399  1.1    uch 	*xaddr = (odd | (even << 1)) | ((odd >> 1) & even);
    400  1.1    uch }
    401  1.1    uch 
    402  1.1    uch /*=============================================================================
    403  1.1    uch  *
    404  1.1    uch  *	D2_M2L_0
    405  1.1    uch  *
    406  1.1    uch  */
    407  1.1    uch static void
    408  1.1    uch put_oxel_D2_M2L_0(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    409  1.1    uch {
    410  1.1    uch #if 1
    411  1.1    uch 	u_int16_t *addr = (u_int16_t *)xaddr;
    412  1.1    uch 	static u_int16_t map0[] = {
    413  1.1    uch 		0xff00, 0xfc00, 0xf300, 0xf000, 0xcf00, 0xcc00, 0xc300, 0xc000,
    414  1.1    uch 		0x3f00, 0x3c00, 0x3300, 0x3000, 0x0f00, 0x0c00, 0x0300, 0x0000,
    415  1.1    uch 	};
    416  1.1    uch 	static u_int16_t map1[] = {
    417  1.1    uch 		0x00ff, 0x00fc, 0x00f3, 0x00f0, 0x00cf, 0x00cc, 0x00c3, 0x00c0,
    418  1.1    uch 		0x003f, 0x003c, 0x0033, 0x0030, 0x000f, 0x000c, 0x0003, 0x0000,
    419  1.1    uch 	};
    420  1.1    uch 	*addr = (map1[data >> 4] | map0[data & 0x0f]);
    421  1.1    uch #else
    422  1.1    uch 	static u_int8_t map[] = {
    423  1.1    uch 		0x00, 0x03, 0x0c, 0x0f, 0x30, 0x33, 0x3c, 0x3f,
    424  1.1    uch 		0xc0, 0xc3, 0xcc, 0xcf, 0xf0, 0xf3, 0xfc, 0xff,
    425  1.1    uch 	};
    426  1.1    uch 	u_int8_t *addr = xaddr;
    427  1.1    uch 
    428  1.1    uch 	*addr++ = (~(map[(data >> 4) & 0x0f] & map[(mask >> 4) & 0x0f])) |
    429  1.1    uch 		(*addr & ~map[(mask >> 4) & 0x0f]);
    430  1.1    uch 	*addr   = (~(map[(data >> 0) & 0x0f] & map[(mask >> 0) & 0x0f])) |
    431  1.1    uch 		(*addr & ~map[(mask >> 0) & 0x0f]);
    432  1.1    uch #endif
    433  1.1    uch }
    434  1.1    uch 
    435  1.1    uch /*=============================================================================
    436  1.1    uch  *
    437  1.1    uch  *	D2_M2L_0x2
    438  1.1    uch  *
    439  1.1    uch  */
    440  1.1    uch static void
    441  1.1    uch put_oxel_D2_M2L_0x2(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    442  1.1    uch {
    443  1.1    uch 	register u_int8_t odd = (data & 0xaa);
    444  1.1    uch 	register u_int8_t even = (data & 0x55);
    445  1.1    uch 
    446  1.1    uch 	*xaddr = ~((odd | (even << 1)) | ((odd >> 1) & even));
    447  1.1    uch }
    448  1.1    uch 
    449  1.1    uch /*=============================================================================
    450  1.1    uch  *
    451  1.1    uch  *	D4_M2L_F
    452  1.1    uch  *
    453  1.1    uch  */
    454  1.1    uch static void
    455  1.1    uch put_oxel_D4_M2L_F(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    456  1.1    uch {
    457  1.1    uch 	u_int32_t *addr = (u_int32_t *)xaddr;
    458  1.1    uch 	static u_int32_t map[] = {
    459  1.1    uch 		0x0000, 0x0f00, 0xf000, 0xff00, 0x000f, 0x0f0f, 0xf00f, 0xff0f,
    460  1.1    uch 		0x00f0, 0x0ff0, 0xf0f0, 0xfff0, 0x00ff, 0x0fff, 0xf0ff, 0xffff,
    461  1.1    uch 	};
    462  1.1    uch 	*addr = (map[data >> 4] | (map[data & 0x0f] << 16));
    463  1.1    uch }
    464  1.1    uch 
    465  1.1    uch /*=============================================================================
    466  1.1    uch  *
    467  1.1    uch  *	D4_M2L_Fx2
    468  1.1    uch  *
    469  1.1    uch  */
    470  1.1    uch static void
    471  1.1    uch put_oxel_D4_M2L_Fx2(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    472  1.1    uch {
    473  1.1    uch 	u_int16_t *addr = (u_int16_t *)xaddr;
    474  1.1    uch 	static u_int16_t map[] = {
    475  1.1    uch 		0x00, 0x08, 0x08, 0x0f, 0x80, 0x88, 0x88, 0x8f,
    476  1.1    uch 		0x80, 0x88, 0x88, 0x8f, 0xf0, 0xf8, 0xf8, 0xff,
    477  1.1    uch 	};
    478  1.1    uch 
    479  1.1    uch 	*addr = (map[data >> 4] | (map[data & 0x0f] << 8));
    480  1.1    uch }
    481  1.1    uch 
    482  1.1    uch /*=============================================================================
    483  1.1    uch  *
    484  1.1    uch  *	D4_M2L_0
    485  1.1    uch  *
    486  1.1    uch  */
    487  1.1    uch static void
    488  1.1    uch put_oxel_D4_M2L_0(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    489  1.1    uch {
    490  1.1    uch 	u_int32_t *addr = (u_int32_t *)xaddr;
    491  1.1    uch 	static u_int32_t map[] = {
    492  1.1    uch 		0xffff, 0xf0ff, 0x0fff, 0x00ff, 0xfff0, 0xf0f0, 0x0ff0, 0x00f0,
    493  1.1    uch 		0xff0f, 0xf00f, 0x0f0f, 0x000f, 0xff00, 0xf000, 0x0f00, 0x0000,
    494  1.1    uch 	};
    495  1.1    uch 	*addr = (map[data >> 4] | (map[data & 0x0f] << 16));
    496  1.1    uch }
    497  1.1    uch 
    498  1.1    uch /*=============================================================================
    499  1.1    uch  *
    500  1.1    uch  *	D4_M2L_0x2
    501  1.1    uch  *
    502  1.1    uch  */
    503  1.1    uch static void
    504  1.1    uch put_oxel_D4_M2L_0x2(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    505  1.1    uch {
    506  1.1    uch 	u_int16_t *addr = (u_int16_t *)xaddr;
    507  1.1    uch 	static u_int16_t map[] = {
    508  1.1    uch 		0xff, 0xf8, 0xf8, 0xf0, 0x8f, 0x88, 0x88, 0x80,
    509  1.1    uch 		0x8f, 0x88, 0x88, 0x80, 0x0f, 0x08, 0x08, 0x00,
    510  1.1    uch 	};
    511  1.1    uch 
    512  1.1    uch 	*addr = (map[data >> 4] | (map[data & 0x0f] << 8));
    513  1.1    uch }
    514  1.1    uch 
    515  1.1    uch /*=============================================================================
    516  1.1    uch  *
    517  1.1    uch  *	D8_00
    518  1.1    uch  *
    519  1.1    uch  */
    520  1.1    uch static void
    521  1.1    uch put_oxel_D8_00(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    522  1.1    uch {
    523  1.1    uch 	int i;
    524  1.1    uch 	u_int8_t *addr = xaddr;
    525  1.1    uch 
    526  1.1    uch 	for (i = 0; i < 8; i++) {
    527  1.1    uch 		if (mask & 0x80) {
    528  1.1    uch 			*addr = (data & 0x80) ? 0x00 : 0xFF;
    529  1.1    uch 		}
    530  1.1    uch 		addr++;
    531  1.1    uch 		data <<= 1;
    532  1.1    uch 		mask <<= 1;
    533  1.1    uch 	}
    534  1.1    uch }
    535  1.1    uch 
    536  1.1    uch /*=============================================================================
    537  1.1    uch  *
    538  1.1    uch  *	D8_FF
    539  1.1    uch  *
    540  1.1    uch  */
    541  1.1    uch static void
    542  1.1    uch put_oxel_D8_FF(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    543  1.1    uch {
    544  1.1    uch 	int i;
    545  1.1    uch 	u_int8_t *addr = xaddr;
    546  1.1    uch 
    547  1.1    uch 	for (i = 0; i < 8; i++) {
    548  1.1    uch 		if (mask & 0x80) {
    549  1.1    uch 			*addr = (data & 0x80) ? 0xFF : 0x00;
    550  1.1    uch 		}
    551  1.1    uch 		addr++;
    552  1.1    uch 		data <<= 1;
    553  1.1    uch 		mask <<= 1;
    554  1.1    uch 	}
    555  1.1    uch }
    556  1.1    uch 
    557  1.1    uch /*=============================================================================
    558  1.1    uch  *
    559  1.1    uch  *	D16_0000
    560  1.1    uch  *
    561  1.1    uch  */
    562  1.1    uch static void
    563  1.1    uch put_oxel_D16_0000(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    564  1.1    uch {
    565  1.1    uch 	int i;
    566  1.1    uch 	u_int16_t *addr = (u_int16_t *)xaddr;
    567  1.1    uch 
    568  1.1    uch 	for (i = 0; i < 8; i++) {
    569  1.1    uch 		if (mask & 0x80) {
    570  1.1    uch 			*addr = (data & 0x80) ? 0x0000 : 0xFFFF;
    571  1.1    uch 		}
    572  1.1    uch 		addr++;
    573  1.1    uch 		data <<= 1;
    574  1.1    uch 		mask <<= 1;
    575  1.1    uch 	}
    576  1.1    uch }
    577  1.1    uch 
    578  1.1    uch /*=============================================================================
    579  1.1    uch  *
    580  1.1    uch  *	D16_FFFF
    581  1.1    uch  *
    582  1.1    uch  */
    583  1.1    uch static void
    584  1.1    uch put_oxel_D16_FFFF(u_int8_t *xaddr, u_int8_t data, u_int8_t mask)
    585  1.1    uch {
    586  1.1    uch 	int i;
    587  1.1    uch 	u_int16_t *addr = (u_int16_t *)xaddr;
    588  1.1    uch 
    589  1.1    uch 	for (i = 0; i < 8; i++) {
    590  1.1    uch 		if (mask & 0x80) {
    591  1.1    uch 			*addr = (data & 0x80) ? 0xFFFF : 0x0000;
    592  1.1    uch 		}
    593  1.1    uch 		addr++;
    594  1.1    uch 		data <<= 1;
    595  1.1    uch 		mask <<= 1;
    596  1.1    uch 	}
    597  1.1    uch }
    598