1999-08-16 23:55:27 +04:00
|
|
|
/* $NetBSD: grfvar.h,v 1.16 1999/08/16 19:55:27 is Exp $ */
|
1994-10-26 05:01:24 +03:00
|
|
|
|
1993-07-05 23:19:43 +04:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1988 University of Utah.
|
|
|
|
* Copyright (c) 1990 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* the Systems Programming Group of the University of Utah Computer
|
|
|
|
* Science Department.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* 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.
|
|
|
|
*
|
1993-10-31 02:40:53 +03:00
|
|
|
* from: Utah $Hdr: grfvar.h 1.9 91/01/21$
|
|
|
|
*
|
|
|
|
* @(#)grfvar.h 7.3 (Berkeley) 5/7/91
|
1993-07-05 23:19:43 +04:00
|
|
|
*/
|
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
struct ite_softc;
|
1993-07-05 23:19:43 +04:00
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/*
|
|
|
|
* this struct is owned by the driver (grfcc, grfrt)
|
|
|
|
* and is passed to grf when grf is configed. The ite also
|
|
|
|
* uses it...
|
|
|
|
*/
|
1993-07-05 23:19:43 +04:00
|
|
|
struct grf_softc {
|
1994-05-08 09:52:54 +04:00
|
|
|
struct device g_device; /* config sets this up. */
|
|
|
|
struct grfinfo g_display; /* hardware description (for ioctl) */
|
1993-09-02 22:05:24 +04:00
|
|
|
volatile caddr_t g_regkva; /* KVA of registers */
|
|
|
|
volatile caddr_t g_fbkva; /* KVA of framebuffer */
|
1994-05-08 09:52:54 +04:00
|
|
|
int g_flags; /* software flags */
|
|
|
|
int g_unit; /* grf unit we want/have */
|
|
|
|
dev_t g_itedev; /* ite device number */
|
|
|
|
dev_t g_grfdev; /* grf device number */
|
|
|
|
caddr_t g_data; /* device dependent data */
|
1996-04-22 01:10:48 +04:00
|
|
|
int (*g_mode) __P((struct grf_softc *, u_long, void *,
|
|
|
|
u_long, int));
|
1994-05-08 09:52:54 +04:00
|
|
|
int g_conpri; /* priority of ite as console */
|
|
|
|
void (*g_iteinit) __P((struct ite_softc *));
|
|
|
|
void (*g_itedeinit) __P((struct ite_softc *));
|
|
|
|
void (*g_iteclear) __P((struct ite_softc *,int,int,int,int));
|
|
|
|
void (*g_iteputc) __P((struct ite_softc *,int,int,int,int));
|
|
|
|
void (*g_itecursor) __P((struct ite_softc *,int));
|
|
|
|
void (*g_itescroll) __P((struct ite_softc *,int,int,int,int));
|
1999-08-16 23:55:27 +04:00
|
|
|
int g_blank; /* shadow copy of blank value */
|
1993-07-05 23:19:43 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/* flags */
|
|
|
|
#define GF_ALIVE 0x01
|
|
|
|
#define GF_OPEN 0x02
|
|
|
|
#define GF_EXCLUDE 0x04
|
|
|
|
#define GF_WANTED 0x08
|
1993-09-02 22:05:24 +04:00
|
|
|
#define GF_GRFON 0x10
|
1993-07-05 23:19:43 +04:00
|
|
|
|
|
|
|
/* software ids defined in grfioctl.h */
|
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/* requests to mode routine (g_mode())*/
|
1993-07-05 23:19:43 +04:00
|
|
|
#define GM_GRFON 1
|
|
|
|
#define GM_GRFOFF 2
|
|
|
|
#define GM_GRFOVON 3
|
|
|
|
#define GM_GRFOVOFF 4
|
|
|
|
#define GM_GRFCONFIG 5
|
1993-09-02 22:05:24 +04:00
|
|
|
#define GM_GRFGETVMODE 6
|
|
|
|
#define GM_GRFSETVMODE 7
|
|
|
|
#define GM_GRFGETNUMVM 8
|
1994-01-27 00:05:34 +03:00
|
|
|
#define GM_GRFGETBANK 9
|
|
|
|
#define GM_GRFSETBANK 10
|
|
|
|
#define GM_GRFGETCURBANK 11
|
|
|
|
#define GM_GRFIOCTL 12
|
1996-04-22 01:10:48 +04:00
|
|
|
#define GM_GRFTOGGLE 13
|
1993-07-05 23:19:43 +04:00
|
|
|
|
|
|
|
/* minor device interpretation */
|
1995-08-18 20:21:33 +04:00
|
|
|
#define GRFOVDEV 0x10 /* used by grf_ul, overlay planes */
|
|
|
|
#define GRFIMDEV 0x20 /* used by grf_ul, images planes */
|
1993-07-05 23:19:43 +04:00
|
|
|
#define GRFUNIT(d) ((d) & 0x7)
|
|
|
|
|
1994-05-08 09:52:54 +04:00
|
|
|
/*
|
|
|
|
* unit numbers for devices
|
|
|
|
*/
|
|
|
|
enum grfunits {
|
|
|
|
GRF_CC_UNIT,
|
1994-06-05 11:45:08 +04:00
|
|
|
GRF_RETINAII_UNIT,
|
1994-12-28 12:24:55 +03:00
|
|
|
GRF_RETINAIII_UNIT,
|
1995-08-18 20:21:33 +04:00
|
|
|
GRF_CL5426_UNIT,
|
1995-10-09 05:08:35 +03:00
|
|
|
GRF_ULOWELL_UNIT,
|
- grf_cl.c, grf_clreg.h: added support for Piccolo SD64
- grf_cv.c, grf_cvreg.h, ite_cv.c: some cleanups
- grf_rh.c, grf_rhreg.h, grf_rt.c: new blank ioctl and some KNF
- grf_et.c, grf_etreg.h, ite_et.c: new graphics driver for et4000 based board
(oMniBus, Domino and Merlin)
- grfabs_cc: fix PR#2034
- grfvar.h: new grfunit for GRF_ET4000_UNIT
- scsidefs.h: no longer useful
- zbus.c: new entries for: Piccolo SD64, oMniBus, Domino and Merlin
1996-05-20 01:05:20 +04:00
|
|
|
GRF_CV64_UNIT,
|
1997-10-19 23:08:00 +04:00
|
|
|
GRF_ET4000_UNIT,
|
|
|
|
GRF_CV3D_UNIT
|
1994-05-08 09:52:54 +04:00
|
|
|
};
|