The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/sys/consio.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 1991-1996 Søren Schmidt
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer
   10  *    in this position and unchanged.
   11  * 2. Redistributions in binary form must reproduce the above copyright
   12  *    notice, this list of conditions and the following disclaimer in the
   13  *    documentation and/or other materials provided with the distribution.
   14  * 3. The name of the author may not be used to endorse or promote products
   15  *    derived from this software without specific prior written permission
   16  *
   17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   27  *
   28  * $FreeBSD$
   29  */
   30 
   31 #ifndef _SYS_CONSIO_H_
   32 #define _SYS_CONSIO_H_
   33 
   34 #ifndef _KERNEL
   35 #include <sys/types.h>
   36 #endif
   37 #include <sys/ioccom.h>
   38 
   39 /*
   40  * Console ioctl commands.  Some commands are named as KDXXXX, GIO_XXX, and
   41  * PIO_XXX, rather than CONS_XXX, for historical and compatibility reasons.
   42  * Some other CONS_XXX commands are works as wrapper around frame buffer 
   43  * ioctl commands FBIO_XXX.  Do not try to change all these commands, 
   44  * otherwise we shall have compatibility problems.
   45  */
   46 
   47 /* get/set video mode */
   48 #define KD_TEXT         0               /* set text mode restore fonts  */
   49 #define KD_TEXT0        0               /* ditto                        */
   50 #define KD_GRAPHICS     1               /* set graphics mode            */
   51 #define KD_TEXT1        2               /* set text mode !restore fonts */
   52 #define KD_PIXEL        3               /* set pixel mode               */
   53 #define KDGETMODE       _IOR('K', 9, int)
   54 #define KDSETMODE       _IO('K', 10 /*, int */)
   55 
   56 /* set border color */
   57 #define KDSBORDER       _IO('K', 13 /*, int */)
   58 
   59 /* set up raster(pixel) text mode */
   60 struct _scr_size {
   61         int             scr_size[3];
   62 };
   63 typedef struct _scr_size        scr_size_t;
   64 
   65 #define KDRASTER        _IOW('K', 100, scr_size_t)
   66 
   67 /* get/set screen char map */
   68 struct _scrmap {
   69         char            scrmap[256];
   70 };
   71 typedef struct _scrmap  scrmap_t;
   72 
   73 #define GIO_SCRNMAP     _IOR('k', 2, scrmap_t)
   74 #define PIO_SCRNMAP     _IOW('k', 3, scrmap_t)
   75 
   76 /* get the current text attribute */
   77 #define GIO_ATTR        _IOR('a', 0, int)
   78 
   79 /* get the current text color */
   80 #define GIO_COLOR       _IOR('c', 0, int)
   81 
   82 /* get the adapter type (equivalent to FBIO_ADPTYPE) */
   83 #define CONS_CURRENT    _IOR('c', 1, int)
   84 
   85 /* get the current video mode (equivalent to FBIO_GETMODE) */
   86 #define CONS_GET        _IOR('c', 2, int)
   87 
   88 /* not supported? */
   89 #define CONS_IO         _IO('c', 3)
   90 
   91 /* set blank time interval */
   92 #define CONS_BLANKTIME  _IOW('c', 4, int)
   93 
   94 /* set/get the screen saver (these ioctls are current noop) */
   95 struct ssaver   {
   96 #define MAXSSAVER       16
   97         char            name[MAXSSAVER];
   98         int             num;
   99         long            time;
  100 };
  101 typedef struct ssaver   ssaver_t;
  102 
  103 #define CONS_SSAVER     _IOW('c', 5, ssaver_t)
  104 #define CONS_GSAVER     _IOWR('c', 6, ssaver_t)
  105 
  106 /* set the text cursor shape */
  107 #define CONS_BLINK_CURSOR (1 << 0)
  108 #define CONS_CHAR_CURSOR (1 << 1)
  109 #define CONS_CURSORTYPE _IOW('c', 7, int)
  110 
  111 /* set the bell type to audible or visual */
  112 #define CONS_VISUAL_BELL (1 << 0)
  113 #define CONS_QUIET_BELL (1 << 1)
  114 #define CONS_BELLTYPE   _IOW('c', 8, int)
  115 
  116 /* set the history (scroll back) buffer size (in lines) */
  117 #define CONS_HISTORY    _IOW('c', 9, int)
  118 
  119 /* clear the history (scroll back) buffer */
  120 #define CONS_CLRHIST    _IO('c', 10)
  121 
  122 /* mouse cursor ioctl */
  123 struct mouse_data {
  124         int             x;
  125         int             y;
  126         int             z;
  127         int             buttons;
  128 };
  129 typedef struct mouse_data mouse_data_t;
  130 
  131 struct mouse_mode {
  132         int             mode;
  133         int             signal;
  134 };
  135 typedef struct mouse_mode mouse_mode_t;
  136 
  137 struct mouse_event {
  138         int             id;                     /* one based */
  139         int             value;
  140 };
  141 typedef struct mouse_event mouse_event_t;
  142 
  143 struct mouse_info {
  144         int             operation;
  145 #define MOUSE_SHOW      0x01
  146 #define MOUSE_HIDE      0x02
  147 #define MOUSE_MOVEABS   0x03
  148 #define MOUSE_MOVEREL   0x04
  149 #define MOUSE_GETINFO   0x05
  150 #define MOUSE_MODE      0x06
  151 #define MOUSE_ACTION    0x07
  152 #define MOUSE_MOTION_EVENT      0x08
  153 #define MOUSE_BUTTON_EVENT      0x09
  154 #define MOUSE_MOUSECHAR 0x0a
  155         union {
  156                 mouse_data_t    data;
  157                 mouse_mode_t    mode;
  158                 mouse_event_t   event;
  159                 int             mouse_char;
  160         }               u;
  161 };
  162 typedef struct mouse_info mouse_info_t;
  163 
  164 #define CONS_MOUSECTL   _IOWR('c', 10, mouse_info_t)
  165 
  166 /* see if the vty has been idle */
  167 #define CONS_IDLE       _IOR('c', 11, int)
  168 
  169 /* set the screen saver mode */
  170 #define CONS_NO_SAVER   (-1)
  171 #define CONS_LKM_SAVER  0
  172 #define CONS_USR_SAVER  1
  173 #define CONS_SAVERMODE  _IOW('c', 12, int)
  174 
  175 /* start the screen saver */
  176 #define CONS_SAVERSTART _IOW('c', 13, int)
  177 
  178 /* set/get font data */
  179 struct fnt8 {
  180         char            fnt8x8[8*256];
  181 };
  182 typedef struct fnt8     fnt8_t;
  183 
  184 struct fnt14 {
  185         char            fnt8x14[14*256];
  186 };
  187 typedef struct fnt14    fnt14_t;
  188 
  189 struct fnt16 {
  190         char            fnt8x16[16*256];
  191 };
  192 typedef struct fnt16    fnt16_t;
  193 
  194 #define PIO_FONT8x8     _IOW('c', 64, fnt8_t)
  195 #define GIO_FONT8x8     _IOR('c', 65, fnt8_t)
  196 #define PIO_FONT8x14    _IOW('c', 66, fnt14_t)
  197 #define GIO_FONT8x14    _IOR('c', 67, fnt14_t)
  198 #define PIO_FONT8x16    _IOW('c', 68, fnt16_t)
  199 #define GIO_FONT8x16    _IOR('c', 69, fnt16_t)
  200 
  201 /* get video mode information */
  202 struct colors   {
  203         char            fore;
  204         char            back;
  205 };
  206 
  207 struct vid_info {
  208         short           size;
  209         short           m_num;
  210         u_short         font_size;
  211         u_short         mv_row, mv_col;
  212         u_short         mv_rsz, mv_csz;
  213         struct colors   mv_norm,
  214                         mv_rev,
  215                         mv_grfc;
  216         u_char          mv_ovscan;
  217         u_char          mk_keylock;
  218 };
  219 typedef struct vid_info vid_info_t;
  220 
  221 #define CONS_GETINFO    _IOWR('c', 73, vid_info_t)
  222 
  223 /* get version */
  224 #define CONS_GETVERS    _IOR('c', 74, int)
  225 
  226 /* get the video adapter index (equivalent to FBIO_ADAPTER) */
  227 #define CONS_CURRENTADP _IOR('c', 100, int)
  228 
  229 /* get the video adapter information (equivalent to FBIO_ADPINFO) */
  230 #define CONS_ADPINFO    _IOWR('c', 101, video_adapter_info_t)
  231 
  232 /* get the video mode information (equivalent to FBIO_MODEINFO) */
  233 #define CONS_MODEINFO   _IOWR('c', 102, video_info_t)
  234 
  235 /* find a video mode (equivalent to FBIO_FINDMODE) */
  236 #define CONS_FINDMODE   _IOWR('c', 103, video_info_t)
  237 
  238 /* set the frame buffer window origin (equivalent to FBIO_SETWINORG) */
  239 #define CONS_SETWINORG  _IO('c', 104 /*, u_int */) 
  240 
  241 /* use the specified keyboard */
  242 #define CONS_SETKBD     _IO('c', 110 /*, int */)
  243 
  244 /* release the current keyboard */
  245 #define CONS_RELKBD     _IO('c', 111)
  246 
  247 /* Snapshot the current video buffer */
  248 #define CONS_SCRSHOT    _IOWR('c', 105, scrshot_t)
  249 
  250 struct scrshot {
  251         int             xsize;
  252         int             ysize;
  253         u_int16_t*      buf;
  254 };
  255 typedef struct scrshot scrshot_t;
  256 
  257 /* get/set the current terminal emulator info. */
  258 #define TI_NAME_LEN     32
  259 #define TI_DESC_LEN     64
  260 
  261 struct term_info {
  262         int             ti_index;
  263         int             ti_flags;
  264         u_char          ti_name[TI_NAME_LEN];
  265         u_char          ti_desc[TI_DESC_LEN];
  266 };
  267 typedef struct term_info term_info_t;
  268 
  269 #define CONS_GETTERM    _IOWR('c', 112, term_info_t)
  270 #define CONS_SETTERM    _IOW('c', 113, term_info_t)
  271 
  272 #ifdef PC98
  273 #define ADJUST_CLOCK    _IO('t',100)            /* for 98note resume */
  274 #endif
  275 
  276 /*
  277  * Vty switching ioctl commands.
  278  */
  279 
  280 /* get the next available vty */
  281 #define VT_OPENQRY      _IOR('v', 1, int)
  282 
  283 /* set/get vty switching mode */
  284 #ifndef _VT_MODE_DECLARED
  285 #define _VT_MODE_DECLARED
  286 struct vt_mode {
  287         char            mode;
  288 #define VT_AUTO         0               /* switching is automatic       */
  289 #define VT_PROCESS      1               /* switching controlled by prog */
  290 #define VT_KERNEL       255             /* switching controlled in kernel */
  291         char            waitv;          /* not implemented yet  SOS     */
  292         short           relsig;
  293         short           acqsig;
  294         short           frsig;          /* not implemented yet  SOS     */
  295 };
  296 typedef struct vt_mode vtmode_t;
  297 #endif /* !_VT_MODE_DECLARED */
  298 
  299 #define VT_SETMODE      _IOW('v', 2, vtmode_t)
  300 #define VT_GETMODE      _IOR('v', 3, vtmode_t)
  301 
  302 /* acknowledge release or acquisition of a vty */
  303 #define VT_FALSE        0
  304 #define VT_TRUE         1
  305 #define VT_ACKACQ       2
  306 #define VT_RELDISP      _IO('v', 4 /*, int */)
  307 
  308 /* activate the specified vty */
  309 #define VT_ACTIVATE     _IO('v', 5 /*, int */)
  310 
  311 /* wait until the specified vty is activate */
  312 #define VT_WAITACTIVE   _IO('v', 6 /*, int */)
  313 
  314 /* get the currently active vty */
  315 #define VT_GETACTIVE    _IOR('v', 7, int)
  316 
  317 /* get the index of the vty */
  318 #define VT_GETINDEX     _IOR('v', 8, int)
  319 
  320 /* prevent switching vtys */
  321 #define VT_LOCKSWITCH   _IOW('v', 9, int)
  322 
  323 /*
  324  * Video mode switching ioctl.  See sys/fbio.h for mode numbers.
  325  */
  326 
  327 #define SW_B40x25       _IO('S', M_B40x25)
  328 #define SW_C40x25       _IO('S', M_C40x25)
  329 #define SW_B80x25       _IO('S', M_B80x25)
  330 #define SW_C80x25       _IO('S', M_C80x25)
  331 #define SW_BG320        _IO('S', M_BG320)
  332 #define SW_CG320        _IO('S', M_CG320)
  333 #define SW_BG640        _IO('S', M_BG640)
  334 #define SW_EGAMONO80x25 _IO('S', M_EGAMONO80x25)
  335 #define SW_CG320_D      _IO('S', M_CG320_D)
  336 #define SW_CG640_E      _IO('S', M_CG640_E)
  337 #define SW_EGAMONOAPA   _IO('S', M_EGAMONOAPA)
  338 #define SW_CG640x350    _IO('S', M_CG640x350)
  339 #define SW_ENH_MONOAPA2 _IO('S', M_ENHMONOAPA2)
  340 #define SW_ENH_CG640    _IO('S', M_ENH_CG640)
  341 #define SW_ENH_B40x25   _IO('S', M_ENH_B40x25)
  342 #define SW_ENH_C40x25   _IO('S', M_ENH_C40x25)
  343 #define SW_ENH_B80x25   _IO('S', M_ENH_B80x25)
  344 #define SW_ENH_C80x25   _IO('S', M_ENH_C80x25)
  345 #define SW_ENH_B80x43   _IO('S', M_ENH_B80x43)
  346 #define SW_ENH_C80x43   _IO('S', M_ENH_C80x43)
  347 #define SW_MCAMODE      _IO('S', M_MCA_MODE)
  348 #define SW_VGA_C40x25   _IO('S', M_VGA_C40x25)
  349 #define SW_VGA_C80x25   _IO('S', M_VGA_C80x25)
  350 #define SW_VGA_C80x30   _IO('S', M_VGA_C80x30)
  351 #define SW_VGA_C80x50   _IO('S', M_VGA_C80x50)
  352 #define SW_VGA_C80x60   _IO('S', M_VGA_C80x60)
  353 #define SW_VGA_M80x25   _IO('S', M_VGA_M80x25)
  354 #define SW_VGA_M80x30   _IO('S', M_VGA_M80x30)
  355 #define SW_VGA_M80x50   _IO('S', M_VGA_M80x50)
  356 #define SW_VGA_M80x60   _IO('S', M_VGA_M80x60)
  357 #define SW_VGA11        _IO('S', M_VGA11)
  358 #define SW_BG640x480    _IO('S', M_VGA11)
  359 #define SW_VGA12        _IO('S', M_VGA12)
  360 #define SW_CG640x480    _IO('S', M_VGA12)
  361 #define SW_VGA13        _IO('S', M_VGA13)
  362 #define SW_VGA_CG320    _IO('S', M_VGA13)
  363 #define SW_VGA_CG640    _IO('S', M_VGA_CG640)
  364 #define SW_VGA_MODEX    _IO('S', M_VGA_MODEX)
  365 
  366 #define SW_PC98_80x25           _IO('S', M_PC98_80x25)
  367 #define SW_PC98_80x30           _IO('S', M_PC98_80x30)
  368 #define SW_PC98_EGC640x400      _IO('S', M_PC98_EGC640x400)
  369 #define SW_PC98_PEGC640x400     _IO('S', M_PC98_PEGC640x400)
  370 #define SW_PC98_PEGC640x480     _IO('S', M_PC98_PEGC640x480)
  371 
  372 #define SW_VGA_C90x25   _IO('S', M_VGA_C90x25)
  373 #define SW_VGA_M90x25   _IO('S', M_VGA_M90x25)
  374 #define SW_VGA_C90x30   _IO('S', M_VGA_C90x30)
  375 #define SW_VGA_M90x30   _IO('S', M_VGA_M90x30)
  376 #define SW_VGA_C90x43   _IO('S', M_VGA_C90x43)
  377 #define SW_VGA_M90x43   _IO('S', M_VGA_M90x43)
  378 #define SW_VGA_C90x50   _IO('S', M_VGA_C90x50)
  379 #define SW_VGA_M90x50   _IO('S', M_VGA_M90x50)
  380 #define SW_VGA_C90x60   _IO('S', M_VGA_C90x60)
  381 #define SW_VGA_M90x60   _IO('S', M_VGA_M90x60)
  382 
  383 #define SW_TEXT_80x25   _IO('S', M_TEXT_80x25)
  384 #define SW_TEXT_80x30   _IO('S', M_TEXT_80x30)
  385 #define SW_TEXT_80x43   _IO('S', M_TEXT_80x43)
  386 #define SW_TEXT_80x50   _IO('S', M_TEXT_80x50)
  387 #define SW_TEXT_80x60   _IO('S', M_TEXT_80x60)
  388 #define SW_TEXT_132x25  _IO('S', M_TEXT_132x25)
  389 #define SW_TEXT_132x30  _IO('S', M_TEXT_132x30)
  390 #define SW_TEXT_132x43  _IO('S', M_TEXT_132x43)
  391 #define SW_TEXT_132x50  _IO('S', M_TEXT_132x50)
  392 #define SW_TEXT_132x60  _IO('S', M_TEXT_132x60)
  393 
  394 #define SW_VESA_CG640x400       _IO('V', M_VESA_CG640x400 - M_VESA_BASE)
  395 #define SW_VESA_CG640x480       _IO('V', M_VESA_CG640x480 - M_VESA_BASE)
  396 #define SW_VESA_800x600         _IO('V', M_VESA_800x600 - M_VESA_BASE)
  397 #define SW_VESA_CG800x600       _IO('V', M_VESA_CG800x600 - M_VESA_BASE)
  398 #define SW_VESA_1024x768        _IO('V', M_VESA_1024x768 - M_VESA_BASE)
  399 #define SW_VESA_CG1024x768      _IO('V', M_VESA_CG1024x768 - M_VESA_BASE)
  400 #define SW_VESA_1280x1024       _IO('V', M_VESA_1280x1024 - M_VESA_BASE)
  401 #define SW_VESA_CG1280x1024     _IO('V', M_VESA_CG1280x1024 - M_VESA_BASE)
  402 #define SW_VESA_C80x60          _IO('V', M_VESA_C80x60 - M_VESA_BASE)
  403 #define SW_VESA_C132x25         _IO('V', M_VESA_C132x25 - M_VESA_BASE)
  404 #define SW_VESA_C132x43         _IO('V', M_VESA_C132x43 - M_VESA_BASE)
  405 #define SW_VESA_C132x50         _IO('V', M_VESA_C132x50 - M_VESA_BASE)
  406 #define SW_VESA_C132x60         _IO('V', M_VESA_C132x60 - M_VESA_BASE)
  407 #define SW_VESA_32K_320         _IO('V', M_VESA_32K_320 - M_VESA_BASE)
  408 #define SW_VESA_64K_320         _IO('V', M_VESA_64K_320 - M_VESA_BASE)
  409 #define SW_VESA_FULL_320        _IO('V', M_VESA_FULL_320 - M_VESA_BASE)
  410 #define SW_VESA_32K_640         _IO('V', M_VESA_32K_640 - M_VESA_BASE)
  411 #define SW_VESA_64K_640         _IO('V', M_VESA_64K_640 - M_VESA_BASE)
  412 #define SW_VESA_FULL_640        _IO('V', M_VESA_FULL_640 - M_VESA_BASE)
  413 #define SW_VESA_32K_800         _IO('V', M_VESA_32K_800 - M_VESA_BASE)
  414 #define SW_VESA_64K_800         _IO('V', M_VESA_64K_800 - M_VESA_BASE)
  415 #define SW_VESA_FULL_800        _IO('V', M_VESA_FULL_800 - M_VESA_BASE)
  416 #define SW_VESA_32K_1024        _IO('V', M_VESA_32K_1024 - M_VESA_BASE)
  417 #define SW_VESA_64K_1024        _IO('V', M_VESA_64K_1024 - M_VESA_BASE)
  418 #define SW_VESA_FULL_1024       _IO('V', M_VESA_FULL_1024 - M_VESA_BASE)
  419 #define SW_VESA_32K_1280        _IO('V', M_VESA_32K_1280 - M_VESA_BASE)
  420 #define SW_VESA_64K_1280        _IO('V', M_VESA_64K_1280 - M_VESA_BASE)
  421 #define SW_VESA_FULL_1280       _IO('V', M_VESA_FULL_1280 - M_VESA_BASE)
  422 
  423 #endif /* !_SYS_CONSIO_H_ */

Cache object: 8ff54071f605f5115e380610ed288b89


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.