Subversion Repositories HelenOS

Rev

Rev 1875 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1875 Rev 1896
1
/*
1
/*
2
 * Copyright (C) 2006 Jakub Jermar
2
 * Copyright (C) 2006 Jakub Jermar
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup genarch
29
/** @addtogroup genarch
30
 * @{
30
 * @{
31
 */
31
 */
32
/**
32
/**
33
 * @file
33
 * @file
34
 * @brief   Key processing.
34
 * @brief   Key processing.
35
 */
35
 */
36
 
36
 
37
#include <genarch/kbd/key.h>
37
#include <genarch/kbd/key.h>
38
#include <genarch/kbd/scanc.h>
38
#include <genarch/kbd/scanc.h>
39
#ifdef CONFIG_I8042
39
#ifdef CONFIG_I8042
40
#include <genarch/kbd/scanc_pc.h>
40
#include <genarch/kbd/scanc_pc.h>
41
#endif
41
#endif
42
#if (defined(CONFIG_Z8530) || defined(CONFIG_NS16550))
42
#if (defined(CONFIG_Z8530) || defined(CONFIG_NS16550))
43
#include <genarch/kbd/scanc_sun.h>
43
#include <genarch/kbd/scanc_sun.h>
44
#endif
44
#endif
45
#include <synch/spinlock.h>
45
#include <synch/spinlock.h>
46
#include <console/chardev.h>
46
#include <console/chardev.h>
47
#include <typedefs.h>
47
#include <typedefs.h>
48
#include <macros.h>
48
#include <macros.h>
49
 
49
 
50
#define PRESSED_SHIFT       (1<<0)
50
#define PRESSED_SHIFT       (1<<0)
51
#define PRESSED_CAPSLOCK    (1<<1)
51
#define PRESSED_CAPSLOCK    (1<<1)
52
#define LOCKED_CAPSLOCK     (1<<0)
52
#define LOCKED_CAPSLOCK     (1<<0)
53
 
53
 
54
#define ACTIVE_READ_BUFF_SIZE 16    /* Must be power of 2 */
54
#define ACTIVE_READ_BUFF_SIZE 16    /* Must be power of 2 */
55
 
55
 
-
 
56
chardev_t kbrd;
-
 
57
 
56
static uint8_t active_read_buff[ACTIVE_READ_BUFF_SIZE];
58
static uint8_t active_read_buff[ACTIVE_READ_BUFF_SIZE];
57
 
59
 
58
SPINLOCK_INITIALIZE(keylock);       /**< keylock protects keyflags and lockflags. */
60
SPINLOCK_INITIALIZE(keylock);       /**< keylock protects keyflags and lockflags. */
59
static volatile int keyflags;       /**< Tracking of multiple keypresses. */
61
static volatile int keyflags;       /**< Tracking of multiple keypresses. */
60
static volatile int lockflags;      /**< Tracking of multiple keys lockings. */
62
static volatile int lockflags;      /**< Tracking of multiple keys lockings. */
61
 
63
 
62
/** Process release of key.
64
/** Process release of key.
63
 *
65
 *
64
 * @param sc Scancode of the key being released.
66
 * @param sc Scancode of the key being released.
65
 */
67
 */
66
void key_released(uint8_t sc)
68
void key_released(uint8_t sc)
67
{
69
{
68
    spinlock_lock(&keylock);
70
    spinlock_lock(&keylock);
69
    switch (sc) {
71
    switch (sc) {
70
    case SC_LSHIFT:
72
    case SC_LSHIFT:
71
    case SC_RSHIFT:
73
    case SC_RSHIFT:
72
        keyflags &= ~PRESSED_SHIFT;
74
        keyflags &= ~PRESSED_SHIFT;
73
        break;
75
        break;
74
    case SC_CAPSLOCK:
76
    case SC_CAPSLOCK:
75
        keyflags &= ~PRESSED_CAPSLOCK;
77
        keyflags &= ~PRESSED_CAPSLOCK;
76
        if (lockflags & LOCKED_CAPSLOCK)
78
        if (lockflags & LOCKED_CAPSLOCK)
77
            lockflags &= ~LOCKED_CAPSLOCK;
79
            lockflags &= ~LOCKED_CAPSLOCK;
78
        else
80
        else
79
            lockflags |= LOCKED_CAPSLOCK;
81
            lockflags |= LOCKED_CAPSLOCK;
80
        break;
82
        break;
81
    default:
83
    default:
82
        break;
84
        break;
83
    }
85
    }
84
    spinlock_unlock(&keylock);
86
    spinlock_unlock(&keylock);
85
}
87
}
86
 
