Subversion Repositories HelenOS

Rev

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

Rev 3661 Rev 3877
1
/*
1
/*
2
 * Copyright (c) 2001-2004 Jakub Jermar
2
 * Copyright (c) 2001-2004 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   i8042 processor driver.
34
 * @brief   i8042 processor driver.
35
 *
35
 *
36
 * It takes care of low-level keyboard functions.
36
 * It takes care of low-level keyboard functions.
37
 */
37
 */
38
 
38
 
39
#include <genarch/kbd/i8042.h>
39
#include <genarch/kbd/i8042.h>
40
#ifdef ia64
-
 
41
#include <arch/drivers/kbd.h>
40
#include <arch/drivers/kbd.h>
42
#endif
-
 
43
#include <genarch/kbd/key.h>
41
#include <genarch/kbd/key.h>
44
#include <genarch/kbd/scanc.h>
42
#include <genarch/kbd/scanc.h>
45
#include <genarch/kbd/scanc_pc.h>
43
#include <genarch/kbd/scanc_pc.h>
46
#include <arch/drivers/i8042.h>
44
#include <arch/drivers/i8042.h>
47
#include <cpu.h>
45
#include <cpu.h>
48
#include <arch/asm.h>
46
#include <arch/asm.h>
49
#include <arch.h>
47
#include <arch.h>
50
#include <console/chardev.h>
48
#include <console/chardev.h>
51
#include <console/console.h>
49
#include <console/console.h>
52
#include <interrupt.h>
50
#include <interrupt.h>
53
#include <sysinfo/sysinfo.h>
51
#include <sysinfo/sysinfo.h>
54
#include <ipc/irq.h>
52
#include <ipc/irq.h>
55
 
53
 
56
/* Keyboard commands. */
54
/* Keyboard commands. */
57
#define KBD_ENABLE  0xf4
55
#define KBD_ENABLE  0xf4
58
#define KBD_DISABLE 0xf5
56
#define KBD_DISABLE 0xf5
59
#define KBD_ACK     0xfa
57
#define KBD_ACK     0xfa
60
 
58
 
61
/*
59
/*
62
 * 60  Write 8042 Command Byte: next data byte written to port 60h is
60
 * 60  Write 8042 Command Byte: next data byte written to port 60h is
63
 *     placed in 8042 command register. Format:
61
 *     placed in 8042 command register. Format:
64
 *
62
 *
65
 *    |7|6|5|4|3|2|1|0|8042 Command Byte
63
 *    |7|6|5|4|3|2|1|0|8042 Command Byte
66
 *     | | | | | | | `---- 1=enable output register full interrupt
64
 *     | | | | | | | `---- 1=enable output register full interrupt
67
 *     | | | | | | `----- should be 0
65
 *     | | | | | | `----- should be 0
68
 *     | | | | | `------ 1=set status register system, 0=clear
66
 *     | | | | | `------ 1=set status register system, 0=clear
69
 *     | | | | `------- 1=override keyboard inhibit, 0=allow inhibit
67
 *     | | | | `------- 1=override keyboard inhibit, 0=allow inhibit
70
 *     | | | `-------- disable keyboard I/O by driving clock line low
68
 *     | | | `-------- disable keyboard I/O by driving clock line low
71
 *     | | `--------- disable auxiliary device, drives clock line low
69
 *     | | `--------- disable auxiliary device, drives clock line low
72
 *     | `---------- IBM scancode translation 0=AT, 1=PC/XT
70
 *     | `---------- IBM scancode translation 0=AT, 1=PC/XT
73
 *     `----------- reserved, should be 0
71
 *     `----------- reserved, should be 0
74
 */
72
 */
75
 
73
 
76
#define i8042_SET_COMMAND   0x60
74
#define i8042_SET_COMMAND   0x60
77
#define i8042_COMMAND       0x69
75
#define i8042_COMMAND       0x69
78
 
76
 
79
#define i8042_BUFFER_FULL_MASK  0x01
77
#define i8042_BUFFER_FULL_MASK  0x01
80
#define i8042_WAIT_MASK         0x02
78
#define i8042_WAIT_MASK         0x02
81
#define i8042_MOUSE_DATA        0x20
79
#define i8042_MOUSE_DATA        0x20
82
 
