1 1.15 dholland /* $NetBSD: grfioctl.h,v 1.15 2015/09/07 03:49:45 dholland 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.15 dholland #include <sys/ioccom.h> 45 1.15 dholland 46 1.3 briggs struct grfmode { 47 1.4 briggs u_int8_t mode_id; /* Identifier for mode */ 48 1.9 chs u_int8_t pad0; 49 1.13 christos void * fbbase; /* Base of page of frame buffer */ 50 1.4 briggs u_int32_t fbsize; /* Size of frame buffer */ 51 1.4 briggs u_int16_t fboff; /* Offset of frame buffer from base */ 52 1.4 briggs u_int16_t rowbytes; /* Screen rowbytes */ 53 1.4 briggs u_int16_t width; /* Screen width */ 54 1.4 briggs u_int16_t height; /* Screen height */ 55 1.4 briggs u_int16_t hres; /* Horizontal resolution (dpi) */ 56 1.4 briggs u_int16_t vres; /* Vertical resolution (dpi) */ 57 1.4 briggs u_int16_t ptype; /* 0 = indexed, 0x10 = direct */ 58 1.4 briggs u_int16_t psize; /* Screen depth */ 59 1.4 briggs char pad[32]; /* Space for expansion */ 60 1.9 chs } __attribute__((packed)); 61 1.3 briggs 62 1.3 briggs struct grfmodes { 63 1.3 briggs int nmodes; /* Number of modes in modelist */ 64 1.3 briggs struct grfmode *modelist; /* Pointer to space for modes */ 65 1.3 briggs }; 66 1.3 briggs 67 1.3 briggs /* 68 1.3 briggs * BSD ioctls (first few match HP/UX ioctl()s. In case we want 69 1.3 briggs * compatibility later, start our own at 16). 70 1.3 briggs */ 71 1.3 briggs #define GRFIOCON _IO('G', 1) /* turn graphics on */ 72 1.3 briggs #define GRFIOCOFF _IO('G', 2) /* turn graphics off */ 73 1.8 scottr #if defined(GRF_COMPAT) || (NGRF > 0) 74 1.6 scottr #define GRFIOCGINFO _IOR('G', 0, struct grfinfo) /* get info on device */ 75 1.3 briggs #define GRFIOCMAP _IOWR('G', 5, int) /* map in regs+framebuffer */ 76 1.3 briggs #define GRFIOCUNMAP _IOW('G', 6, int) /* unmap regs+framebuffer */ 77 1.8 scottr #endif /* GRF_COMPAT || (NGRF > 0) */ 78 1.3 briggs 79 1.3 briggs #define GRFIOCLISTMODES _IOWR('G', 16, struct grfmodes) /* Get list of modes */ 80 1.3 briggs #define GRFIOCGETMODE _IOR('G', 17, int) /* Get list of modes */ 81 1.3 briggs #define GRFIOCSETMODE _IOW('G', 18, int) /* Set to mode_id mode */ 82 1.5 briggs #define GRFIOCGMODE _IOR('G', 19, struct grfmode) /* Get list of modes */ 83 1.3 briggs 84 1.8 scottr #if defined(GRF_COMPAT) || (NGRF > 0) 85 1.3 briggs /* 86 1.3 briggs * Obsolete structure. 87 1.3 briggs * Only used to return information to older programs that still 88 1.3 briggs * depend on GRFIOCGINFO. 89 1.3 briggs */ 90 1.1 lkestel struct grfinfo { 91 1.1 lkestel int gd_id; /* HPUX identifier */ 92 1.13 christos void * gd_regaddr; /* control registers physaddr */ 93 1.1 lkestel int gd_regsize; /* control registers size */ 94 1.13 christos void * gd_fbaddr; /* frame buffer physaddr */ 95 1.1 lkestel int gd_fbsize; /* frame buffer size */ 96 1.1 lkestel short gd_colors; /* number of colors */ 97 1.1 lkestel short gd_planes; /* number of planes */ 98 1.1 lkestel int gd_fbwidth; /* frame buffer width */ 99 1.1 lkestel int gd_fbheight; /* frame buffer height */ 100 1.1 lkestel int gd_fbrowbytes; /* frame buffer rowbytes */ 101 1.1 lkestel int gd_dwidth; /* displayed part width */ 102 1.1 lkestel int gd_dheight; /* displayed part height */ 103 1.1 lkestel int gd_pad[6]; /* for future expansion */ 104 1.1 lkestel }; 105 1.8 scottr #endif /* GRF_COMPAT || (NGRF > 0) */ 106 1.11 fredb 107 1.11 fredb #endif /* _MAC68K_GRFIOCTL_H_ */ 108