Subversion Repositories HelenOS

Rev

Rev 3150 | Rev 4344 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1339 cejka 1
/*
2071 jermar 2
 * Copyright (c) 2006 Josef Cejka
1339 cejka 3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
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
15
 *   derived from this software without specific prior written permission.
16
 *
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
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
1740 jermar 29
/**
30
 * @addtogroup kbdgen generic
1649 cejka 31
 * @brief   HelenOS generic uspace keyboard handler.
32
 * @ingroup  kbd
33
 * @{
34
 */
35
/** @file
36
 */
37
 
1352 palkovsky 38
#include <ipc/ipc.h>
39
#include <ipc/services.h>
1339 cejka 40
#include <stdio.h>
41
#include <unistd.h>
42
#include <stdlib.h>
1508 vana 43
#include <stdio.h>
1352 palkovsky 44
#include <ipc/ns.h>
4343 svoboda 45
#include <async.h>
1339 cejka 46
#include <errno.h>
4343 svoboda 47
#include <libadt/fifo.h>
48
#include <kbd/kbd.h>
49
 
1339 cejka 50
#include <kbd.h>
51
#include <key_buffer.h>
4343 svoboda 52
#include <kbd_port.h>
53
#include <kbd_ctl.h>
54
#include <layout.h>
1339 cejka 55
 
3150 svoboda 56
#define NAME "kbd"
1447 cejka 57
 
1610 palkovsky 58
int cons_connected = 0;
59
int phone2cons = -1;
60
keybuffer_t keybuffer; 
61
 
4343 svoboda 62
void kbd_push_scancode(int scancode)
1610 palkovsky 63
{
4343 svoboda 64
    printf("scancode: 0x%x\n", scancode);
65
    kbd_ctl_parse_scancode(scancode);
66
}
1694 palkovsky 67
 
4343 svoboda 68
#include <kbd/keycode.h>
69
void kbd_push_ev(int type, unsigned int key, unsigned int mods)
70
{
71
    kbd_event_t ev;
1707 palkovsky 72
 
4343 svoboda 73
    printf("type: %d\n", type);
74
    printf("mods: 0x%x\n", mods);
75
    printf("keycode: %u\n", key);
1610 palkovsky 76
 
4343 svoboda 77
    ev.type = type;
78
    ev.key = key;
79
    ev.mods = mods;
80
 
81
    ev.c = layout_parse_ev(&ev);
82
 
83
    async_msg_4(phone2cons, KBD_EVENT, ev.type, ev.key, ev.mods, ev.c);
1610 palkovsky 84
}
85
 
4343 svoboda 86
//static void irq_handler(ipc_callid_t iid, ipc_call_t *call)
87
//{
88
//  kbd_event_t ev;
89
//
90
//  kbd_arch_process(&keybuffer, call);
91
//
92
//  if (cons_connected && phone2cons != -1) {
93
//      /*
94
//       * One interrupt can produce more than one event so the result
95
//       * is stored in a FIFO.
96
//       */
97
//      while (!keybuffer_empty(&keybuffer)) {
98
//          if (!keybuffer_pop(&keybuffer, &ev))
99
//              break;
100
//
101
//          async_msg_4(phone2cons, KBD_EVENT, ev.type, ev.key,
102
//              ev.mods, ev.c);
103
//      }
104
//  }
105
//}
106
 
1610 palkovsky 107
static void console_connection(ipc_callid_t iid, ipc_call_t *icall)
108
{
109
    ipc_callid_t callid;
110
    ipc_call_t call;
111
    int retval;
112
 
113
    if (cons_connected) {
2619 jermar 114
        ipc_answer_0(iid, ELIMIT);
1610 palkovsky 115
        return;
116
    }
117
    cons_connected = 1;
2619 jermar 118
    ipc_answer_0(iid, EOK);
1610 palkovsky 119
 
120
    while (1) {
121
        callid = async_get_call(&call);
122
        switch (IPC_GET_METHOD(call)) {
123
        case IPC_M_PHONE_HUNGUP:
124
            cons_connected = 0;
125
            ipc_hangup(phone2cons);
126
            phone2cons = -1;
2619 jermar 127
            ipc_answer_0(callid, EOK);
1610 palkovsky 128
            return;
129
        case IPC_M_CONNECT_TO_ME:
130
            if (phone2cons != -1) {
131
                retval = ELIMIT;
132
                break;
133
            }
2637 cejka 134
            phone2cons = IPC_GET_ARG5(call);
1610 palkovsky 135
            retval = 0;
136
            break;
1720 palkovsky 137
        default:
138
            retval = EINVAL;
1610 palkovsky 139
        }
2619 jermar 140
        ipc_answer_0(callid, retval);
1610 palkovsky 141
    }  
142
}
143
 
144
 
4343 svoboda 145
 
1339 cejka 146
int main(int argc, char **argv)
147
{
3150 svoboda 148
    printf(NAME ": HelenOS Keyboard service\n");
149
 
1339 cejka 150
    ipcarg_t phonead;
1508 vana 151
 
4343 svoboda 152
    /* Initialize port driver. */
153
    if (kbd_port_init())
1694 palkovsky 154
        return -1;
1339 cejka 155
 
156
    /* Initialize key buffer */
1451 cejka 157
    keybuffer_init(&keybuffer);
1339 cejka 158
 
1640 palkovsky 159
    async_set_client_connection(console_connection);
4343 svoboda 160
 
161
    /* Register service at nameserver. */
2637 cejka 162
    if (ipc_connect_to_me(PHONE_NS, SERVICE_KEYBOARD, 0, 0, &phonead) != 0)
1339 cejka 163
        return -1;
3150 svoboda 164
 
165
    printf(NAME ": Accepting connections\n");
1610 palkovsky 166
    async_manager();
1344 cejka 167
 
4343 svoboda 168
    /* Not reached. */
1720 palkovsky 169
    return 0;
1339 cejka 170
}
1649 cejka 171
 
172
/**
173
 * @}
174
 */