Home | History | Annotate | Line # | Download | only in rasops
rasops.h revision 1.26.12.2
      1  1.26.12.2       mrg /* 	$NetBSD: rasops.h,v 1.26.12.2 2012/04/29 23:04:59 mrg Exp $ */
      2        1.1        ad 
      3        1.6        ad /*-
      4        1.6        ad  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5        1.1        ad  * All rights reserved.
      6        1.1        ad  *
      7        1.6        ad  * This code is derived from software contributed to The NetBSD Foundation
      8       1.13        ad  * by Andrew Doran.
      9        1.6        ad  *
     10        1.1        ad  * Redistribution and use in source and binary forms, with or without
     11        1.1        ad  * modification, are permitted provided that the following conditions
     12        1.1        ad  * are met:
     13        1.1        ad  * 1. Redistributions of source code must retain the above copyright
     14        1.1        ad  *    notice, this list of conditions and the following disclaimer.
     15        1.1        ad  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1        ad  *    notice, this list of conditions and the following disclaimer in the
     17        1.1        ad  *    documentation and/or other materials provided with the distribution.
     18        1.1        ad  *
     19        1.6        ad  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20        1.6        ad  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21        1.6        ad  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22        1.6        ad  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23        1.6        ad  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24        1.6        ad  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25        1.6        ad  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26        1.6        ad  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27        1.6        ad  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28        1.6        ad  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29        1.6        ad  * POSSIBILITY OF SUCH DAMAGE.
     30        1.1        ad  */
     31       1.12        pk 
     32        1.1        ad #ifndef _RASOPS_H_
     33        1.1        ad #define _RASOPS_H_ 1
     34        1.1        ad 
     35       1.25  macallan #include <dev/wscons/wsconsio.h>
     36       1.25  macallan #include <dev/wsfont/wsfont.h>
     37        1.1        ad 
     38        1.7        ad /* For rasops_info::ri_flg */
     39        1.7        ad #define RI_FULLCLEAR	0x01	/* eraserows() hack to clear full screen */
     40        1.7        ad #define RI_FORCEMONO	0x02	/* monochrome output even if we can do color */
     41        1.7        ad #define RI_BSWAP	0x04	/* framebuffer endianness doesn't match CPU */
     42        1.7        ad #define RI_CURSOR	0x08	/* cursor is switched on */
     43        1.7        ad #define RI_CLEAR	0x10	/* clear display on startup */
     44        1.7        ad #define RI_CENTER	0x20	/* center onscreen output */
     45        1.7        ad #define RI_CURSORCLIP	0x40	/* cursor is currently clipped */
     46        1.7        ad #define RI_CFGDONE	0x80	/* rasops_reconfig() completed successfully */
     47       1.20      ober #define RI_ROTATE_CW	0x100	/* display is rotated, quarter clockwise */
     48       1.24    nonaka #define RI_ROTATE_CCW	0x200	/* display is rotated, quarter counter-clockwise */
     49       1.24    nonaka #define RI_ROTATE_UD	0x400	/* display is rotated, upside-down */
     50       1.24    nonaka #define RI_ROTATE_MASK	0x700
     51       1.26  macallan /*
     52       1.26  macallan  * if you call rasops_init() or rasops_reconfig() in a context where it is not
     53       1.26  macallan  * safe to call kmem_alloc(), like early on during kernel startup, you MUST set
     54       1.26  macallan  * RI_NO_AUTO to keep rasops from trying to allocate memory for autogenerated
     55       1.26  macallan  * box drawing characters
     56       1.26  macallan  */
     57       1.26  macallan #define	RI_NO_AUTO	0x800	/* do not generate box drawing characters */
     58  1.26.12.1       mrg /*
     59  1.26.12.1       mrg  * Set this if your driver's putchar() method supports anti-aliased fonts in
     60  1.26.12.1       mrg  * the given video mode. Without this flag rasops_init() will only ever pick
     61  1.26.12.1       mrg  * monochrome bitmap fonts.
     62  1.26.12.1       mrg  */
     63  1.26.12.1       mrg #define RI_ENABLE_ALPHA	0x1000
     64  1.26.12.1       mrg /* set this in order to use r3g3b2 'true' colour in 8 bit */
     65  1.26.12.1       mrg #define RI_8BIT_IS_RGB	0x2000
     66        1.7        ad 
     67        1.1        ad struct rasops_info {
     68        1.1        ad 	/* These must be filled in by the caller */
     69        1.1        ad 	int	ri_depth;	/* depth in bits */
     70        1.1        ad 	u_char	*ri_bits;	/* ptr to bits */
     71        1.1        ad 	int	ri_width;	/* width (pels) */
     72        1.1        ad 	int	ri_height;	/* height (pels) */
     73        1.1        ad 	int	ri_stride;	/* stride in bytes */
     74        1.1        ad 
     75       1.12        pk 	/*
     76       1.19  jmcneill 	 * If you want shadow framebuffer support, point ri_hwbits
     77       1.19  jmcneill 	 * to the real framebuffer, and ri_bits to the shadow framebuffer
     78       1.19  jmcneill 	 */
     79       1.19  jmcneill 	u_char	*ri_hwbits;
     80       1.19  jmcneill 
     81       1.19  jmcneill 	/*
     82        1.7        ad 	 * These can optionally be left zeroed out. If you fill ri_font,
     83        1.5        ad 	 * but aren't using wsfont, set ri_wsfcookie to -1.
     84        1.5        ad 	 */
     85        1.3        ad 	struct	wsdisplay_font *ri_font;
     86       1.25  macallan 	struct	wsdisplay_font ri_optfont;
     87        1.7        ad 	int	ri_wsfcookie;	/* wsfont cookie */
     88       1.10        ad 	void	*ri_hw;		/* driver private data; ignored by rasops */
     89        1.7        ad 	int	ri_crow;	/* cursor row */
     90        1.7        ad 	int	ri_ccol;	/* cursor column */
     91        1.7        ad 	int	ri_flg;		/* various operational flags */
     92       1.12        pk 
     93       1.12        pk 	/*
     94       1.12        pk 	 * These are optional and will default if zero. Meaningless
     95        1.1        ad 	 * on depths other than 15, 16, 24 and 32 bits per pel. On
     96        1.1        ad 	 * 24 bit displays, ri_{r,g,b}num must be 8.
     97        1.1        ad 	 */
     98       1.25  macallan 	u_char	ri_rnum;
     99       1.25  macallan 	/* number of bits for red */
    100        1.1        ad 	u_char	ri_gnum;	/* number of bits for green */
    101        1.1        ad 	u_char	ri_bnum;	/* number of bits for blue */
    102        1.1        ad 	u_char	ri_rpos;	/* which bit red starts at */
    103        1.1        ad 	u_char	ri_gpos;	/* which bit green starts at */
    104        1.1        ad 	u_char	ri_bpos;	/* which bit blue starts at */
    105        1.1        ad 
    106        1.1        ad 	/* These are filled in by rasops_init() */
    107        1.1        ad 	int	ri_emuwidth;	/* width we actually care about */
    108        1.1        ad 	int	ri_emuheight;	/* height we actually care about */
    109        1.1        ad 	int	ri_emustride;	/* bytes per row we actually care about */
    110        1.1        ad 	int	ri_rows;	/* number of rows (characters, not pels) */
    111        1.1        ad 	int	ri_cols;	/* number of columns (characters, not pels) */
    112        1.1        ad 	int	ri_delta;	/* row delta in bytes */
    113        1.4        ad 	int	ri_pelbytes;	/* bytes per pel (may be zero) */
    114        1.1        ad 	int	ri_fontscale;	/* fontheight * fontstride */
    115        1.1        ad 	int	ri_xscale;	/* fontwidth * pelbytes */
    116        1.1        ad 	int	ri_yscale;	/* fontheight * stride */
    117        1.1        ad 	u_char  *ri_origbits;	/* where screen bits actually start */
    118       1.23  macallan 	u_char  *ri_hworigbits;	/* where hw bits actually start */
    119        1.5        ad 	int	ri_xorigin;	/* where ri_bits begins (x) */
    120        1.5        ad 	int	ri_yorigin;	/* where ri_bits begins (y) */
    121        1.7        ad 	int32_t	ri_devcmap[16]; /* color -> framebuffer data */
    122        1.1        ad 
    123        1.4        ad 	/* The emulops you need to use, and the screen caps for wscons */
    124        1.1        ad 	struct	wsdisplay_emulops ri_ops;
    125        1.4        ad 	int	ri_caps;
    126       1.12        pk 
    127        1.1        ad 	/* Callbacks so we can share some code */
    128       1.17     perry 	void	(*ri_do_cursor)(struct rasops_info *);
    129       1.20      ober 
    130       1.20      ober #if NRASOPS_ROTATION > 0
    131       1.20      ober 	/* Used to intercept putchar to permit display rotation */
    132       1.20      ober 	struct	wsdisplay_emulops ri_real_ops;
    133       1.20      ober #endif
    134        1.1        ad };
    135        1.1        ad 
    136       1.21  christos #define DELTA(p, d, cast) ((p) = (cast)((char *)(p) + (d)))
    137        1.1        ad 
    138       1.16    petrov #define CHAR_IN_FONT(c,font) 					\
    139       1.16    petrov        ((c) >= (font)->firstchar && 				\
    140       1.16    petrov 	((c) - (font)->firstchar) < (font)->numchars)
    141       1.16    petrov 
    142       1.26  macallan #define PICK_FONT(ri, c) (((c & WSFONT_FLAGS_MASK) == WSFONT_FLAG_OPT) && \
    143       1.26  macallan 			  (ri->ri_optfont.data != NULL)) ? \
    144       1.25  macallan 			 &ri->ri_optfont : ri->ri_font
    145       1.25  macallan 
    146       1.12        pk /*
    147        1.1        ad  * rasops_init().
    148        1.1        ad  *
    149       1.12        pk  * Integer parameters are the number of rows and columns we'd *like*.
    150        1.1        ad  *
    151        1.1        ad  * In terms of optimization, fonts that are a multiple of 8 pixels wide
    152        1.7        ad  * work the best.
    153        1.4        ad  *
    154       1.12        pk  * rasops_init() takes care of rasops_reconfig(). The parameters to both
    155        1.7        ad  * are the same. If calling rasops_reconfig() to change the font and
    156        1.7        ad  * ri_wsfcookie >= 0, you must call wsfont_unlock() on it, and reset it
    157        1.7        ad  * to -1 (or a new, valid cookie).
    158        1.1        ad  */
    159        1.8        ad 
    160       1.12        pk /*
    161       1.15       wiz  * Per-depth initialization functions. These should not be called outside
    162       1.11        ad  * the rasops code.
    163       1.11        ad  */
    164       1.17     perry void	rasops1_init(struct rasops_info *);
    165       1.17     perry void	rasops2_init(struct rasops_info *);
    166       1.17     perry void	rasops4_init(struct rasops_info *);
    167       1.17     perry void	rasops8_init(struct rasops_info *);
    168       1.17     perry void	rasops15_init(struct rasops_info *);
    169       1.17     perry void	rasops24_init(struct rasops_info *);
    170       1.17     perry void	rasops32_init(struct rasops_info *);
    171        1.1        ad 
    172        1.1        ad /* rasops.c */
    173       1.17     perry int	rasops_init(struct rasops_info *, int, int);
    174       1.17     perry int	rasops_reconfig(struct rasops_info *, int, int);
    175       1.17     perry void	rasops_unpack_attr(long, int *, int *, int *);
    176       1.17     perry void	rasops_eraserows(void *, int, int, long);
    177       1.17     perry void	rasops_erasecols(void *, int, int, int, long);
    178       1.17     perry void	rasops_copycols(void *, int, int, int, int);
    179  1.26.12.2       mrg int	rasops_get_cmap(struct rasops_info *, uint8_t *, size_t);
    180  1.26.12.2       mrg 
    181        1.1        ad 
    182        1.9  drochner extern const u_char	rasops_isgray[16];
    183        1.9  drochner extern const u_char	rasops_cmap[256*3];
    184        1.1        ad 
    185        1.1        ad #endif /* _RASOPS_H_ */
    186