/* * Copyright 1990, 1991 by Thomas Roell, Dinkelscherben, Germany * Copyright 1992 by David Dawes * Copyright 1992 by Jim Tsillas * Copyright 1992 by Rich Murphey * Copyright 1992 by Robert Baron * Copyright 1992 by Orest Zborowski * Copyright 1993 by Vrije Universiteit, The Netherlands * Copyright 1993 by David Wexelblat * Copyright 1994, 1996 by Holger Veit * Copyright 1997 by Takis Psarogiannakopoulos * Copyright 1994-2003 by The XFree86 Project, Inc * * Permission to use, copy, modify, distribute, and sell this software and its * documentation for any purpose is hereby granted without fee, provided that * the above copyright notice appear in all copies and that both that * copyright notice and this permission notice appear in supporting * documentation, and that the names of the above listed copyright holders * not be used in advertising or publicity pertaining to distribution of * the software without specific, written prior permission. The above listed * copyright holders make no representations about the suitability of this * software for any purpose. It is provided "as is" without express or * implied warranty. * * THE ABOVE LISTED COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD * TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDERS BE * LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY * DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ /* * The ARM32 code here carries the following copyright: * * Copyright 1997 * Digital Equipment Corporation. All rights reserved. * This software is furnished under license and may be used and copied only in * accordance with the following terms and conditions. Subject to these * conditions, you may download, copy, install, use, modify and distribute * this software in source and/or binary form. No title or ownership is * transferred hereby. * * 1) Any source code used, modified or distributed must reproduce and retain * this copyright notice and list of conditions as they appear in the * source file. * * 2) No right is granted to use any trade name, trademark, or logo of Digital * Equipment Corporation. Neither the "Digital Equipment Corporation" * name nor any trademark or logo of Digital Equipment Corporation may be * used to endorse or promote products derived from this software without * the prior written permission of Digital Equipment Corporation. * * 3) This software is provided "AS-IS" and any express or implied warranties, * including but not limited to, any implied warranties of merchantability, * fitness for a particular purpose, or non-infringement are disclaimed. * In no event shall DIGITAL be liable for any damages whatsoever, and in * particular, DIGITAL shall not be liable for special, indirect, * consequential, or incidental damages or damages for lost profits, loss * of revenue or loss of use, whether such damages arise in contract, * negligence, tort, under statute, in equity, at law or otherwise, even * if advised of the possibility of such damage. * */ /* * This is private, and should not be included by any drivers. Drivers * may include xf86_OSproc.h to get prototypes for public interfaces. */ #ifndef _XF86_OSLIB_H #define _XF86_OSLIB_H #include #include #include #include #include /**************************************************************************/ /* SYSV386 (SVR3, SVR4), including Solaris */ /**************************************************************************/ #if (defined(SYSV) || defined(SVR4)) && \ (defined(sun) || defined(__i386__)) # ifdef SCO325 # ifndef _SVID3 # define _SVID3 # endif # ifndef _NO_STATIC # define _NO_STATIC # endif # endif # include # include # include # include # include # if defined(__SCO__) # include # endif # include # if defined(_NEED_SYSI86) # if !(defined (sun) && defined (SVR4)) # include # include # endif # include # include # include # if defined(SVR4) && !defined(sun) # include # endif /* SVR4 && !sun */ /* V86SC_IOPL was moved to on Solaris 7 and later */ # if defined(sun) && defined (SVR4) /* Solaris? */ # if defined(__i386__) || defined(__i386) || defined(__x86) /* on x86 or x64? */ # if !defined(V86SC_IOPL) /* Solaris 7 or later? */ # include /* Nope */ # endif # endif /* V86SC_IOPL */ # else # include /* Not solaris */ # endif /* sun && i386 && SVR4 */ # if defined(sun) && (defined (__i386__) || defined(__i386) || defined(__x86)) && defined (SVR4) # include # endif # endif /* _NEED_SYSI86 */ # if defined(HAS_SVR3_MMAPDRV) # include # if !defined(_NEED_SYSI86) # include # include # endif # include /* MMAP driver header */ # endif # if !defined(sun) || (!defined(sparc) && !defined(__SOL8__)) # define HAS_USL_VTS # endif # if !defined(sun) # include # endif # if defined(SCO325) # include # include # include # include # define LED_CAP CLKED # define LED_NUM NLKED # define LED_SCR SLKED # elif defined(HAS_USL_VTS) # include # include # include # elif defined(sun) # include # include # include /* undefine symbols from we don't need that conflict with enum definitions in parser/xf86tokens.h */ # undef STRING # undef LEFTALT # undef RIGHTALT # define LED_CAP LED_CAPS_LOCK # define LED_NUM LED_NUM_LOCK # define LED_SCR LED_SCROLL_LOCK # define LED_COMP LED_COMPOSE # endif /* sun */ # if !defined(VT_ACKACQ) # define VT_ACKACQ 2 # endif /* !VT_ACKACQ */ # if defined(__SCO__) # include # define POSIX_TTY # endif /* __SCO__ */ # if defined(SVR4) || defined(SCO325) # include # if !(defined(sun) && defined (SVR4)) # define DEV_MEM "/dev/pmem" # endif # ifdef SCO325 # undef DEV_MEM # define DEV_MEM "/dev/mem" # endif # define CLEARDTR_SUPPORT # define POSIX_TTY # endif /* SVR4 */ # if defined(sun) && (defined (__i386__) || defined(__i386)) && defined (SVR4) && !defined(__SOL8__) # define USE_VT_SYSREQ # define VT_SYSREQ_DEFAULT TRUE # endif #endif /* (SYSV || SVR4) */ /**************************************************************************/ /* Linux or Glibc-based system */ /**************************************************************************/ #if defined(__linux__) || defined(__GLIBC__) # include # include # include # include # include # ifdef __linux__ # include # else /* __GLIBC__ */ # include # endif # ifdef __sparc__ # include # endif # include # include # include # ifdef __linux__ # define HAS_USL_VTS # include # include # define LDGMAP GIO_SCRNMAP # define LDSMAP PIO_SCRNMAP # define LDNMAP LDSMAP # define CLEARDTR_SUPPORT # define USE_VT_SYSREQ # endif # define POSIX_TTY #endif /* __linux__ || __GLIBC__ */ /**************************************************************************/ /* 386BSD and derivatives, BSD/386 */ /**************************************************************************/ #if defined(__386BSD__) && (defined(__FreeBSD__) || defined(__NetBSD__)) # undef __386BSD__ #endif #ifdef CSRG_BASED # include # include # include # define termio termios # define POSIX_TTY # include # include # include # include # if defined(__bsdi__) # include # if (_BSDI_VERSION < 199510) # include # endif # endif /* __bsdi__ */ #endif /* CSRG_BASED */ /**************************************************************************/ /* Kernel of *BSD */ /**************************************************************************/ #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || \ defined(__NetBSD__) || defined(__OpenBSD__) || defined(__bsdi__) || defined(__DragonFly__) # include # if defined(__FreeBSD_version) && !defined(__FreeBSD_kernel_version) # define __FreeBSD_kernel_version __FreeBSD_version # endif # if !defined(LINKKIT) /* Don't need this stuff for the Link Kit */ # if defined(__bsdi__) # include # define CONSOLE_X_MODE_ON PCCONIOCRAW # define CONSOLE_X_MODE_OFF PCCONIOCCOOK # define CONSOLE_X_BELL PCCONIOCBEEP # else /* __bsdi__ */ # if defined(__OpenBSD__) # ifdef PCCONS_SUPPORT # include # undef CONSOLE_X_MODE_ON # undef CONSOLE_X_MODE_OFF # undef CONSOLE_X_BELL # endif # endif # ifdef SYSCONS_SUPPORT # define COMPAT_SYSCONS # if defined(__NetBSD__) || defined(__OpenBSD__) # include # else # if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) # if defined(__DragonFly__) || (__FreeBSD_kernel_version >= 410000) # include # include # else # include # endif /* FreeBSD 4.1 RELEASE or lator */ # else # include # endif # endif # endif /* SYSCONS_SUPPORT */ # if defined(PCVT_SUPPORT) # if !defined(SYSCONS_SUPPORT) /* no syscons, so include pcvt specific header file */ # if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) # include # else # if defined(__NetBSD__) || defined(__OpenBSD__) # if !defined(WSCONS_SUPPORT) # include # endif /* WSCONS_SUPPORT */ # else # include # endif /* __NetBSD__ */ # endif /* __FreeBSD_kernel__ || __OpenBSD__ */ # else /* pcvt and syscons: hard-code the ID magic */ # define VGAPCVTID _IOWR('V',113, struct pcvtid) struct pcvtid { char name[16]; int rmajor, rminor; }; # endif /* PCVT_SUPPORT && SYSCONS_SUPPORT */ # endif /* PCVT_SUPPORT */ # ifdef WSCONS_SUPPORT # include # include # endif /* WSCONS_SUPPORT */ # if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__) # if defined(__FreeBSD_kernel_version) && (__FreeBSD_kernel_version >= 500013) # include # else # undef MOUSE_GETINFO # include # endif # endif /* Include these definitions in case ioctl_pc.h didn't get included */ # ifndef CONSOLE_X_MODE_ON # define CONSOLE_X_MODE_ON _IO('t',121) # endif # ifndef CONSOLE_X_MODE_OFF # define CONSOLE_X_MODE_OFF _IO('t',122) # endif # ifndef CONSOLE_X_BELL # define CONSOLE_X_BELL _IOW('t',123,int[2]) # endif # ifndef CONSOLE_X_TV_ON # define CONSOLE_X_TV_ON _IOW('t',155,int) # define XMODE_RGB 0 # define XMODE_NTSC 1 # define XMODE_PAL 2 # define XMODE_SECAM 3 # endif # ifndef CONSOLE_X_TV_OFF # define CONSOLE_X_TV_OFF _IO('t',156) # endif #ifndef CONSOLE_GET_LINEAR_INFO # define CONSOLE_GET_LINEAR_INFO _IOR('t',157,struct map_info) #endif #ifndef CONSOLE_GET_IO_INFO # define CONSOLE_GET_IO_INFO _IOR('t',158,struct map_info) #endif #ifndef CONSOLE_GET_MEM_INFO # define CONSOLE_GET_MEM_INFO _IOR('t',159,struct map_info) #endif # endif /* __bsdi__ */ # endif /* !LINKKIT */ #if defined(USE_I386_IOPL) || defined(USE_AMD64_IOPL) #include #endif # define CLEARDTR_SUPPORT # if defined(SYSCONS_SUPPORT) || defined(PCVT_SUPPORT) || defined(WSCONS_SUPPORT) # define USE_VT_SYSREQ # endif #endif /* __FreeBSD_kernel__ || __NetBSD__ || __OpenBSD__ || __bsdi__ */ /**************************************************************************/ /* IRIX */ /**************************************************************************/ /**************************************************************************/ /* Generic */ /**************************************************************************/ #include /* May need to adjust this for other OSs */ /* * Hack originally for ISC 2.2 POSIX headers, but may apply elsewhere, * and it's safe, so just do it. */ #if !defined(O_NDELAY) && defined(O_NONBLOCK) # define O_NDELAY O_NONBLOCK #endif /* !O_NDELAY && O_NONBLOCK */ #if !defined(MAXHOSTNAMELEN) # define MAXHOSTNAMELEN 32 #endif /* !MAXHOSTNAMELEN */ #if defined(_POSIX_SOURCE) # include #else # define _POSIX_SOURCE # include # undef _POSIX_SOURCE #endif /* _POSIX_SOURCE */ #if !defined(PATH_MAX) # if defined(MAXPATHLEN) # define PATH_MAX MAXPATHLEN # else # define PATH_MAX 1024 # endif /* MAXPATHLEN */ #endif /* !PATH_MAX */ #ifndef DEV_MEM #define DEV_MEM "/dev/mem" #endif #ifndef VT_SYSREQ_DEFAULT #define VT_SYSREQ_DEFAULT FALSE #endif #define SYSCALL(call) while(((call) == -1) && (errno == EINTR)) #define XF86_OS_PRIVS #include "xf86_OSproc.h" #ifndef NO_COMPILER_H #include "compiler.h" #endif #endif /* _XF86_OSLIB_H */