root/sys/sys/consio.h
/*-
 * Copyright (c) 1991-1996 Søren Schmidt
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer
 *    in this position and unchanged.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * $FreeBSD: src/sys/sys/consio.h,v 1.5.2.7 2002/09/15 22:30:46 dd Exp $
 */

#ifndef _SYS_CONSIO_H_
#define _SYS_CONSIO_H_

#ifndef _SYS_TYPES_H_
#include <sys/types.h>
#endif
#ifndef _SYS_IOCCOM_H_
#include <sys/ioccom.h>
#endif

/*
 * Console ioctl commands.  Some commands are named as KDXXXX, GIO_XXX, and
 * PIO_XXX, rather than CONS_XXX, for historical and compatibility reasons.
 * Some other CONS_XXX commands are works as wrapper around frame buffer 
 * ioctl commands FBIO_XXX.  Do not try to change all these commands, 
 * otherwise we shall have compatibility problems.
 */

/* get/set video mode */
#define KD_TEXT         0               /* set text mode restore fonts  */
#define KD_TEXT0        0               /* ditto                        */
#define KD_GRAPHICS     1               /* set graphics mode            */
#define KD_TEXT1        2               /* set text mode !restore fonts */
#define KD_PIXEL        3               /* set pixel mode               */
#define KDGETMODE       _IOR('K', 9, int)
#define KDSETMODE       _IO('K', 10 /*, int */)

/* set border color */
#define KDSBORDER       _IO('K', 13 /*, int */)

/* set up raster(pixel) text mode */
struct _scr_size {
        int             scr_size[3];
};
typedef struct _scr_size        scr_size_t;

#define KDRASTER        _IOW('K', 100, scr_size_t)

/* get/set screen char map */
struct _scrmap {
        char            scrmap[256];
};
typedef struct _scrmap  scrmap_t;

#define GIO_SCRNMAP     _IOR('k', 2, scrmap_t)
#define PIO_SCRNMAP     _IOW('k', 3, scrmap_t)

/* get the current text attribute */
#define GIO_ATTR        _IOR('a', 0, int)

/* get the current text color */
#define GIO_COLOR       _IOR('c', 0, int)

/* get the adapter type (equivalent to FBIO_ADPTYPE) */
#define CONS_CURRENT    _IOR('c', 1, int)

/* get the current video mode (equivalent to FBIO_GETMODE) */
#define CONS_GET        _IOR('c', 2, int)

/* set the current video mode (equivalent to FBIO_SETMODE) */
#define CONS_SET        _IOW('c', 3, int)

/* set blank time interval */
#define CONS_BLANKTIME  _IOW('c', 4, int)

/* set the text cursor shape */
#define CONS_BLINK_CURSOR (1 << 0)
#define CONS_CHAR_CURSOR (1 << 1)
#define CONS_CURSORTYPE _IOW('c', 7, int)

/* set the bell type to audible or visual */
#define CONS_VISUAL_BELL (1 << 0)
#define CONS_QUIET_BELL (1 << 1)
#define CONS_BELLTYPE   _IOW('c', 8, int)

/* set the history (scroll back) buffer size (in lines) */
#define CONS_HISTORY    _IOW('c', 9, int)

/* clear the history (scroll back) buffer */
#define CONS_CLRHIST    _IO('c', 10)

/* mouse cursor ioctl */
struct mouse_data {
        int             x;
        int             y;
        int             z;
        int             buttons;
};
typedef struct mouse_data mouse_data_t;

struct mouse_mode {
        int             mode;
        int             signal;
};
typedef struct mouse_mode mouse_mode_t;

struct mouse_event {
        int             id;                     /* one based */
        int             value;
};
typedef struct mouse_event mouse_event_t;

struct mouse_info {
        int             operation;
#define MOUSE_SHOW      0x01
#define MOUSE_HIDE      0x02
#define MOUSE_MOVEABS   0x03
#define MOUSE_MOVEREL   0x04
#define MOUSE_GETINFO   0x05
#define MOUSE_MODE      0x06
#define MOUSE_ACTION    0x07
#define MOUSE_MOTION_EVENT      0x08
#define MOUSE_BUTTON_EVENT      0x09
#define MOUSE_MOUSECHAR 0x0a
        union {
                mouse_data_t    data;
                mouse_mode_t    mode;
                mouse_event_t   event;
                int             mouse_char;
        }               u;
};
typedef struct mouse_info mouse_info_t;

#define CONS_MOUSECTL   _IOWR('c', 10, mouse_info_t)

/* see if the vty has been idle */
#define CONS_IDLE       _IOR('c', 11, int)

/* set the screen saver mode */
#define CONS_NO_SAVER   (-1)
#define CONS_LKM_SAVER  0
#define CONS_USR_SAVER  1
#define CONS_SAVERMODE  _IOW('c', 12, int)

/* start the screen saver */
#define CONS_SAVERSTART _IOW('c', 13, int)