88
 
87
/** Process keypress.
89
/** Process keypress.
88
 *
90
 *
89
 * @param sc Scancode of the key being pressed.
91
 * @param sc Scancode of the key being pressed.
90
 */
92
 */
91
void key_pressed(uint8_t sc)
93
void key_pressed(uint8_t sc)
92
{
94
{
93
    char *map = sc_primary_map;
95
    char *map = sc_primary_map;
94
    char ascii = sc_primary_map[sc];
96
    char ascii = sc_primary_map[sc];
95
    bool shift, capslock;
97
    bool shift, capslock;
96
    bool letter = false;
98
    bool letter = false;
97
 
99
 
98
    spinlock_lock(&keylock);
100
    spinlock_lock(&keylock);
99
    switch (sc) {
101
    switch (sc) {
100
    case SC_LSHIFT:
102
    case SC_LSHIFT:
101
    case SC_RSHIFT:
103
    case SC_RSHIFT:
102
            keyflags |= PRESSED_SHIFT;
104
            keyflags |= PRESSED_SHIFT;
103
        break;
105
        break;
104
    case SC_CAPSLOCK:
106
    case SC_CAPSLOCK:
105
        keyflags |= PRESSED_CAPSLOCK;
107
        keyflags |= PRESSED_CAPSLOCK;
106
        break;
108
        break;
107
    case SC_SPEC_ESCAPE:
109
    case SC_SPEC_ESCAPE:
108
        break;
110
        break;
109
    case SC_LEFTARR:
111
    case SC_LEFTARR:
110
        chardev_push_character(&kbrd, 0x1b);
112
        chardev_push_character(&kbrd, 0x1b);
111
        chardev_push_character(&kbrd, 0x5b);
113
        chardev_push_character(&kbrd, 0x5b);
112
        chardev_push_character(&kbrd, 0x44);
114
        chardev_push_character(&kbrd, 0x44);
113
        break;
115
        break;
114
    case SC_RIGHTARR:
116
    case SC_RIGHTARR:
115
        chardev_push_character(&kbrd, 0x1b);
117
        chardev_push_character(&kbrd, 0x1b);
116
        chardev_push_character(&kbrd, 0x5b);
118
        chardev_push_character(&kbrd, 0x5b);
117
        chardev_push_character(&kbrd, 0x43);
119
        chardev_push_character(&kbrd, 0x43);
118
        break;
120
        break;
119
    case SC_UPARR:
121
    case SC_UPARR:
120
        chardev_push_character(&kbrd, 0x1b);
122
        chardev_push_character(&kbrd, 0x1b);
121
        chardev_push_character(&kbrd, 0x5b);
123
        chardev_push_character(&kbrd, 0x5b);
122
        chardev_push_character(&kbrd, 0x41);
124
        chardev_push_character(&kbrd, 0x41);
123
        break;
125
        break;
124
    case SC_DOWNARR:
126
    case SC_DOWNARR:
125
        chardev_push_character(&kbrd, 0x1b);
127
        chardev_push_character(&kbrd, 0x1b);
126
        chardev_push_character(&kbrd, 0x5b);
128
        chardev_push_character(&kbrd, 0x5b);
127
        chardev_push_character(&kbrd, 0x42);
129
        chardev_push_character(&kbrd, 0x42);
128
        break;
130
        break;
129
    case SC_HOME:
131
    case SC_HOME:
130
        chardev_push_character(&kbrd, 0x1b);
132
        chardev_push_character(&kbrd, 0x1b);
131
        chardev_push_character(&kbrd, 0x4f);
133
        chardev_push_character(&kbrd, 0x4f);
132
        chardev_push_character(&kbrd, 0x48);
134
        chardev_push_character(&kbrd, 0x48);
133
        break;
135
        break;
134
    case SC_END:
136
    case SC_END:
135
        chardev_push_character(&kbrd, 0x1b);
137
        chardev_push_character(&kbrd, 0x1b);
136
        chardev_push_character(&kbrd, 0x4f);
138
        chardev_push_character(&kbrd, 0x4f);
137
        chardev_push_character(&kbrd, 0x46);
139
        chardev_push_character(&kbrd, 0x46);
138
        break;
140
        break;
139
    case SC_DELETE:
141
    case SC_DELETE:
140
        chardev_push_character(&kbrd, 0x1b);
142
        chardev_push_character(&kbrd, 0x1b);
141
        chardev_push_character(&kbrd, 0x5b);
143
        chardev_push_character(&kbrd, 0x5b);
142
        chardev_push_character(&kbrd, 0x33);
144
        chardev_push_character(&kbrd, 0x33);
143
        chardev_push_character(&kbrd, 0x7e);
145
        chardev_push_character(&kbrd, 0x7e);
144
        break;
146
        break;
145
    default:
147
    default:
146
            letter = is_lower(ascii);
148
            letter = is_lower(ascii);
147
        capslock = (keyflags & PRESSED_CAPSLOCK) || (lockflags & LOCKED_CAPSLOCK);
149
        capslock = (keyflags & PRESSED_CAPSLOCK) || (lockflags & LOCKED_CAPSLOCK);
148
        shift = keyflags & PRESSED_SHIFT;
150
        shift = keyflags & PRESSED_SHIFT;
149
        if (letter && capslock)
151
        if (letter && capslock)
150
            shift = !shift;
152
            shift = !shift;
151
        if (shift)
153
        if (shift)
152
            map = sc_secondary_map;
154
            map = sc_secondary_map;
153
        chardev_push_character(&kbrd, map[sc]);
155
        chardev_push_character(&kbrd, map[sc]);
154
        break;
156
        break;
155
    }
157
    }
156
    spinlock_unlock(&keylock);
158
    spinlock_unlock(&keylock);
157
}
159
}
158
 