80
 
83
static void i8042_suspend(chardev_t *);
81
static void i8042_suspend(chardev_t *);
84
static void i8042_resume(chardev_t *);
82
static void i8042_resume(chardev_t *);
85
 
83
 
86
static chardev_operations_t ops = {
84
static chardev_operations_t ops = {
87
    .suspend = i8042_suspend,
85
    .suspend = i8042_suspend,
88
    .resume = i8042_resume,
86
    .resume = i8042_resume,
89
    .read = i8042_key_read
87
    .read = i8042_key_read
90
};
88
};
91
 
89
 
92
/** Structure for i8042's IRQ. */
90
/** Structure for i8042's IRQ. */
93
static irq_t i8042_kbd_irq;
91
static irq_t i8042_kbd_irq;
94
static irq_t i8042_mouse_irq;
92
static irq_t i8042_mouse_irq;
95
 
93
 
96
void i8042_grab(void)
94
void i8042_grab(void)
97
{
95
{
98
    ipl_t ipl = interrupts_disable();
96
    ipl_t ipl = interrupts_disable();
99
   
97
   
100
    spinlock_lock(&i8042_kbd_irq.lock);
98
    spinlock_lock(&i8042_kbd_irq.lock);
101
    i8042_kbd_irq.notif_cfg.notify = false;
99
    i8042_kbd_irq.notif_cfg.notify = false;
102
    spinlock_unlock(&i8042_kbd_irq.lock);
100
    spinlock_unlock(&i8042_kbd_irq.lock);
103
   
101
   
104
    spinlock_lock(&i8042_mouse_irq.lock);
102
    spinlock_lock(&i8042_mouse_irq.lock);
105
    i8042_mouse_irq.notif_cfg.notify = false;
103
    i8042_mouse_irq.notif_cfg.notify = false;
106
    spinlock_unlock(&i8042_mouse_irq.lock);
104
    spinlock_unlock(&i8042_mouse_irq.lock);
107
   
105
   
108
    interrupts_restore(ipl);
106
    interrupts_restore(ipl);
109
}
107
}
110
 
108
 
111
void i8042_release(void)
109
void i8042_release(void)
112
{
110
{
113
    ipl_t ipl = interrupts_disable();
111
    ipl_t ipl = interrupts_disable();
114
   
112
   
115
    spinlock_lock(&i8042_kbd_irq.lock);
113
    spinlock_lock(&i8042_kbd_irq.lock);
116
    if (i8042_kbd_irq.notif_cfg.answerbox)
114
    if (i8042_kbd_irq.notif_cfg.answerbox)
117
        i8042_kbd_irq.notif_cfg.notify = true;
115
        i8042_kbd_irq.notif_cfg.notify = true;
118
    spinlock_unlock(&i8042_kbd_irq.lock);
116
    spinlock_unlock(&i8042_kbd_irq.lock);
119
   
117
   
120
    spinlock_lock(&i8042_mouse_irq.lock);
118
    spinlock_lock(&i8042_mouse_irq.lock);
121
    if (i8042_mouse_irq.notif_cfg.answerbox)
119
    if (i8042_mouse_irq.notif_cfg.answerbox)
122
        i8042_mouse_irq.notif_cfg.notify = true;
120
        i8042_mouse_irq.notif_cfg.notify = true;
123
    spinlock_unlock(&i8042_mouse_irq.lock);
121
    spinlock_unlock(&i8042_mouse_irq.lock);
124
   
122
   
125
    interrupts_restore(ipl);
123
    interrupts_restore(ipl);
126
}
124
}
127
 
125
 
128
static irq_ownership_t i8042_claim(void)
126
static irq_ownership_t i8042_claim(void)
129
{
127
{
130
    return IRQ_ACCEPT;
128
    return IRQ_ACCEPT;
131
}
129
}
132
 
130
 
