2003-08-07 20:26:28 +04:00
|
|
|
/* $NetBSD: fbreg.h,v 1.9 2003/08/07 16:29:09 agc Exp $ */
|
1994-10-27 00:08:38 +03:00
|
|
|
|
1993-10-12 06:22:19 +03:00
|
|
|
/*-
|
1994-05-27 12:39:00 +04:00
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-10-12 06:22:19 +03:00
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Ralph Campbell and Rick Macklem.
|
|
|
|
*
|
|
|
|
* 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.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1993-10-12 06:22:19 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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.
|
|
|
|
*
|
1994-10-27 00:08:38 +03:00
|
|
|
* @(#)fbreg.h 8.1 (Berkeley) 6/10/93
|
1993-10-12 06:22:19 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Data for fb.c generic frame buffer routines that are called by the
|
|
|
|
* various frame buffer drivers.
|
|
|
|
*/
|
|
|
|
struct fbuaccess {
|
|
|
|
PM_Info scrInfo;
|
1999-04-24 12:01:01 +04:00
|
|
|
pmEvent events[PM_MAXEVQ];
|
1993-10-12 06:22:19 +03:00
|
|
|
pmTimeCoord tcs[MOTION_BUFFER_SIZE];
|
|
|
|
};
|
|
|
|
|
1995-09-12 11:51:35 +04:00
|
|
|
struct pmax_fbtty {
|
1993-10-12 06:22:19 +03:00
|
|
|
int row, col; /* Screen pos for glass tty */
|
2000-01-08 04:02:35 +03:00
|
|
|
void (*KBDPutc) __P((dev_t dev, int c));
|
1996-09-21 07:25:15 +04:00
|
|
|
/* Send char to keyboard func */
|
1993-10-12 06:22:19 +03:00
|
|
|
dev_t kbddev; /* Device for KBDPutc */
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mouse report structure definition
|
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
char state; /* buttons and sign bits */
|
|
|
|
short dx; /* delta X since last change */
|
|
|
|
short dy; /* delta Y since last change */
|
|
|
|
char byteCount; /* mouse report byte count */
|
|
|
|
} MouseReport;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macro to translate from a time struct to milliseconds.
|
|
|
|
*/
|
|
|
|
#define TO_MS(tv) ((tv.tv_sec * 1000) + (tv.tv_usec / 1000))
|
1994-05-27 12:39:00 +04:00
|
|
|
|
2000-01-08 04:02:35 +03:00
|
|
|
void fbKbdEvent __P((int, struct fbinfo *));
|
|
|
|
void fbMouseEvent __P((MouseReport *, struct fbinfo *));
|
|
|
|
void fbMouseButtons __P((MouseReport *, struct fbinfo *));
|
|
|
|
void fbScroll __P((struct fbinfo *));
|
|
|
|
void fbPutc __P((dev_t, int));
|
|
|
|
void fbBlitc __P((int, struct fbinfo *));
|
|
|
|
int tb_kbdmouseconfig __P((struct fbinfo *fi));
|
|
|
|
int fbmmap_fb __P((struct fbinfo *, dev_t, caddr_t, struct proc *));
|
1996-09-21 07:25:15 +04:00
|
|
|
|
2000-01-08 04:02:35 +03:00
|
|
|
void init_pmaxfbu __P((struct fbinfo *fi));
|