/* $OpenBSD: rasops.h,v 1.9 2008/06/26 05:42:17 ray Exp $ */ /* $NetBSD: rasops.h,v 1.13 2000/06/13 13:36:54 ad Exp $ */ /*- * Copyright (c) 1999 The NetBSD Foundation, Inc. * All rights reserved. * * This code is derived from software contributed to The NetBSD Foundation * by Andrew Doran. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #ifndef _RASOPS_H_ #define _RASOPS_H_ 1 #ifdef SMALL_KERNEL #define RASOPS_SMALL #endif #include "rasops_glue.h" struct wsdisplay_font; /* For rasops_info::ri_flg */ #define RI_FULLCLEAR 0x0001 /* eraserows() hack to clear full screen */ #define RI_FORCEMONO 0x0002 /* monochrome output even if we can do color */ #define RI_BSWAP 0x0004 /* framebuffer endianness doesn't match CPU */ #define RI_CURSOR 0x0008 /* cursor is switched on */ #define RI_CLEAR 0x0010 /* clear display on startup */ #define RI_CLEARMARGINS 0x0020 /* clear display margins on startup */ #define RI_CENTER 0x0040 /* center onscreen output */ #define RI_CURSORCLIP 0x0080 /* cursor is currently clipped */ #define RI_ROTATE_CW 0x0100 /* display is rotated, quarter clockwise */ #define RI_CFGDONE 0x0200 /* rasops_reconfig() completed successfully */ struct rasops_info { /* These must be filled in by the caller */ int ri_depth; /* depth in bits */ u_char *ri_bits; /* ptr to bits */ int ri_width; /* width (pels) */ int ri_height; /* height (pels) */ int ri_stride; /* stride in bytes */ /* * These can optionally be left zeroed out. If you fill ri_font, * but aren't using wsfont, set ri_wsfcookie to -1. */ struct wsdisplay_font *ri_font; int ri_wsfcookie; /* wsfont cookie */ void *ri_hw; /* driver private data; ignored by rasops */ int ri_crow; /* cursor row */ int ri_ccol; /* cursor column */ int ri_flg; /* various operational flags */ /* * These are optional and will default if zero. Meaningless * on depths other than 15, 16, 24 and 32 bits per pel. On * 24 bit displays, ri_{r,g,b}num must be 8. */ u_char ri_rnum; /* number of bits for red */ u_char ri_gnum; /* number of bits for green */ u_char ri_bnum; /* number of bits for blue */ u_char ri_rpos; /* which bit red starts at */ u_char ri_gpos; /* which bit green starts at */ u_char ri_bpos; /* which bit blue starts at */ /* These are filled in by rasops_init() */ int ri_emuwidth; /* width we actually care about */ int ri_emuheight; /* height we actually care about */ int ri_emustride; /* bytes per row we actually care about */ int ri_rows; /* number of rows (characters, not pels) */ int ri_cols; /* number of columns (characters, not pels) */ int ri_delta; /* row delta in bytes */ int ri_pelbytes; /* bytes per pel (may be zero) */ int ri_fontscale; /* fontheight * fontstride */ int ri_xscale; /* fontwidth * pelbytes */ int ri_yscale; /* fontheight * stride */ u_char *ri_origbits; /* where screen bits actually start */ int ri_xorigin; /* where ri_bits begins (x) */ int ri_yorigin; /* where ri_bits begins (y) */ int32_t ri_devcmap[16]; /* color -> framebuffer data */ /* The emulops you need to use, and the screen caps for wscons */ struct wsdisplay_emulops ri_ops; int ri_caps; /* Callbacks so we can share some code */ void (*ri_do_cursor)(struct rasops_info *); void (*ri_updatecursor)(struct rasops_info *); #if NRASOPS_ROTATION > 0 /* Used to intercept putchar to permit display rotation */ struct wsdisplay_emulops ri_real_ops; #endif }; #define DELTA(p, d, cast) ((p) = (cast)((caddr_t)(p) + (d))) /* * rasops_init(). * * Integer parameters are the number of rows and columns we'd *like*. * * In terms of optimization, fonts that are a multiple of 8 pixels wide * work the best. * * rasops_init() takes care of rasops_reconfig(). The parameters to both * are the same. If calling rasops_reconfig() to change the font and * ri_wsfcookie >= 0, you must call wsfont_unlock() on it, and reset it * to -1 (or a new, valid cookie). */ /* * Per-depth initialization functions. These should not be called outside * the rasops code. */ void rasops1_init(struct rasops_info *); void rasops2_init(struct rasops_info *); void rasops4_init(struct rasops_info *); void rasops8_init(struct rasops_info *); void rasops15_init(struct rasops_info *); void rasops24_init(struct rasops_info *); void rasops32_init(struct rasops_info *); /* rasops.c */ int rasops_init(struct rasops_info *, int, int); int rasops_reconfig(struct rasops_info *, int, int); void rasops_eraserows(void *, int, int, long); void rasops_erasecols(void *, int, int, int, long); extern const u_char rasops_isgray[16]; extern const u_char rasops_cmap[256*3]; #endif /* _RASOPS_H_ */