Subversion Repositories HelenOS

Rev

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

Rev 1939 Rev 2071
1
/*
1
/*
2
 * Copyright (C) 2001-2004 Jakub Jermar
2
 * Copyright (c) 2001-2004 Jakub Jermar
3
 * Copyright (C) 2006 Josef Cejka
3
 * Copyright (c) 2006 Josef Cejka
4
 * All rights reserved.
4
 * All rights reserved.
5
 *
5
 *
6
 * Redistribution and use in source and binary forms, with or without
6
 * Redistribution and use in source and binary forms, with or without
7
 * modification, are permitted provided that the following conditions
7
 * modification, are permitted provided that the following conditions
8
 * are met:
8
 * are met:
9
 *
9
 *
10
 * - Redistributions of source code must retain the above copyright
10
 * - Redistributions of source code must retain the above copyright
11
 *   notice, this list of conditions and the following disclaimer.
11
 *   notice, this list of conditions and the following disclaimer.
12
 * - Redistributions in binary form must reproduce the above copyright
12
 * - Redistributions in binary form must reproduce the above copyright
13
 *   notice, this list of conditions and the following disclaimer in the
13
 *   notice, this list of conditions and the following disclaimer in the
14
 *   documentation and/or other materials provided with the distribution.
14
 *   documentation and/or other materials provided with the distribution.
15
 * - The name of the author may not be used to endorse or promote products
15
 * - The name of the author may not be used to endorse or promote products
16
 *   derived from this software without specific prior written permission.
16
 *   derived from this software without specific prior written permission.
17
 *
17
 *
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
 */
28
 */
29
 
29
 
30
/** @addtogroup kbdia32 ia32
30
/** @addtogroup kbdia32 ia32
31
 * @brief   HelenOS ia32 / amd64 arch dependent parts of uspace keyboard handler.
31
 * @brief   HelenOS ia32 / amd64 arch dependent parts of uspace keyboard handler.
32
 * @ingroup  kbd
32
 * @ingroup  kbd
33
 * @{
33
 * @{
34
 */
34
 */
35
/** @file
35
/** @file
36
 * @ingroup kbdamd64
36
 * @ingroup kbdamd64
37
 */
37
 */
38
 
38
 
39
#include <arch/kbd.h>
39
#include <arch/kbd.h>
40
#include <ipc/ipc.h>
40
#include <ipc/ipc.h>
41
#include <unistd.h>
41
#include <unistd.h>
42
#include <kbd.h>
42
#include <kbd.h>
43
#include <keys.h>
43
#include <keys.h>
44
#include <genarch/kbd.h>
44
#include <genarch/kbd.h>
45
#include <sysinfo.h>
45
#include <sysinfo.h>
46
 
46
 
47
/* Interesting bits for status register */
47
/* Interesting bits for status register */
48
#define i8042_OUTPUT_FULL  0x1
48
#define i8042_OUTPUT_FULL  0x1
49
#define i8042_INPUT_FULL   0x2
49
#define i8042_INPUT_FULL   0x2
50
#define i8042_MOUSE_DATA   0x20
50
#define i8042_MOUSE_DATA   0x20
51
 
51
 
52
/* Command constants */
52
/* Command constants */
53
#define i8042_CMD_KBD 0x60
53
#define i8042_CMD_KBD 0x60
54
#define i8042_CMD_MOUSE  0xd4
54
#define i8042_CMD_MOUSE  0xd4
55
 
55
 
56
/* Keyboard cmd byte */
56
/* Keyboard cmd byte */
57
#define i8042_KBD_IE        0x1
57
#define i8042_KBD_IE        0x1
58
#define i8042_MOUSE_IE      0x2
58
#define i8042_MOUSE_IE      0x2
59
#define i8042_KBD_DISABLE   0x10
59
#define i8042_KBD_DISABLE   0x10
60
#define i8042_MOUSE_DISABLE 0x20
60
#define i8042_MOUSE_DISABLE 0x20
61
#define i8042_KBD_TRANSLATE 0x40
61
#define i8042_KBD_TRANSLATE 0x40
62
 
62
 
63
/* Mouse constants */
63
/* Mouse constants */
64
#define MOUSE_OUT_INIT  0xf4
64
#define MOUSE_OUT_INIT  0xf4
65
#define MOUSE_ACK       0xfa
65
#define MOUSE_ACK       0xfa
66
 
66
 
67
#define KEY_RELEASE 0x80
67
#define KEY_RELEASE 0x80
68
 
68
 
69
static volatile int keyflags;       /**< Tracking of multiple keypresses. */
69
static volatile int keyflags;       /**< Tracking of multiple keypresses. */
70
static volatile int lockflags;      /**< Tracking of multiple keys lockings. */
70
static volatile int lockflags;      /**< Tracking of multiple keys lockings. */
71
 
71
 
72
irq_cmd_t i8042_cmds[2] = {
72
irq_cmd_t i8042_cmds[2] = {
73
    { CMD_PORT_READ_1, (void *) 0x64, 0, 1 },
73
    { CMD_PORT_READ_1, (void *) 0x64, 0, 1 },
74
    { CMD_PORT_READ_1, (void *) 0x60, 0, 2 }
74
    { CMD_PORT_READ_1, (void *) 0x60, 0, 2 }
75
};
75
};
76
 
76
 
77
irq_code_t i8042_kbd = {
77
irq_code_t i8042_kbd = {
78
    2,
78
    2,
79
    i8042_cmds
79
    i8042_cmds
80
};
80
};
81
 
81
 
82
static void wait_ready(void) {
82
static void wait_ready(void) {
83
    while (i8042_status_read() & i8042_INPUT_FULL)
83
    while (i8042_status_read() & i8042_INPUT_FULL)
84
        ;
84
        ;
85
}
85
}
86
 
