Subversion Repositories HelenOS-historic

Rev

Rev 1720 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1720 Rev 1740
1
/*
1
/*
2
 * Copyright (C) 2006 Josef Cejka
2
 * Copyright (C) 2006 Josef Cejka
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
/** @defgroup kbd Keyboard handler
-
 
30
 * @brief   HelenOS uspace keyboard handler.
-
 
31
 * @{
-
 
32
 * @}
-
 
33
 */
29
/**
34
/** @addtogroup kbdgen generic
30
 * @addtogroup kbdgen generic
35
 * @brief   HelenOS generic uspace keyboard handler.
31
 * @brief   HelenOS generic uspace keyboard handler.
36
 * @ingroup  kbd
32
 * @ingroup  kbd
37
 * @{
33
 * @{
38
 */
34
 */
39
/** @file
35
/** @file
40
 */
36
 */
41
 
37
 
42
#include <ipc/ipc.h>
38
#include <ipc/ipc.h>
43
#include <ipc/services.h>
39
#include <ipc/services.h>
44
#include <stdio.h>
40
#include <stdio.h>
45
#include <unistd.h>
41
#include <unistd.h>
46
#include <stdlib.h>
42
#include <stdlib.h>
47
#include <stdio.h>
43
#include <stdio.h>
48
#include <ipc/ns.h>
44
#include <ipc/ns.h>
49
#include <errno.h>
45
#include <errno.h>
50
#include <arch/kbd.h>
46
#include <arch/kbd.h>
51
#include <kbd.h>
47
#include <kbd.h>
52
#include <libadt/fifo.h>
48
#include <libadt/fifo.h>
53
#include <key_buffer.h>
49
#include <key_buffer.h>
54
#include <async.h>
50
#include <async.h>
55
#include <keys.h>
51
#include <keys.h>
56
 
52
 
57
#define NAME "KBD"
53
#define NAME "KBD"
58
 
54
 
59
int cons_connected = 0;
55
int cons_connected = 0;
60
int phone2cons = -1;
56
int phone2cons = -1;
61
keybuffer_t keybuffer; 
57
keybuffer_t keybuffer; 
62
 
58
 
63
static void irq_handler(ipc_callid_t iid, ipc_call_t *call)
59
static void irq_handler(ipc_callid_t iid, ipc_call_t *call)
64
{
60
{
65
    int chr;
61
    int chr;
66
 
62
 
67
#ifdef MOUSE_ENABLED
63
#ifdef MOUSE_ENABLED
68
    if (mouse_arch_process(phone2cons, call))
64
    if (mouse_arch_process(phone2cons, call))
69
        return;
65
        return;
70
#endif
66
#endif
71
   
67
   
72
    kbd_arch_process(&keybuffer, call);
68
    kbd_arch_process(&keybuffer, call);
73
 
69
 
74
    if (cons_connected && phone2cons != -1) {
70
    if (cons_connected && phone2cons != -1) {
75
        /* recode to ASCII - one interrupt can produce more than one code so result is stored in fifo */
71
        /* recode to ASCII - one interrupt can produce more than one code so result is stored in fifo */
76
        while (!keybuffer_empty(&keybuffer)) {
72
        while (!keybuffer_empty(&keybuffer)) {
77
            if (!keybuffer_pop(&keybuffer, (int *)&chr))
73
            if (!keybuffer_pop(&keybuffer, (int *)&chr))
78
                break;
74
                break;
79
 
75
 
80
            async_msg(phone2cons, KBD_PUSHCHAR, chr);
76
            async_msg(phone2cons, KBD_PUSHCHAR, chr);
81
        }
77
        }
82
    }
78
    }
83
}
79
}
84
 
80
 
85
static void console_connection(ipc_callid_t iid, ipc_call_t *icall)
81
static void console_connection(ipc_callid_t iid, ipc_call_t *icall)
86
{
82
{
87
    ipc_callid_t callid;
83
    ipc_callid_t callid;
88
    ipc_call_t call;
84
    ipc_call_t call;
89
    int retval;
85
    int retval;
90
 
86
 
91
    if (cons_connected) {
87
    if (cons_connected) {
92
        ipc_answer_fast(iid, ELIMIT, 0, 0);
88
        ipc_answer_fast(iid, ELIMIT, 0, 0);
93
        return;
89
        return;
94
    }
90
    }
95
    cons_connected = 1;
91
    cons_connected = 1;
96
    ipc_answer_fast(iid, 0, 0, 0);
92
    ipc_answer_fast(iid, 0, 0, 0);
97
 
93
 
98
    while (1) {
94
    while (1) {
99
        callid = async_get_call(&call);
95
        callid = async_get_call(&call);
100
        switch (IPC_GET_METHOD(call)) {
96
        switch (IPC_GET_METHOD(call)) {
101
        case IPC_M_PHONE_HUNGUP:
97
        case IPC_M_PHONE_HUNGUP:
102
            cons_connected = 0;
98
            cons_connected = 0;
103
            ipc_hangup(phone2cons);
99
            ipc_hangup(phone2cons);
104
            phone2cons = -1;
100
            phone2cons = -1;
105
            ipc_answer_fast(callid, 0,0,0);
101
            ipc_answer_fast(callid, 0,0,0);
106
            return;
102
            return;
107
        case IPC_M_CONNECT_TO_ME:
103
        case IPC_M_CONNECT_TO_ME:
108
            if (phone2cons != -1) {
104
            if (phone2cons != -1) {
109
                retval = ELIMIT;
105
                retval = ELIMIT;
110
                break;
106
                break;
111
            }
107
            }
112
            phone2cons = IPC_GET_ARG3(call);
108
            phone2cons = IPC_GET_ARG3(call);
113
            retval = 0;
109
            retval = 0;
114
            break;
110
            break;
115
        default:
111
        default:
116
            retval = EINVAL;
112
            retval = EINVAL;
117
        }
113
        }
118
        ipc_answer_fast(callid, retval, 0, 0);
114
        ipc_answer_fast(callid, retval, 0, 0);
119
    }  
115
    }  
120
}
116
}
121
 
117
 
122
 
118
 
123
int main(int argc, char **argv)
119
int main(int argc, char **argv)
124
{
120
{
125
    ipcarg_t phonead;
121
    ipcarg_t phonead;
126
   
122
   
127
    /* Initialize arch dependent parts */
123
    /* Initialize arch dependent parts */
128
    if (kbd_arch_init())
124
    if (kbd_arch_init())
129
        return -1;
125
        return -1;
130
   
126
   
131
    /* Initialize key buffer */
127
    /* Initialize key buffer */
132
    keybuffer_init(&keybuffer);
128
    keybuffer_init(&keybuffer);
133
   
129
   
134
    async_set_client_connection(console_connection);
130
    async_set_client_connection(console_connection);
135
    async_set_interrupt_received(irq_handler);
131
    async_set_interrupt_received(irq_handler);
136
    /* Register service at nameserver */
132
    /* Register service at nameserver */
137
    if (ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, &phonead) != 0)
133
    if (ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, &phonead) != 0)
138
        return -1;
134
        return -1;
139
 
135
 
140
    async_manager();
136
    async_manager();
141
 
137
 
142
    /* Never reached */
138
    /* Never reached */
143
    return 0;
139
    return 0;
144
}
140
}
145
 
141
 
146
/**
142
/**
147
 * @}
143
 * @}
148
 */
144
 */
149
 
145
 
150
 
146