grfioctl.h revision 1.5 1 1.5 briggs /* $NetBSD: grfioctl.h,v 1.5 1995/07/02 05:26:45 briggs Exp $ */
2 1.2 cgd
3 1.1 lkestel /*
4 1.1 lkestel * Copyright (c) 1988 University of Utah.
5 1.1 lkestel * Copyright (c) 1990 The Regents of the University of California.
6 1.1 lkestel * All rights reserved.
7 1.1 lkestel *
8 1.1 lkestel * This code is derived from software contributed to Berkeley by
9 1.1 lkestel * the Systems Programming Group of the University of Utah Computer
10 1.1 lkestel * Science Department.
11 1.1 lkestel *
12 1.1 lkestel * Redistribution and use in source and binary forms, with or without
13 1.1 lkestel * modification, are permitted provided that the following conditions
14 1.1 lkestel * are met:
15 1.1 lkestel * 1. Redistributions of source code must retain the above copyright
16 1.1 lkestel * notice, this list of conditions and the following disclaimer.
17 1.1 lkestel * 2. Redistributions in binary form must reproduce the above copyright
18 1.1 lkestel * notice, this list of conditions and the following disclaimer in the
19 1.1 lkestel * documentation and/or other materials provided with the distribution.
20 1.1 lkestel * 3. All advertising materials mentioning features or use of this software
21 1.1 lkestel * must display the following acknowledgement:
22 1.1 lkestel * This product includes software developed by the University of
23 1.1 lkestel * California, Berkeley and its contributors.
24 1.1 lkestel * 4. Neither the name of the University nor the names of its contributors
25 1.1 lkestel * may be used to endorse or promote products derived from this software
26 1.1 lkestel * without specific prior written permission.
27 1.1 lkestel *
28 1.1 lkestel * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 1.1 lkestel * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 1.1 lkestel * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 1.1 lkestel * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 1.1 lkestel * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 1.1 lkestel * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 1.1 lkestel * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 1.1 lkestel * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 1.1 lkestel * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 1.1 lkestel * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 1.1 lkestel * SUCH DAMAGE.
39 1.1 lkestel *
40 1.1 lkestel * from: Utah $Hdr: grfioctl.h 1.1 90/07/09$
41 1.1 lkestel *
42 1.2 cgd * @(#)grfioctl.h 7.2 (Berkeley) 11/4/90
43 1.1 lkestel */
44 1.1 lkestel
45 1.3 briggs struct grfmode {
46 1.4 briggs u_int8_t mode_id; /* Identifier for mode */
47 1.4 briggs caddr_t fbbase; /* Base of page of frame buffer */
48 1.4 briggs u_int32_t fbsize; /* Size of frame buffer */
49 1.4 briggs u_int16_t fboff; /* Offset of frame buffer from base */
50 1.4 briggs u_int16_t rowbytes; /* Screen rowbytes */
51 1.4 briggs u_int16_t width; /* Screen width */
52 1.4 briggs u_int16_t height; /* Screen height */
53 1.4 briggs u_int16_t hres; /* Horizontal resolution (dpi) */
54 1.4 briggs u_int16_t vres; /* Vertical resolution (dpi) */
55 1.4 briggs u_int16_t ptype; /* 0 = indexed, 0x10 = direct */
56 1.4 briggs u_int16_t psize; /* Screen depth */
57 1.4 briggs char pad[32]; /* Space for expansion */
58 1.3 briggs };
59 1.3 briggs
60 1.3 briggs struct grfmodes {
61 1.3 briggs int nmodes; /* Number of modes in modelist */
62 1.3 briggs struct grfmode *modelist; /* Pointer to space for modes */
63 1.3 briggs };
64 1.3 briggs
65 1.3 briggs /*
66 1.3 briggs * BSD ioctls (first few match HP/UX ioctl()s. In case we want
67 1.3 briggs * compatibility later, start our own at 16).
68 1.3 briggs */
69 1.3 briggs #define GRFIOCGINFO _IOR('G', 0, struct grfinfo) /* get info on device */
70 1.3 briggs #define GRFIOCON _IO('G', 1) /* turn graphics on */
71 1.3 briggs #define GRFIOCOFF _IO('G', 2) /* turn graphics off */
72 1.3 briggs #define GRFIOCMAP _IOWR('G', 5, int) /* map in regs+framebuffer */
73 1.3 briggs #define GRFIOCUNMAP _IOW('G', 6, int) /* unmap regs+framebuffer */
74 1.3 briggs
75 1.3 briggs #define GRFIOCLISTMODES _IOWR('G', 16, struct grfmodes) /* Get list of modes */
76 1.3 briggs #define GRFIOCGETMODE _IOR('G', 17, int) /* Get list of modes */
77 1.3 briggs #define GRFIOCSETMODE _IOW('G', 18, int) /* Set to mode_id mode */
78 1.5 briggs #define GRFIOCGMODE _IOR('G', 19, struct grfmode) /* Get list of modes */
79 1.3 briggs
80 1.3 briggs /*
81 1.3 briggs * Obsolete structure.
82 1.3 briggs * Only used to return information to older programs that still
83 1.3 briggs * depend on GRFIOCGINFO.
84 1.3 briggs */
85 1.1 lkestel struct grfinfo {
86 1.1 lkestel int gd_id; /* HPUX identifier */
87 1.1 lkestel caddr_t gd_regaddr; /* control registers physaddr */
88 1.1 lkestel int gd_regsize; /* control registers size */
89 1.1 lkestel caddr_t gd_fbaddr; /* frame buffer physaddr */
90 1.1 lkestel int gd_fbsize; /* frame buffer size */
91 1.1 lkestel short gd_colors; /* number of colors */
92 1.1 lkestel short gd_planes; /* number of planes */
93 1.1 lkestel int gd_fbwidth; /* frame buffer width */
94 1.1 lkestel int gd_fbheight; /* frame buffer height */
95 1.1 lkestel int gd_fbrowbytes; /* frame buffer rowbytes */
96 1.1 lkestel int gd_dwidth; /* displayed part width */
97 1.1 lkestel int gd_dheight; /* displayed part height */
98 1.1 lkestel int gd_pad[6]; /* for future expansion */
99 1.1 lkestel };
100