86
 
87
/** Register uspace irq handler
87
/** Register uspace irq handler
88
 * @return
88
 * @return
89
 */
89
 */
90
int kbd_arch_init(void)
90
int kbd_arch_init(void)
91
{
91
{
92
    int i;
92
    int i;
93
    int mouseenabled = 0;
93
    int mouseenabled = 0;
94
 
94
 
95
    iospace_enable(task_get_id(), (void *) i8042_DATA, 5);
95
    iospace_enable(task_get_id(), (void *) i8042_DATA, 5);
96
    /* Disable kbd, enable mouse */
96
    /* Disable kbd, enable mouse */
97
    i8042_command_write(i8042_CMD_KBD);
97
    i8042_command_write(i8042_CMD_KBD);
98
    wait_ready();
98
    wait_ready();
99
    i8042_command_write(i8042_CMD_KBD);
99
    i8042_command_write(i8042_CMD_KBD);
100
    wait_ready();
100
    wait_ready();
101
    i8042_data_write(i8042_KBD_DISABLE);
101
    i8042_data_write(i8042_KBD_DISABLE);
102
    wait_ready();
102
    wait_ready();
103
 
103
 
104
    /* Flush all current IO */
104
    /* Flush all current IO */
105
    while (i8042_status_read() & i8042_OUTPUT_FULL)
105
    while (i8042_status_read() & i8042_OUTPUT_FULL)
106
        i8042_data_read();
106
        i8042_data_read();
107
    /* Initialize mouse */
107
    /* Initialize mouse */
108
    i8042_command_write(i8042_CMD_MOUSE);
108
    i8042_command_write(i8042_CMD_MOUSE);
109
    wait_ready();
109
    wait_ready();
110
    i8042_data_write(MOUSE_OUT_INIT);
110
    i8042_data_write(MOUSE_OUT_INIT);
111
    wait_ready();
111
    wait_ready();
112
   
112
   
113
    int mouseanswer = 0;
113
    int mouseanswer = 0;
114
    for (i=0;i < 1000; i++) {
114
    for (i=0;i < 1000; i++) {
115
        int status = i8042_status_read();
115
        int status = i8042_status_read();
116
        if (status & i8042_OUTPUT_FULL) {
116
        if (status & i8042_OUTPUT_FULL) {
117
            int data = i8042_data_read();
117
            int data = i8042_data_read();
118
            if (status & i8042_MOUSE_DATA) {
118
            if (status & i8042_MOUSE_DATA) {
119
                mouseanswer = data;
119
                mouseanswer = data;
120
                break;
120
                break;
121
            }
121
            }
122
        }
122
        }
123
        usleep(1000);
123
        usleep(1000);
124
    }
124
    }
125
    if (mouseanswer == MOUSE_ACK) {
125
    if (mouseanswer == MOUSE_ACK) {
126
        /* enable mouse */
126
        /* enable mouse */
127
        mouseenabled = 1;
127
        mouseenabled = 1;
128
       
128
       
129
        ipc_register_irq(sysinfo_value("mouse.inr"), sysinfo_value("mouse.devno"), 0, &i8042_kbd);
129
        ipc_register_irq(sysinfo_value("mouse.inr"), sysinfo_value("mouse.devno"), 0, &i8042_kbd);
130
    }
130
    }
131
    /* Enable kbd */
131
    /* Enable kbd */
132
    ipc_register_irq(sysinfo_value("kbd.inr"), sysinfo_value("kbd.devno"), 0, &i8042_kbd);
132
    ipc_register_irq(sysinfo_value("kbd.inr"), sysinfo_value("kbd.devno"), 0, &i8042_kbd);
133
 
133
 
134
    int newcontrol = i8042_KBD_IE | i8042_KBD_TRANSLATE;
134
    int newcontrol = i8042_KBD_IE | i8042_KBD_TRANSLATE;
135
    if (mouseenabled)
135
    if (mouseenabled)
136
        newcontrol |= i8042_MOUSE_IE;
136
        newcontrol |= i8042_MOUSE_IE;
137
   
137
   
138
    i8042_command_write(i8042_CMD_KBD);
138
    i8042_command_write(i8042_CMD_KBD);
139
    wait_ready();
139
    wait_ready();
140
    i8042_data_write(newcontrol);
140
    i8042_data_write(newcontrol);
141
    wait_ready();
141
    wait_ready();
142
   
142
   
143
    return 0;
143
    return 0;
144
}
144
}
145
 
145
 
146
/** Process keyboard & mouse events */
146
/** Process keyboard & mouse events */
147
int kbd_arch_process(keybuffer_t *keybuffer, ipc_call_t *call)
147
int kbd_arch_process(keybuffer_t *keybuffer, ipc_call_t *call)
148
{
148
{
149
    int status = IPC_GET_ARG1(*call);
149
    int status = IPC_GET_ARG1(*call);
150
 
150
 
151
    if ((status & i8042_MOUSE_DATA))
151
    if ((status & i8042_MOUSE_DATA))
152
        return 0;
152
        return 0;
153
   
153
   
154
    int scan_code = IPC_GET_ARG2(*call);
154
    int scan_code = IPC_GET_ARG2(*call);
155
   
155
   
156
    if (scan_code & KEY_RELEASE)
156
    if (scan_code & KEY_RELEASE)
157
        key_released(keybuffer, scan_code ^ KEY_RELEASE);
157
        key_released(keybuffer, scan_code ^ KEY_RELEASE);
158
    else
158
    else
159
        key_pressed(keybuffer, scan_code);
159
        key_pressed(keybuffer, scan_code);
160
    return  1;
160
    return  1;
161
}
161
}
162
 
162
 
163
/**
163
/**
164
 * @}
164
 * @}
165
 */
165
 */
166
 
166