source: rtems/c/src/lib/libbsp/i386/pc386/console/ps2_drv.h @ 3cbb63a

4.104.114.84.95
Last change on this file since 3cbb63a was 3cbb63a, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/00 at 08:15:30

2000-08-26 Rosimildo da Silva <rdasilva@…>

  • Major rework of the "/dev/console" driver.
  • Added termios support for stdin ( keyboard ).
  • Added ioctls() to support modes similar to Linux( XLATE, RAW, MEDIUMRAW ).
  • Added Keyboard mapping and handling of the keyboard's leds.
  • Added Micro FrameBuffer? driver ( "/dev/fb0" ) for bare VGA controller ( 16 colors ).
  • Added PS/2 and Serial mouse support for PC386 BSP.
  • console/defkeymap.c: New file.
  • console/fb_vga.c: New file.
  • console/fb_vga.h: New file.
  • console/i386kbd.h: New file.
  • console/kd.h: New file.
  • console/keyboard.c: New file.
  • console/keyboard.h: New file.
  • console/mouse_parser.c: New file.
  • console/mouse_parser.h: New file.
  • console/pc_keyb.c: New file.
  • console/ps2_drv.h: New file.
  • console/ps2_mouse.c: New file.
  • console/ps2_mouse.h: New file.
  • console/serial_mouse.c: New file.
  • console/serial_mouse.h: New file.
  • console/vgainit.c: New file.
  • console/vt.c: New file.
  • console/Makefile.am: Reflect new files.
  • console/console.c, console/inch.c, console/outch.c: Console functionality modifications.
  • startup/Makefile.am: Pick up tty_drv.c and gdb_glue.c
  • Property mode set to 100644
File size: 1.5 KB
Line 
1#ifndef __paux_drv__
2#define __paux_drv__
3/***************************************************************************
4 *
5 * $Header$
6 *
7 * Copyright (c) 1999 ConnectTel, Inc. All Rights Reserved.
8 * 
9 * MODULE DESCRIPTION: Prototype routines for the paux driver.
10 *
11 * by: Rosimildo da Silva:
12 *     rdasilva@connecttel.com
13 *     http://www.connecttel.com
14 *
15 * MODIFICATION/HISTORY:
16 *
17 * $Log$
18 ****************************************************************************/
19
20/* functions */
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25/* paux prototype entry points */
26rtems_device_driver paux_initialize(
27  rtems_device_major_number,
28  rtems_device_minor_number,
29  void *
30);
31
32rtems_device_driver paux_open(
33  rtems_device_major_number,
34  rtems_device_minor_number,
35  void *
36);
37
38rtems_device_driver paux_control(
39  rtems_device_major_number,
40  rtems_device_minor_number,
41  void *
42);
43
44rtems_device_driver paux_close(
45  rtems_device_major_number,
46  rtems_device_minor_number,
47  void *
48);
49
50
51rtems_device_driver paux_read(
52  rtems_device_major_number,
53  rtems_device_minor_number,
54  void *
55);
56
57rtems_device_driver paux_write(
58  rtems_device_major_number,
59  rtems_device_minor_number,
60  void *
61);
62
63rtems_device_driver paux_control(
64  rtems_device_major_number,
65  rtems_device_minor_number,
66  void *
67);
68
69#define PAUX_DRIVER_TABLE_ENTRY \
70  { paux_initialize, paux_open, paux_close, \
71    paux_read, paux_write, paux_control }
72
73#ifdef __cplusplus
74}
75#endif
76/* end of include file */
77
78#endif  /* __paux_drv__  */
79
80
Note: See TracBrowser for help on using the repository browser.