xref: /netbsd/sys/dev/qbus/qdioctl.h (revision bf9ec67e)
1 /*	$NetBSD: qdioctl.h,v 1.3 1999/06/20 17:58:56 ragge Exp $	*/
2 /*-
3  * Copyright (c) 1982, 1986
4  *	The Regents of the University of California.  All rights reserved.
5  * (c) UNIX System Laboratories, Inc.
6  * All or some portions of this file are derived from material licensed
7  * to the University of California by American Telephone and Telegraph
8  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
9  * the permission of UNIX System Laboratories, Inc.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. All advertising materials mentioning features or use of this software
20  *    must display the following acknowledgement:
21  *	This product includes software developed by the University of
22  *	California, Berkeley and its contributors.
23  * 4. Neither the name of the University nor the names of its contributors
24  *    may be used to endorse or promote products derived from this software
25  *    without specific prior written permission.
26  *
27  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
28  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
29  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
30  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
31  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
32  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
33  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
34  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
35  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
36  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37  * SUCH DAMAGE.
38  *
39  *	@(#)qdioctl.h	7.2 (Berkeley) 1/21/94
40  */
41 
42 /*
43  *	derived from: qdioctl.h	1.1	(ULTRIX)	8/22/85
44  */
45 /*
46  * QDSS IOCTL definitions
47  */
48 
49 
50 /************************************************************************
51  *									*
52  *			Copyright (c) 1985 by				*
53  *		Digital Equipment Corporation, Maynard, MA		*
54  *			All rights reserved.				*
55  *									*
56  *   This software is furnished under a license and may be used and	*
57  *   copied  only  in accordance with the terms of such license and	*
58  *   with the  inclusion  of  the  above  copyright  notice.   This	*
59  *   software  or  any  other copies thereof may not be provided or	*
60  *   otherwise made available to any other person.  No title to and	*
61  *   ownership of the software is hereby transferred.			*
62  *									*
63  *   This software is  derived  from  software  received  from  the	*
64  *   University    of   California,   Berkeley,   and   from   Bell	*
65  *   Laboratories.  Use, duplication, or disclosure is  subject  to	*
66  *   restrictions  under  license  agreements  with  University  of	*
67  *   California and with AT&T.						*
68  *									*
69  *   The information in this software is subject to change  without	*
70  *   notice  and should not be construed as a commitment by Digital	*
71  *   Equipment Corporation.						*
72  *									*
73  *   Digital assumes no responsibility for the use  or  reliability	*
74  *   of its software on equipment which is not supplied by Digital.	*
75  *									*
76  ************************************************************************/
77 /***************************************************************************
78 *	revision history: (belongs in sccs)
79 ****************************************************************************
80 *
81 * 22 oct 85  longo  fixed QD_PRGTABRES cmd number to be 22 instead of 12
82 * 14 oct 85  longo  added QD_KERN_LOOP and QD_KERN_UNLOOP
83 * 02 oct 85  longo  added QD_MAPCOLOR and QD_UNMAPCOLOR
84 * 17 sep 85  longo  made QD_MAPIOBUF a read/write command type
85 *
86 ***************************************************************************/
87 
88 
89 #include <sys/ioctl.h>
90 
91 
92 #define QD_GETEVENT	_IOR('g', 1, struct _vs_event) /* get oldest event */
93 #define QD_WTCURSOR	_IOW('g', 2, short[32])       /* write cursor bitmap */
94 #define QD_RDCURSOR	_IOR('g', 3, 64)           /* read cursor bitmap */
95 #define QD_CLRSCRN	_IO('g', 4) 		/* clear the screen */
96 #define QD_RDCONFIG	_IOR('g', 5, short)        /* read QDSS configuration */
97 #define QD_PRGMOUSE	_IOW('g', 6, char)	/* program mouse */
98 #define QD_PRGTABLET	_IOW('g', 7, char) 	/* program tablet */
99 #define QD_PRGKBD	_IOW('g', 8, struct prgkbd) /* program LK201 kbd */
100 #define QD_MAPDEVICE	_IOR('g', 9, struct qdmap) /* map device to user */
101 #define QD_MAPIOBUF 	_IOWR('g', 10, caddr_t)     /* map DMA iobuf to user */
102 #define QD_MAPEVENT	_IOR('g', 11, caddr_t)     /* map event queue to user */
103 #define QD_PRGCURSOR	_IOW('g', 12, struct prg_cursor) /* program cursor */
104 #define QD_RESET	_IO('g', 13)  	    /* set device & driver defaults */
105 #define QD_POSCURSOR	_IOW('g', 14, struct _vs_cursor) /* position cursor */
106 #define QD_SET		_IO('g', 15)  	    /* set DUART & driver defaults */
107 #define QD_MAPSCROLL    _IOR('g', 16, caddr_t)  /* map scroll param area */
108 #define QD_UNMAPSCROLL  _IO('g', 17)            /* unmap scroll param area */
109 #define QD_MAPCOLOR     _IOR('g', 18, caddr_t)  /* map color map write buf */
110 #define QD_UNMAPCOLOR   _IO('g', 19)            /* unmap color map write buf */
111 #define QD_KERN_LOOP    _IO('g', 20)       /* detour kernel console output */
112 #define QD_KERN_UNLOOP  _IO('g', 21)       /* un-detour kernel console output */
113 #define QD_PRGTABRES	_IOW('g', 22, short) /* program tablet resolution */
114