/* set/get font data */
struct fnt8 {
        char            fnt8x8[8*256];
};
typedef struct fnt8     fnt8_t;

struct fnt14 {
        char            fnt8x14[14*256];
};
typedef struct fnt14    fnt14_t;

struct fnt16 {
        char            fnt8x16[16*256];
};
typedef struct fnt16    fnt16_t;

#define PIO_FONT8x8     _IOW('c', 64, fnt8_t)
#define GIO_FONT8x8     _IOR('c', 65, fnt8_t)
#define PIO_FONT8x14    _IOW('c', 66, fnt14_t)
#define GIO_FONT8x14    _IOR('c', 67, fnt14_t)
#define PIO_FONT8x16    _IOW('c', 68, fnt16_t)
#define GIO_FONT8x16    _IOR('c', 69, fnt16_t)

/* get video mode information */
struct colors   {
        char            fore;
        char            back;
};

struct vid_info {
        short           size;
        short           m_num;
        u_short         font_size;
        u_short         mv_row, mv_col;
        u_short         mv_rsz, mv_csz;
        struct colors   mv_norm,
                        mv_rev,
                        mv_grfc;
        u_char          mv_ovscan;
        u_char          mk_keylock;
};
typedef struct vid_info vid_info_t;

#define CONS_GETINFO    _IOWR('c', 73, vid_info_t)

/* get version */
#define CONS_GETVERS    _IOR('c', 74, int)

/* get the video adapter index (equivalent to FBIO_ADAPTER) */
#define CONS_CURRENTADP _IOR('c', 100, int)

/* get the video adapter information (equivalent to FBIO_ADPINFO) */
#define CONS_ADPINFO    _IOWR('c', 101, video_adapter_info_t)

/* get the video mode information (equivalent to FBIO_MODEINFO) */
#define CONS_MODEINFO   _IOWR('c', 102, video_info_t)

/* find a video mode (equivalent to FBIO_FINDMODE) */
#define CONS_FINDMODE   _IOWR('c', 103, video_info_t)

/* set the frame buffer window origin (equivalent to FBIO_SETWINORG) */
#define CONS_SETWINORG  _IO('c', 104 /*, u_int */) 

/* use the specified keyboard */
#define CONS_SETKBD     _IO('c', 110 /*, int */)

/* release the current keyboard */
#define CONS_RELKBD     _IO('c', 111)

/* Snapshot the current video buffer */
#define CONS_SCRSHOT    _IOWR('c', 105, scrshot_t)

struct scrshot {
        int             xsize;
        int             ysize;
        u_int16_t*      buf;
};
typedef struct scrshot scrshot_t;

/* get/set the current terminal emulator info. */
#define TI_NAME_LEN     32
#define TI_DESC_LEN     64

struct term_info {
        int             ti_index;
        int             ti_flags;
        u_char          ti_name[TI_NAME_LEN];
        u_char          ti_desc[TI_DESC_LEN];
};
typedef struct term_info term_info_t;

#define CONS_GETTERM    _IOWR('c', 112, term_info_t)
#define CONS_SETTERM    _IOW('c', 113, term_info_t)

/*
 * Vty switching ioctl commands.
 */

/* get the next available vty */
#define VT_OPENQRY      _IOR('v', 1, int)

/* set/get vty switching mode */
#ifndef _VT_MODE_DECLARED
#define _VT_MODE_DECLARED
struct vt_mode {
        char            mode;
#define VT_AUTO         0               /* switching is automatic       */
#define VT_PROCESS      1               /* switching controlled by prog */
#define VT_KERNEL       255             /* switching controlled in kernel */
        char            waitv;          /* not implemented yet  SOS     */
        short           relsig;
        short           acqsig;
        short           frsig;          /* not implemented yet  SOS     */
};
typedef struct vt_mode vtmode_t;
#endif /* !_VT_MODE_DECLARED */

#define VT_SETMODE      _IOW('v', 2, vtmode_t)
#define VT_GETMODE      _IOR('v', 3, vtmode_t)

/* acknowledge release or acquisition of a vty */
#define VT_FALSE        0
#define VT_TRUE         1
#define VT_ACKACQ       2
#define VT_RELDISP      _IO('v', 4 /*, int */)

/* activate the specified vty */
#define VT_ACTIVATE     _IO('v', 5 /*, int */)

/* wait until the specified vty is activate */
#define VT_WAITACTIVE   _IO('v', 6 /*, int */)

/* get the currently active vty */
#define VT_GETACTIVE    _IOR('v', 7, int)

/* get the index of the vty */
#define VT_GETINDEX     _IOR('v', 8, int)

/* prevent switching vtys */
#define VT_LOCKSWITCH   _IOW('v', 9, int)

#ifdef _KERNEL

extern int break_to_debugger;
extern int alt_break_to_debugger;

#endif

#endif /* !_SYS_CONSIO_H_ */