133
static void i8042_irq_handler(irq_t *irq, void *arg, ...)
131
static void i8042_irq_handler(irq_t *irq, void *arg, ...)
134
{
132
{
135
    if (irq->notif_cfg.notify && irq->notif_cfg.answerbox)
133
    if (irq->notif_cfg.notify && irq->notif_cfg.answerbox)
136
        ipc_irq_send_notif(irq);
134
        ipc_irq_send_notif(irq);
137
    else {
135
    else {
138
        uint8_t data;
136
        uint8_t data;
139
        uint8_t status;
137
        uint8_t status;
140
       
138
       
141
        while (((status = i8042_status_read()) & i8042_BUFFER_FULL_MASK)) {
139
        while (((status = i8042_status_read()) & i8042_BUFFER_FULL_MASK)) {
142
            data = i8042_data_read();
140
            data = i8042_data_read();
143
           
141
           
144
            if ((status & i8042_MOUSE_DATA))
142
            if ((status & i8042_MOUSE_DATA))
145
                continue;
143
                continue;
146
 
144
 
147
            if (data & KEY_RELEASE)
145
            if (data & KEY_RELEASE)
148
                key_released(data ^ KEY_RELEASE);
146
                key_released(data ^ KEY_RELEASE);
149
            else
147
            else
150
                key_pressed(data);
148
                key_pressed(data);
151
        }
149
        }
152
    }
150
    }
153
}
151
}
154
 
152
 
155
/** Initialize i8042. */
153
/** Initialize i8042. */
156
void i8042_init(devno_t kbd_devno, inr_t kbd_inr, devno_t mouse_devno, inr_t mouse_inr)
154
void i8042_init(devno_t kbd_devno, inr_t kbd_inr, devno_t mouse_devno, inr_t mouse_inr)
157
{
155
{
158
    chardev_initialize("i8042_kbd", &kbrd, &ops);
156
    chardev_initialize("i8042_kbd", &kbrd, &ops);
159
    stdin = &kbrd;
157
    stdin = &kbrd;
160
   
158
   
161
    irq_initialize(&i8042_kbd_irq);
159
    irq_initialize(&i8042_kbd_irq);
162
    i8042_kbd_irq.devno = kbd_devno;
160
    i8042_kbd_irq.devno = kbd_devno;
163
    i8042_kbd_irq.inr = kbd_inr;
161
    i8042_kbd_irq.inr = kbd_inr;
164
    i8042_kbd_irq.claim = i8042_claim;
162
    i8042_kbd_irq.claim = i8042_claim;
165
    i8042_kbd_irq.handler = i8042_irq_handler;
163
    i8042_kbd_irq.handler = i8042_irq_handler;
166
    irq_register(&i8042_kbd_irq);
164
    irq_register(&i8042_kbd_irq);
167
   
165
   
168
    irq_initialize(&i8042_mouse_irq);
166
    irq_initialize(&i8042_mouse_irq);
169
    i8042_mouse_irq.devno = mouse_devno;
167
    i8042_mouse_irq.devno = mouse_devno;
170
    i8042_mouse_irq.inr = mouse_inr;
168
    i8042_mouse_irq.inr = mouse_inr;
171
    i8042_mouse_irq.claim = i8042_claim;
169
    i8042_mouse_irq.claim = i8042_claim;
172
    i8042_mouse_irq.handler = i8042_irq_handler;
170
    i8042_mouse_irq.handler = i8042_irq_handler;
173
    irq_register(&i8042_mouse_irq);
171
    irq_register(&i8042_mouse_irq);
174
#ifndef ia64    
172
   
175
    trap_virtual_enable_irqs(1 << kbd_inr);
173
    trap_virtual_enable_irqs(1 << kbd_inr);
176
    trap_virtual_enable_irqs(1 << mouse_inr);
174
    trap_virtual_enable_irqs(1 << mouse_inr);
177
#endif  
175
   
178
    /*
176
    /*
179
     * Clear input buffer.
177
     * Clear input buffer.
180
     * Number of iterations is limited to prevent infinite looping.
178
     * Number of iterations is limited to prevent infinite looping.
181
     */
179
     */
182
    int i;
180
    int i;
183
    for (i = 0; (i8042_status_read() & i8042_BUFFER_FULL_MASK) && i < 100; i++) {
181
    for (i = 0; (i8042_status_read() & i8042_BUFFER_FULL_MASK) && i < 100; i++) {
184
        i8042_data_read();
182
        i8042_data_read();
185
    }
183
    }
186
   
184
   
187
    sysinfo_set_item_val("kbd", NULL, true);
185
    sysinfo_set_item_val("kbd", NULL, true);
188
    sysinfo_set_item_val("kbd.devno", NULL, kbd_devno);
186
    sysinfo_set_item_val("kbd.devno", NULL, kbd_devno);
189
    sysinfo_set_item_val("kbd.inr", NULL, kbd_inr);
187
    sysinfo_set_item_val("kbd.inr", NULL, kbd_inr);
190
#ifdef KBD_LEGACY
188
#ifdef KBD_LEGACY
191
    sysinfo_set_item_val("kbd.type", NULL, KBD_LEGACY);
189
    sysinfo_set_item_val("kbd.type", NULL, KBD_LEGACY);
192
#endif  
190
#endif
193
    sysinfo_set_item_val("mouse", NULL, true);
191
    sysinfo_set_item_val("mouse", NULL, true);
194
    sysinfo_set_item_val("mouse.devno", NULL, mouse_devno);
192
    sysinfo_set_item_val("mouse.devno", NULL, mouse_devno);
195
    sysinfo_set_item_val("mouse.inr", NULL, mouse_inr);
193
    sysinfo_set_item_val("mouse.inr", NULL, mouse_inr);
196
   
194
   
197
    i8042_grab();
195
    i8042_grab();
198
}
196
}
199
 
