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/dev/kbd/kbdreg.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) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
    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 as
   10  *    the first lines of this file unmodified.
   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  *
   15  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
   16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   18  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
   19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   25  *
   26  * $FreeBSD: releng/6.4/sys/dev/kbd/kbdreg.h 148195 2005-07-20 18:56:21Z emax $
   27  */
   28 
   29 #ifndef _DEV_KBD_KBDREG_H_
   30 #define _DEV_KBD_KBDREG_H_
   31 
   32 /* forward declarations */
   33 typedef struct keyboard keyboard_t;
   34 struct keymap;
   35 struct accentmap;
   36 struct fkeytab;
   37 struct cdevsw;
   38 
   39 /* call back funcion */
   40 typedef int             kbd_callback_func_t(keyboard_t *kbd, int event,
   41                                             void *arg);
   42 /* event types */
   43 #define KBDIO_KEYINPUT  0
   44 #define KBDIO_UNLOADING 1
   45 
   46 typedef struct keyboard_callback {
   47         kbd_callback_func_t *kc_func;
   48         void            *kc_arg;
   49 } keyboard_callback_t;
   50 
   51 /* keyboard */
   52 struct keyboard {
   53         /* the following fields are managed by kbdio */
   54         int             kb_index;       /* kbdio index# */
   55         int             kb_minor;       /* minor number of the sub-device */
   56         int             kb_flags;       /* internal flags */
   57 #define KB_VALID        (1 << 16)       /* this entry is valid */
   58 #define KB_NO_DEVICE    (1 << 17)       /* device not present */
   59 #define KB_PROBED       (1 << 18)       /* device probed */
   60 #define KB_INITIALIZED  (1 << 19)       /* device initialized */
   61 #define KB_REGISTERED   (1 << 20)       /* device registered to kbdio */
   62 #define KB_BUSY         (1 << 21)       /* device used by a client */
   63         int             kb_active;      /* 0: inactive */
   64         void            *kb_token;      /* id of the current client */
   65         keyboard_callback_t kb_callback;/* callback function */
   66 
   67         /*
   68          * Device configuration flags:
   69          * The upper 16 bits are common between various keyboard devices.
   70          * The lower 16 bits are device-specific.
   71          */
   72         int             kb_config;      
   73 #define KB_CONF_PROBE_ONLY (1 << 16)    /* probe only, don't initialize */
   74 
   75         /* the following fields are set up by the driver */
   76         char            *kb_name;       /* driver name */
   77         int             kb_unit;        /* unit # */
   78         int             kb_type;        /* KB_84, KB_101, KB_OTHER,... */
   79         int             kb_io_base;     /* port# if any */
   80         int             kb_io_size;     /* # of occupied port */
   81         int             kb_led;         /* LED status */
   82         struct keymap   *kb_keymap;     /* key map */
   83         struct accentmap *kb_accentmap; /* accent map */
   84         struct fkeytab  *kb_fkeytab;    /* function key strings */
   85         int             kb_fkeytab_size;/* # of function key strings */
   86         void            *kb_data;       /* the driver's private data */
   87         int             kb_delay1;
   88         int             kb_delay2;
   89 #define KB_DELAY1       500
   90 #define KB_DELAY2       100
   91         unsigned long   kb_count;       /* # of processed key strokes */
   92         u_char          kb_lastact[NUM_KEYS/2];
   93         struct cdev *kb_dev;
   94 };
   95 
   96 #define KBD_IS_VALID(k)         ((k)->kb_flags & KB_VALID)
   97 #define KBD_VALID(k)            ((k)->kb_flags |= KB_VALID)
   98 #define KBD_INVALID(k)          ((k)->kb_flags &= ~KB_VALID)
   99 #define KBD_HAS_DEVICE(k)       (!((k)->kb_flags & KB_NO_DEVICE))
  100 #define KBD_FOUND_DEVICE(k)     ((k)->kb_flags &= ~KB_NO_DEVICE)
  101 #define KBD_IS_PROBED(k)        ((k)->kb_flags & KB_PROBED)
  102 #define KBD_PROBE_DONE(k)       ((k)->kb_flags |= KB_PROBED)
  103 #define KBD_IS_INITIALIZED(k)   ((k)->kb_flags & KB_INITIALIZED)
  104 #define KBD_INIT_DONE(k)        ((k)->kb_flags |= KB_INITIALIZED)
  105 #define KBD_IS_CONFIGURED(k)    ((k)->kb_flags & KB_REGISTERED)
  106 #define KBD_CONFIG_DONE(k)      ((k)->kb_flags |= KB_REGISTERED)
  107 #define KBD_IS_BUSY(k)          ((k)->kb_flags & KB_BUSY)
  108 #define KBD_BUSY(k)             ((k)->kb_flags |= KB_BUSY)
  109 #define KBD_UNBUSY(k)           ((k)->kb_flags &= ~KB_BUSY)
  110 #define KBD_IS_ACTIVE(k)        ((k)->kb_active)
  111 #define KBD_ACTIVATE(k)         (++(k)->kb_active)
  112 #define KBD_DEACTIVATE(k)       (--(k)->kb_active)
  113 #define KBD_LED_VAL(k)          ((k)->kb_led)
  114 
  115 /* keyboard function table */
  116 typedef int             kbd_probe_t(int unit, void *arg, int flags);
  117 typedef int             kbd_init_t(int unit, keyboard_t **kbdp, void *arg,
  118                                    int flags);
  119 typedef int             kbd_term_t(keyboard_t *kbd);
  120 typedef int             kbd_intr_t(keyboard_t *kbd, void *arg);
  121 typedef int             kbd_test_if_t(keyboard_t *kbd);
  122 typedef int             kbd_enable_t(keyboard_t *kbd);
  123 typedef int             kbd_disable_t(keyboard_t *kbd);
  124 typedef int             kbd_read_t(keyboard_t *kbd, int wait);
  125 typedef int             kbd_check_t(keyboard_t *kbd);
  126 typedef u_int           kbd_read_char_t(keyboard_t *kbd, int wait);
  127 typedef int             kbd_check_char_t(keyboard_t *kbd);
  128 typedef int             kbd_ioctl_t(keyboard_t *kbd, u_long cmd, caddr_t data);
  129 typedef int             kbd_lock_t(keyboard_t *kbd, int lock);
  130 typedef void            kbd_clear_state_t(keyboard_t *kbd);
  131 typedef int             kbd_get_state_t(keyboard_t *kbd, void *buf, size_t len);
  132 typedef int             kbd_set_state_t(keyboard_t *kbd, void *buf, size_t len);
  133 typedef u_char          *kbd_get_fkeystr_t(keyboard_t *kbd, int fkey,
  134                                            size_t *len);
  135 typedef int             kbd_poll_mode_t(keyboard_t *kbd, int on);
  136 typedef void            kbd_diag_t(keyboard_t *kbd, int level);
  137 
  138 typedef struct keyboard_switch {
  139         kbd_probe_t     *probe;
  140         kbd_init_t      *init;
  141         kbd_term_t      *term;
  142         kbd_intr_t      *intr;
  143         kbd_test_if_t   *test_if;
  144         kbd_enable_t    *enable;
  145         kbd_disable_t   *disable;
  146         kbd_read_t      *read;
  147         kbd_check_t     *check;
  148         kbd_read_char_t *read_char;
  149         kbd_check_char_t *check_char;
  150         kbd_ioctl_t     *ioctl;
  151         kbd_lock_t      *lock;
  152         kbd_clear_state_t *clear_state;
  153         kbd_get_state_t *get_state;
  154         kbd_set_state_t *set_state;
  155         kbd_get_fkeystr_t *get_fkeystr;
  156         kbd_poll_mode_t *poll;
  157         kbd_diag_t      *diag;
  158 } keyboard_switch_t;
  159 
  160 /* keyboard driver */
  161 typedef struct keyboard_driver {
  162     SLIST_ENTRY(keyboard_driver) link;
  163     char                *name;
  164     keyboard_switch_t   *kbdsw;
  165     int                 (*configure)(int); /* backdoor for the console driver */
  166 } keyboard_driver_t;
  167 
  168 #ifdef _KERNEL
  169 
  170 #define KEYBOARD_DRIVER(name, sw, config)               \
  171         static struct keyboard_driver name##_kbd_driver = { \
  172                 { NULL }, #name, &sw, config            \
  173         };                                              \
  174         DATA_SET(kbddriver_set, name##_kbd_driver);
  175 
  176 /* global variables */
  177 extern keyboard_switch_t **kbdsw;
  178 
  179 /* functions for the keyboard driver */
  180 int                     kbd_add_driver(keyboard_driver_t *driver);
  181 int                     kbd_delete_driver(keyboard_driver_t *driver);
  182 int                     kbd_register(keyboard_t *kbd);
  183 int                     kbd_unregister(keyboard_t *kbd);
  184 keyboard_switch_t       *kbd_get_switch(char *driver);
  185 void                    kbd_init_struct(keyboard_t *kbd, char *name, int type,
  186                                         int unit, int config, int port,
  187                                         int port_size);
  188 void                    kbd_set_maps(keyboard_t *kbd, struct keymap *keymap,
  189                                      struct accentmap *accmap,
  190                                      struct fkeytab *fkeymap, int fkeymap_size);
  191 
  192 /* functions for the keyboard client */
  193 int                     kbd_allocate(char *driver, int unit, void *id,
  194                                      kbd_callback_func_t *func, void *arg);
  195 int                     kbd_release(keyboard_t *kbd, void *id);
  196 int                     kbd_change_callback(keyboard_t *kbd, void *id,
  197                                      kbd_callback_func_t *func, void *arg);
  198 int                     kbd_find_keyboard(char *driver, int unit);
  199 int                     kbd_find_keyboard2(char *driver, int unit, int index);
  200 keyboard_t              *kbd_get_keyboard(int index);
  201 
  202 /* a back door for the console driver to tickle the keyboard driver XXX */
  203 int                     kbd_configure(int flags);
  204                         /* see `kb_config' above for flag bit definitions */
  205 
  206 #ifdef KBD_INSTALL_CDEV
  207 
  208 /* virtual keyboard cdev driver functions */
  209 int                     kbd_attach(keyboard_t *kbd);
  210 int                     kbd_detach(keyboard_t *kbd);
  211 
  212 #endif /* KBD_INSTALL_CDEV */
  213 
  214 /* generic low-level keyboard functions */
  215 
  216 /* shift key state */
  217 #define SHIFTS1         (1 << 16)
  218 #define SHIFTS2         (1 << 17)
  219 #define SHIFTS          (SHIFTS1 | SHIFTS2)
  220 #define CTLS1           (1 << 18)
  221 #define CTLS2           (1 << 19)
  222 #define CTLS            (CTLS1 | CTLS2)
  223 #define ALTS1           (1 << 20)
  224 #define ALTS2           (1 << 21)
  225 #define ALTS            (ALTS1 | ALTS2)
  226 #define AGRS1           (1 << 22)
  227 #define AGRS2           (1 << 23)
  228 #define AGRS            (AGRS1 | AGRS2)
  229 #define METAS1          (1 << 24)
  230 #define METAS2          (1 << 25)
  231 #define METAS           (METAS1 | METAS2)
  232 #define NLKDOWN         (1 << 26)
  233 #define SLKDOWN         (1 << 27)
  234 #define CLKDOWN         (1 << 28)
  235 #define ALKDOWN         (1 << 29)
  236 #define SHIFTAON        (1 << 30)
  237 /* lock key state (defined in sys/kbio.h) */
  238 /*
  239 #define CLKED           LED_CAP
  240 #define NLKED           LED_NUM
  241 #define SLKED           LED_SCR
  242 #define ALKED           (1 << 3)
  243 #define LOCK_MASK       (CLKED | NLKED | SLKED | ALKED)
  244 #define LED_CAP         (1 << 0)
  245 #define LED_NUM         (1 << 1)
  246 #define LED_SCR         (1 << 2)
  247 #define LED_MASK        (LED_CAP | LED_NUM | LED_SCR)
  248 */
  249 
  250 kbd_get_fkeystr_t       genkbd_get_fkeystr;
  251 kbd_diag_t              genkbd_diag;
  252 
  253 int     genkbd_commonioctl(keyboard_t *kbd, u_long cmd, caddr_t arg);
  254 int     genkbd_keyaction(keyboard_t *kbd, int keycode, int up,
  255                          int *shiftstate, int *accents);
  256 
  257 #endif /* _KERNEL */
  258 
  259 #endif /* !_DEV_KBD_KBDREG_H_ */

Cache object: 0bd8f0ea002058c48937db4dcb1b1f13


[ 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.