grfioctl.h revision 1.14 1 1.14 rmind /* $NetBSD: grfioctl.h,v 1.14 2011/02/08 20:20:17 rmind Exp $ */
2 1.2 cgd
3 1.1 lkestel /*
4 1.14 rmind * 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.10 agc *
8 1.10 agc * This code is derived from software contributed to Berkeley by
9 1.10 agc * the Systems Programming Group of the University of Utah Computer
10 1.10 agc * Science Department.
11 1.10 agc *
12 1.10 agc * Redistribution and use in source and binary forms, with or without
13 1.10 agc * modification, are permitted provided that the following conditions
14 1.10 agc * are met:
15 1.10 agc * 1. Redistributions of source code must retain the above copyright
16 1.10 agc * notice, this list of conditions and the following disclaimer.
17 1.10 agc * 2. Redistributions in binary form must reproduce the above copyright
18 1.10 agc * notice, this list of conditions and the following disclaimer in the
19 1.10 agc * documentation and/or other materials provided with the distribution.
20 1.10 agc * 3. Neither the name of the University nor the names of its contributors
21 1.10 agc * may be used to endorse or promote products derived from this software
22 1.10 agc * without specific prior written permission.
23 1.10 agc *
24 1.10 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 1.10 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 1.10 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 1.10 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 1.10 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 1.10 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 1.10 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 1.10 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 1.10 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 1.10 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 1.10 agc * SUCH DAMAGE.
35 1.10 agc *
36 1.10 agc * from: Utah $Hdr: grfioctl.h 1.1 90/07/09$
37 1.10 agc *
38 1.10 agc * @(#)grfioctl.h 7.2 (Berkeley) 11/4/90
39 1.10 agc */
40 1.1 lkestel
41 1.11 fredb #ifndef _MAC68K_GRFIOCTL_H_
42 1.11 fredb #define _MAC68K_GRFIOCTL_H_
43 1.11 fredb
44 1.3 briggs struct grfmode {
45 1.4 briggs u_int8_t mode_id; /* Identifier for mode */
46 1.9 chs u_int8_t pad0;
47 1.13 christos void * 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.9 chs } __attribute__((packed));
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 GRFIOCON _IO('G', 1) /* turn graphics on */
70 1.3 briggs #define GRFIOCOFF _IO('G', 2) /* turn graphics off */
71 1.8 scottr #if defined(GRF_COMPAT) || (NGRF > 0)
72 1.6 scottr #define GRFIOCGINFO _IOR('G', 0, struct grfinfo) /* get info on device */
73 1.3 briggs #define GRFIOCMAP _IOWR('G', 5, int) /* map in regs+framebuffer */
74 1.3 briggs #define GRFIOCUNMAP _IOW('G', 6, int) /* unmap regs+framebuffer */
75 1.8 scottr #endif /* GRF_COMPAT || (NGRF > 0) */
76 1.3 briggs
77 1.3 briggs #define GRFIOCLISTMODES _IOWR('G', 16, struct grfmodes) /* Get list of modes */
78 1.3 briggs #define GRFIOCGETMODE _IOR('G', 17, int) /* Get list of modes */
79 1.3 briggs #define GRFIOCSETMODE _IOW('G', 18, int) /* Set to mode_id mode */
80 1.5 briggs #define GRFIOCGMODE _IOR('G', 19, struct grfmode) /* Get list of modes */
81 1.3 briggs
82 1.8 scottr #if defined(GRF_COMPAT) || (NGRF > 0)
83 1.3 briggs /*
84 1.3 briggs * Obsolete structure.
85 1.3 briggs * Only used to return information to older programs that still
86 1.3 briggs * depend on GRFIOCGINFO.
87 1.3 briggs */
88 1.1 lkestel struct grfinfo {
89 1.1 lkestel int gd_id; /* HPUX identifier */
90 1.13 christos void * gd_regaddr; /* control registers physaddr */
91 1.1 lkestel int gd_regsize; /* control registers size */
92 1.13 christos void * gd_fbaddr; /* frame buffer physaddr */
93 1.1 lkestel int gd_fbsize; /* frame buffer size */
94 1.1 lkestel short gd_colors; /* number of colors */
95 1.1 lkestel short gd_planes; /* number of planes */
96 1.1 lkestel int gd_fbwidth; /* frame buffer width */
97 1.1 lkestel int gd_fbheight; /* frame buffer height */
98 1.1 lkestel int gd_fbrowbytes; /* frame buffer rowbytes */
99 1.1 lkestel int gd_dwidth; /* displayed part width */
100 1.1 lkestel int gd_dheight; /* displayed part height */
101 1.1 lkestel int gd_pad[6]; /* for future expansion */
102 1.1 lkestel };
103 1.8 scottr #endif /* GRF_COMPAT || (NGRF > 0) */
104 1.11 fredb
105 1.11 fredb #endif /* _MAC68K_GRFIOCTL_H_ */
106