summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/console/console_control.c
blob: dd058ce4fb1b7a5ff29531c1109ac9f2c0b94b00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 *  This file is an extension of the generic console driver 
 *  shell used by all console drivers using libchip, it contains
 *  the console_control routine,  This bsp needs its own version
 *  of this method to handle the keyboard and mouse as a single
 *  device.
 */

/*
 *  COPYRIGHT (c) 1989-2011.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.com/license/LICENSE.
 */

#include <bsp.h>
#include <rtems/libio.h>
#include <stdlib.h>
#include <assert.h>
#include <termios.h>

#include <bsp/irq.h>

#include <rtems/termiostypes.h>
#include <libchip/serial.h>
#include <rtems/mouse_parser.h>
#include "keyboard.h"
#include "../../../shared/console_private.h"

/*
 *  console_control
 *
 *  this routine uses the termios driver to process io
 */
rtems_device_driver console_control(
  rtems_device_major_number major,
  rtems_device_minor_number minor,
  void                    * arg
)
{
  rtems_libio_ioctl_args_t *args = arg;

  switch (args->command) {
    default:
      if( vt_ioctl( args->command, (unsigned long)args->buffer ) != 0 )
        return rtems_termios_ioctl (arg);
      break;

    case MW_UID_REGISTER_DEVICE:
      printk( "SerialMouse: reg=%s\n", args->buffer );
      register_kbd_msg_queue( args->buffer, 0 );
      break;

    case MW_UID_UNREGISTER_DEVICE:
      unregister_kbd_msg_queue( 0 );
      break;
  }
 
  args->ioctl_return = 0;
  return RTEMS_SUCCESSFUL;
}