aboutsummaryrefslogtreecommitdiff
path: root/nx-X11/programs/Xserver/hw/xfree86/os-support/dgux/dgux_kbd.c
blob: 7c25fb390abf9dd321d50d64b1e75b552c740ee2 (plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/* $XFree86: xc/programs/Xserver/hw/xfree86/os-support/dgux/dgux_kbd.c,v 1.1 1998/12/13 07:37:46 dawes Exp $ */
/*
 * INTEL DG/UX RELEASE 4.20 MU03
 * Copyright 1997 Takis Psarogiannakopoulos Cambridge,UK
 * <takis@dpmms.cam.ac.uk>
 *
 * Permission to use, copy, modify, distribute, and sell this software and its
 * documentation for any purpose is hereby granted without fee, provided that
 * the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation.
 * XCONSORTIUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE.
 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
 * FITNESS, IN NO EVENT SHALL XCONSORTIUM BE LIABLE FOR
 * ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 *
 */

/* *Contents*

  1  xf86KbdSetLeds    
  2  xf86KbdGetLeds  
  3  xf86SetKbdRepeat
  4  xf86KbdInit()
  5  xf86KbdOn()
  6  xf86KbdOff()

*/


#define NEED_EVENTS
#ifdef HAVE_XORG_CONFIG_H
#include <xorg-config.h>
#endif

#include <X11/X.h>
#include <X11/Xproto.h>
#include "inputstr.h"
#include "scrnintstr.h"

#include "compiler.h"

#include "xf86Procs.h"
#include "xf86_OSlib.h"


static struct termios kbdtty;


/* ADDED FOR  INTEL DGUX */
void xf86SetKbdLeds(leds)
int leds;
{
        ioctl(xf86Info.kbdFd, KBD_SET_LED, leds);
}



/* ADDED FOR  INTEL DGUX */
int xf86GetKbdLeds()
{
        int leds;

        ioctl(xf86Info.kbdFd, KBD_GET_STATE, &leds);
        return(leds);
}

/* ADDED FOR INTEL DGUX */
void xf86SetKbdRepeat(char rad)
{
        return;
}




/* ADDED FOR INTEL DGUX */

void xf86KbdInit()
{
        tcgetattr(xf86Info.kbdFd, &kbdtty);
}





/* ADDED FOR INTEL DGUX */

int xf86KbdOn()
{
        struct termios nTty;

        nTty = kbdtty;
        nTty.c_iflag = IGNPAR | IGNBRK;
        nTty.c_oflag = 0;
        nTty.c_cflag = CREAD | CS8;
        nTty.c_lflag = 0;
        nTty.c_cc[VTIME] = 0;
        nTty.c_cc[VMIN] = 1;
        cfsetispeed(&nTty, 9600);
        cfsetospeed(&nTty, 9600);
        tcsetattr(xf86Info.kbdFd, TCSANOW, &nTty);
        return(xf86Info.kbdFd);
}





/* Intel DG/ux */
int xf86KbdOff()
{
        tcsetattr(xf86Info.kbdFd, TCSANOW, &kbdtty);
        return(xf86Info.kbdFd);
}