source: mainline/console/console.c@ 44c6d88d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 44c6d88d was 79460ae, checked in by Josef Cejka <malyzelenyhnus@…>, 19 years ago

Basic support for console driver.
Does not provide separate screens yet.
TODO fix many unhandled states.

  • Property mode set to 100644
File size: 5.2 KB
RevLine 
[51c1b003]1/*
2 * Copyright (C) 2006 Josef 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
29
30#include <kbd.h>
[79460ae]31#include <fb.h>
[51c1b003]32#include <ipc/ipc.h>
[79460ae]33#include <ipc/fb.h>
[51c1b003]34#include <ipc/services.h>
35#include <errno.h>
[79460ae]36#include <key_buffer.h>
37#include <console.h>
38
39//#define CONSOLE_COUNT VFB_CONNECTIONS
40#define CONSOLE_COUNT 6
[51c1b003]41
42#define NAME "CONSOLE"
43
[79460ae]44typedef struct {
45 keybuffer_t keybuffer;
46 int client_phone;
47 int vfb_number; /* Not used */
48 int vfb_phone;
49 int used;
50} connection_t;
51
52connection_t connections[CONSOLE_COUNT];
53
54static int find_free_connection()
55{
56 int i = 0;
57
58 while (i < CONSOLE_COUNT) {
59 if (connections[i].used == 0)
60 return i;
61 ++i;
62 }
63 return CONSOLE_COUNT;
64}
65
66
67static int find_connection(int client_phone)
68{
69 int i = 0;
70
71 while (i < CONSOLE_COUNT) {
72 if (connections[i].client_phone == client_phone)
73 return i;
74 ++i;
75 }
76 return CONSOLE_COUNT;
77}
78
[51c1b003]79int main(int argc, char *argv[])
80{
81 ipcarg_t phonead;
82 ipc_call_t call;
83 ipc_callid_t callid;
[79460ae]84 int kbd_phone, fb_phone;
[51c1b003]85 ipcarg_t retval, arg1 = 0xdead, arg2 = 0xbeef;
[79460ae]86 int i;
87 int active_client = 0;
[51c1b003]88
89 /* Connect to keyboard driver */
90
[79460ae]91 while ((kbd_phone = ipc_connect_me_to(PHONE_NS, SERVICE_KEYBOARD, 0)) < 0) {
[51c1b003]92 };
93
[79460ae]94 if (ipc_connect_to_me(kbd_phone, SERVICE_CONSOLE, 0, &phonead) != 0) {
[51c1b003]95 return -1;
96 };
97
98 /* Connect to framebuffer driver */
99
[79460ae]100 for (i = 0; i < CONSOLE_COUNT; i++) {
101 connections[i].used = 0;
102 keybuffer_init(&(connections[i].keybuffer));
103 /* TODO: init key_buffer */
104 while ((connections[i].vfb_phone = ipc_connect_me_to(PHONE_NS, SERVICE_VIDEO, 0)) < 0) {
105
106ipc_call_async_2(connections[i].vfb_phone, FB_PUTCHAR, 'a', 'b', NULL, (void *)NULL);
107 }
108 }
[51c1b003]109
110
[79460ae]111
[51c1b003]112 if (ipc_connect_to_me(PHONE_NS, SERVICE_CONSOLE, 0, &phonead) != 0) {
113 return -1;
114 };
115
116 while (1) {
117 callid = ipc_wait_for_call(&call);
118 switch (IPC_GET_METHOD(call)) {
119 case IPC_M_PHONE_HUNGUP:
[79460ae]120 /*FIXME: if its fb or kbd then panic! */
121 /* free connection */
122 if (i = find_connection(IPC_GET_ARG3(call)) < CONSOLE_COUNT) {
123 connections[i].used = 0;
124 /*TODO: free connection[i].key_buffer; */
125 /* FIXME: active_connection hungup */
126 retval = 0;
127 } else {
128 /*FIXME: No such connection */
129 }
[51c1b003]130 break;
131 case IPC_M_CONNECT_ME_TO:
[79460ae]132
133 /* find first free connection */
134
135 if ((i = find_free_connection()) == CONSOLE_COUNT) {
136 retval = ELIMIT;
137 break;
138 }
139
140 connections[i].used = 1;
141 connections[i].client_phone = IPC_GET_ARG3(call);
142
[51c1b003]143 retval = 0;
144 break;
145 case KBD_PUSHCHAR:
[79460ae]146 /* got key from keyboard driver */
147 /* find active console */
148 /* if client is awaiting key, send it */
149 /*FIXME: else store key to its buffer */
[51c1b003]150 retval = 0;
[79460ae]151 i = IPC_GET_ARG1(call) & 0xff;
152 /* switch to another virtual console */
153 if ((i >= KBD_KEY_F1) && (i < KBD_KEY_F1 + CONSOLE_COUNT)) {
154 active_client = i - KBD_KEY_F1;
155 break;
156 }
157
158 keybuffer_push(&(connections[active_client].keybuffer), i);
159
160 break;
161 case CONSOLE_PUTCHAR:
162 /* find sender client */
163 /* ???
164 * if its active client, send it to vfb
165 **/
166 /*FIXME: check, if its from active client, .... */
167
168 if ((i = find_connection(IPC_GET_ARG3(call))) == CONSOLE_COUNT) {
169 break;
170 };
[854387b]171
[79460ae]172 /* TODO: send message to fb */
173 ipc_call_async_2(connections[i].vfb_phone, FB_PUTCHAR, IPC_GET_ARG1(call), IPC_GET_ARG2(call), NULL, NULL);
174
175 break;
176 case CONSOLE_GETCHAR:
177 /* FIXME: */
178 if (!keybuffer_pop(&(connections[active_client].keybuffer), (char *)&arg1)) {
179 /* FIXME: buffer empty -> store request */
180 arg1 = 'X'; /* Only temporary */
181 };
182//ipc_call_async_2(connections[active_client].vfb_phone, FB_PUTCHAR, ' ', arg1, NULL, (void *)NULL);
[51c1b003]183 break;
184 default:
185 retval = ENOENT;
186 break;
187 }
188
189 if (! (callid & IPC_CALLID_NOTIFICATION)) {
190 ipc_answer_fast(callid, retval, arg1, arg2);
191 }
192 }
193
194 return 0;
195}
Note: See TracBrowser for help on using the repository browser.