197
 
200
/* Called from getc(). */
198
/* Called from getc(). */
201
void i8042_resume(chardev_t *d)
199
void i8042_resume(chardev_t *d)
202
{
200
{
203
}
201
}
204
 
202
 
205
/* Called from getc(). */
203
/* Called from getc(). */
206
void i8042_suspend(chardev_t *d)
204
void i8042_suspend(chardev_t *d)
207
{
205
{
208
}
206
}
209
 
207
 
210
char i8042_key_read(chardev_t *d)
208
char i8042_key_read(chardev_t *d)
211
{
209
{
212
    char ch;   
210
    char ch;
213
 
211
   
214
    while(!(ch = active_read_buff_read())) {
212
    while (!(ch = active_read_buff_read())) {
215
        uint8_t x;
213
        uint8_t x;
-
 
214
       
216
        while (!(i8042_status_read() & i8042_BUFFER_FULL_MASK))
215
        while (!(i8042_status_read() & i8042_BUFFER_FULL_MASK));
217
            ;
216
       
218
        x = i8042_data_read();
217
        x = i8042_data_read();
219
        if (x & KEY_RELEASE)
218
        if (x & KEY_RELEASE)
220
            key_released(x ^ KEY_RELEASE);
219
            key_released(x ^ KEY_RELEASE);
221
        else
220
        else
222
            active_read_key_pressed(x);
221
            active_read_key_pressed(x);
223
    }
222
    }
224
    return ch;
223
    return ch;
225
}
224
}
226
 
225
 
227
/** Poll for key press and release events.
226
/** Poll for key press and release events.
228
 *
227
 *
229
 * This function can be used to implement keyboard polling.
228
 * This function can be used to implement keyboard polling.
230
 */
229
 */
231
void i8042_poll(void)
230
void i8042_poll(void)
232
{
231
{
233
    uint8_t x;
232
    uint8_t x;
234
 
233
   
235
    while (((x = i8042_status_read() & i8042_BUFFER_FULL_MASK))) {
234
    while (((x = i8042_status_read() & i8042_BUFFER_FULL_MASK))) {
236
        x = i8042_data_read();
235
        x = i8042_data_read();
237
        if (x & KEY_RELEASE)
236
        if (x & KEY_RELEASE)
238
            key_released(x ^ KEY_RELEASE);
237
            key_released(x ^ KEY_RELEASE);
239
        else
238
        else
240
            key_pressed(x);
239
            key_pressed(x);
241
    }
240
    }
242
}
241
}
243
 
242
 
244
/** @}
243
/** @}
245
 */
244
 */
246
 
245