160
 
159
uint8_t active_read_buff_read(void)
161
uint8_t active_read_buff_read(void)
160
{
162
{
161
    static int i=0;
163
    static int i=0;
162
    i &= (ACTIVE_READ_BUFF_SIZE-1);
164
    i &= (ACTIVE_READ_BUFF_SIZE-1);
163
    if(!active_read_buff[i]) {
165
    if(!active_read_buff[i]) {
164
        return 0;
166
        return 0;
165
    }
167
    }
166
    return active_read_buff[i++];
168
    return active_read_buff[i++];
167
}
169
}
168
 
170
 
169
void active_read_buff_write(uint8_t ch)
171
void active_read_buff_write(uint8_t ch)
170
{
172
{
171
    static int i=0;
173
    static int i=0;
172
    active_read_buff[i] = ch;
174
    active_read_buff[i] = ch;
173
    i++;
175
    i++;
174
    i &= (ACTIVE_READ_BUFF_SIZE-1);
176
    i &= (ACTIVE_READ_BUFF_SIZE-1);
175
    active_read_buff[i]=0;
177
    active_read_buff[i]=0;
176
}
178
}
177
 
179
 
178
 
180
 
179
void active_read_key_pressed(uint8_t sc)
181
void active_read_key_pressed(uint8_t sc)
180
{
182
{
181
    char *map = sc_primary_map;
183
    char *map = sc_primary_map;
182
    char ascii = sc_primary_map[sc];
184
    char ascii = sc_primary_map[sc];
183
    bool shift, capslock;
185
    bool shift, capslock;
184
    bool letter = false;
186
    bool letter = false;
185
 
187
 
186
    /*spinlock_lock(&keylock);*/
188
    /*spinlock_lock(&keylock);*/
187
    switch (sc) {
189
    switch (sc) {
188
    case SC_LSHIFT:
190
    case SC_LSHIFT:
189
    case SC_RSHIFT:
191
    case SC_RSHIFT:
190
            keyflags |= PRESSED_SHIFT;
192
            keyflags |= PRESSED_SHIFT;
191
        break;
193
        break;
192
    case SC_CAPSLOCK:
194
    case SC_CAPSLOCK:
193
        keyflags |= PRESSED_CAPSLOCK;
195
        keyflags |= PRESSED_CAPSLOCK;
194
        break;
196
        break;
195
    case SC_SPEC_ESCAPE:
197
    case SC_SPEC_ESCAPE:
196
        break;
198
        break;
197
    case SC_LEFTARR:
199
    case SC_LEFTARR:
198
        active_read_buff_write(0x1b);
200
        active_read_buff_write(0x1b);
199
        active_read_buff_write(0x5b);
201
        active_read_buff_write(0x5b);
200
        active_read_buff_write(0x44);
202
        active_read_buff_write(0x44);
201
        break;
203
        break;
202
    case SC_RIGHTARR:
204
    case SC_RIGHTARR:
203
        active_read_buff_write(0x1b);
205
        active_read_buff_write(0x1b);
204
        active_read_buff_write(0x5b);
206
        active_read_buff_write(0x5b);
205
        active_read_buff_write(0x43);
207
        active_read_buff_write(0x43);
206
        break;
208
        break;
207
    case SC_UPARR:
209
    case SC_UPARR:
208
        active_read_buff_write(0x1b);
210
        active_read_buff_write(0x1b);
209
        active_read_buff_write(0x5b);
211
        active_read_buff_write(0x5b);
210
        active_read_buff_write(0x41);
212
        active_read_buff_write(0x41);
211
        break;
213
        break;
212
    case SC_DOWNARR:
214
    case SC_DOWNARR:
213
        active_read_buff_write(0x1b);
215
        active_read_buff_write(0x1b);
214
        active_read_buff_write(0x5b);
216
        active_read_buff_write(0x5b);
215
        active_read_buff_write(0x42);
217
        active_read_buff_write(0x42);
216
        break;
218
        break;
217
    case SC_HOME:
219
    case SC_HOME:
218
        active_read_buff_write(0x1b);
220
        active_read_buff_write(0x1b);
219
        active_read_buff_write(0x4f);
221
        active_read_buff_write(0x4f);
220
        active_read_buff_write(0x48);
222
        active_read_buff_write(0x48);
221
        break;
223
        break;
222
    case SC_END:
224
    case SC_END:
223
        active_read_buff_write(0x1b);
225
        active_read_buff_write(0x1b);
224
        active_read_buff_write(0x4f);
226
        active_read_buff_write(0x4f);
225
        active_read_buff_write(0x46);
227
        active_read_buff_write(0x46);
226
        break;
228
        break;
227
    case SC_DELETE:
229
    case SC_DELETE:
228
        active_read_buff_write(0x1b);
230
        active_read_buff_write(0x1b);
229
        active_read_buff_write(0x5b);
231
        active_read_buff_write(0x5b);
230
        active_read_buff_write(0x33);
232
        active_read_buff_write(0x33);
231
        active_read_buff_write(0x7e);
233
        active_read_buff_write(0x7e);
232
        break;
234
        break;
233
    default:
235
    default:
234
            letter = is_lower(ascii);
236
            letter = is_lower(ascii);
235
        capslock = (keyflags & PRESSED_CAPSLOCK) || (lockflags & LOCKED_CAPSLOCK);
237
        capslock = (keyflags & PRESSED_CAPSLOCK) || (lockflags & LOCKED_CAPSLOCK);
236
        shift = keyflags & PRESSED_SHIFT;
238
        shift = keyflags & PRESSED_SHIFT;
237
        if (letter && capslock)
239
        if (letter && capslock)
238
            shift = !shift;
240
            shift = !shift;
239
        if (shift)
241
        if (shift)
240
            map = sc_secondary_map;
242
            map = sc_secondary_map;
241
        active_read_buff_write(map[sc]);
243
        active_read_buff_write(map[sc]);
242
        break;
244
        break;
243
    }
245
    }
244
    /*spinlock_unlock(&keylock);*/
246
    /*spinlock_unlock(&keylock);*/
245
 
247
 
246
}
248
}
247
 
249
 
248
/** @}
250
/** @}
249
 */
251
 */
250
 
252