Subversion Repositories HelenOS

Rev

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

Rev 3403 Rev 3674
1
/*
1
/*
2
 * Copyright (c) 2006 Ondrej Palkovsky
2
 * Copyright (c) 2006 Ondrej Palkovsky
3
 * Copyright (c) 2008 Martin Decky
3
 * Copyright (c) 2008 Martin Decky
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
/** @defgroup msimfb MSIM text console
30
/** @defgroup msimfb MSIM text console
31
 * @brief   HelenOS MSIM text console.
31
 * @brief   HelenOS MSIM text console.
32
 * @ingroup fbs
32
 * @ingroup fbs
33
 * @{
33
 * @{
34
 */
34
 */
35
/** @file
35
/** @file
36
 */
36
 */
37
 
37
 
38
#include <async.h>
38
#include <async.h>
39
#include <ipc/fb.h>
39
#include <ipc/fb.h>
40
#include <ipc/ipc.h>
40
#include <ipc/ipc.h>
41
#include <libc.h>
41
#include <libc.h>
42
#include <errno.h>
42
#include <errno.h>
43
#include <string.h>
43
#include <string.h>
44
#include <libc.h>
44
#include <libc.h>
45
#include <stdio.h>
45
#include <stdio.h>
46
#include <ipc/fb.h>
46
#include <ipc/fb.h>
47
#include <sysinfo.h>
47
#include <sysinfo.h>
48
#include <as.h>
48
#include <as.h>
49
#include <align.h>
49
#include <align.h>
50
#include <ddi.h>
50
#include <ddi.h>
51
 
51
 
-
 
52
#include "serial_console.h"
52
#include "msim.h"
53
#include "msim.h"
53
 
54
 
54
#define WIDTH 80
55
#define WIDTH 80
55
#define HEIGHT 25
56
#define HEIGHT 25
56
 
57
 
57
#define MAX_CONTROL 20
58
#define MAX_CONTROL 20
58
 
59
 
59
/* Allow only 1 connection */
60
/* Allow only 1 connection */
60
static int client_connected = 0;
61
static int client_connected = 0;
61
 
62
 
62
static char *virt_addr;
63
static char *virt_addr;
63
 
64
 
64
static void msim_putc(const char c)
65
static void msim_putc(const char c)
65
{
66
{
66
    *virt_addr = c;
67
    *virt_addr = c;
67
}
68
}
68
 
69
 
69
static void msim_puts(char *str)
-
 
70
{
-
 
71
    while (*str)
-
 
72
        *virt_addr = *(str++);
-
 
73
}
-
 
74
 
-
 
75
static void msim_clrscr(void)
-
 
76
{
-
 
77
    msim_puts("\033[2J");
-
 
78
}
-
 
79
 
-
 
80
static void msim_goto(const unsigned int row, const unsigned int col)
-
 
81
{
-
 
82
    if ((row > HEIGHT) || (col > WIDTH))
-
 
83
        return;
-
 
84
   
-
 
85
    char control[MAX_CONTROL];
-
 
86
    snprintf(control, MAX_CONTROL, "\033[%u;%uf", row + 1, col + 1);
-
 
87
    msim_puts(control);
-
 
88
}
-
 
89
 
-
 
90
static void msim_set_style(const unsigned int mode)
-
 
91
{
-
 
92
    char control[MAX_CONTROL];
-
 
93
    snprintf(control, MAX_CONTROL, "\033[%um", mode);
-
 
94
    msim_puts(control);
-
 
95
}
-
 
96
 
-
 
97
static void msim_cursor_disable(void)
-
 
98
{
-
 
99
    msim_puts("\033[?25l");
-
 
100
}
-
 
101
 
-
 
102
static void msim_cursor_enable(void)
-
 
103
{
-
 
104
    msim_puts("\033[?25h");
-
 
105
}
-
 
106
 
-
 
107
static void msim_scroll(int i)
-
 
108
{
-
 
109
    if (i > 0) {
-
 
110
        msim_goto(HEIGHT - 1, 0);
-
 
111
        while (i--)
-
 
112
            msim_puts("\033D");
-
 
113
    } else if (i < 0) {
-
 
114
        msim_goto(0, 0);
-
 
115
        while (i++)
-
 
116
            msim_puts("\033M");
-
 
117
    }
-
 
118
}
-
 
119
 
-
 
120
static void msim_client_connection(ipc_callid_t iid, ipc_call_t *icall)
70
static void msim_client_connection(ipc_callid_t iid, ipc_call_t *icall)
121
{
71
{
122
    int retval;
72
    int retval;
123
    ipc_callid_t callid;
73
    ipc_callid_t callid;
124
    ipc_call_t call;
74
    ipc_call_t call;
125
    char c;
75
    char c;
126
    int lastcol = 0;
76
    int lastcol = 0;
127
    int lastrow = 0;
77
    int lastrow = 0;
128
    int newcol;
78
    int newcol;
129
    int newrow;
79
    int newrow;
130
    int fgcolor;
80
    int fgcolor;
131
    int bgcolor;
81
    int bgcolor;
132
    int i;
82
    int i;
133
 
83
 
134
    if (client_connected) {
84
    if (client_connected) {
135
        ipc_answer_0(iid, ELIMIT);
85
        ipc_answer_0(iid, ELIMIT);
136
        return;
86
        return;
137
    }
87
    }
138
   
88
   
139
    client_connected = 1;
89
    client_connected = 1;
140
    ipc_answer_0(iid, EOK);
90
    ipc_answer_0(iid, EOK);
141
   
91
   
142
    /* Clear the terminal, set scrolling region
92
    /* Clear the terminal, set scrolling region
143
       to 0 - 25 lines */
93
       to 0 - 25 lines */
144
    msim_clrscr();
94
    serial_clrscr();
145
    msim_goto(0, 0);
95
    serial_goto(0, 0);
146
    msim_puts("\033[0;25r");
96
    serial_puts("\033[0;25r");
147
   
97
   
148
    while (true) {
98
    while (true) {
149
        callid = async_get_call(&call);
99
        callid = async_get_call(&call);
150
        switch (IPC_GET_METHOD(call)) {
100
        switch (IPC_GET_METHOD(call)) {
151
        case IPC_M_PHONE_HUNGUP:
101
        case IPC_M_PHONE_HUNGUP:
152
            client_connected = 0;
102
            client_connected = 0;
153
            ipc_answer_0(callid, EOK);
103
            ipc_answer_0(callid, EOK);
154
            return;
104
            return;
155
        case FB_PUTCHAR:
105
        case FB_PUTCHAR:
156
            c = IPC_GET_ARG1(call);
106
            c = IPC_GET_ARG1(call);
157
            newrow = IPC_GET_ARG2(call);
107
            newrow = IPC_GET_ARG2(call);
158
            newcol = IPC_GET_ARG3(call);
108
            newcol = IPC_GET_ARG3(call);
159
            if ((lastcol != newcol) || (lastrow != newrow))
109
            if ((lastcol != newcol) || (lastrow != newrow))
160
                msim_goto(newrow, newcol);
110
                serial_goto(newrow, newcol);
161
            lastcol = newcol + 1;
111
            lastcol = newcol + 1;
162
            lastrow = newrow;
112
            lastrow = newrow;
163
            msim_putc(c);
113
            msim_putc(c);
164
            retval = 0;
114
            retval = 0;
165
            break;
115
            break;
166
        case FB_CURSOR_GOTO:
116
        case FB_CURSOR_GOTO:
167
            newrow = IPC_GET_ARG1(call);
117
            newrow = IPC_GET_ARG1(call);
168
            newcol = IPC_GET_ARG2(call);
118
            newcol = IPC_GET_ARG2(call);
169
            msim_goto(newrow, newcol);
119
            serial_goto(newrow, newcol);
170
            lastrow = newrow;
120
            lastrow = newrow;
171
            lastcol = newcol;
121
            lastcol = newcol;
172
            retval = 0;
122
            retval = 0;
173
            break;
123
            break;
174
        case FB_GET_CSIZE:
124
        case FB_GET_CSIZE:
175
            ipc_answer_2(callid, EOK, HEIGHT, WIDTH);
125
            ipc_answer_2(callid, EOK, HEIGHT, WIDTH);
176
            continue;
126
            continue;
177
        case FB_CLEAR:
127
        case FB_CLEAR:
178
            msim_clrscr();
128
            serial_clrscr();
179
            retval = 0;
129
            retval = 0;
180
            break;
130
            break;
181
        case FB_SET_STYLE:
131
        case FB_SET_STYLE:
182
            fgcolor = IPC_GET_ARG1(call);
132
            fgcolor = IPC_GET_ARG1(call);
183
            bgcolor = IPC_GET_ARG2(call);
133
            bgcolor = IPC_GET_ARG2(call);
184
            if (fgcolor < bgcolor)
134
            if (fgcolor < bgcolor)
185
                msim_set_style(0);
135
                serial_set_style(0);
186
            else
136
            else
187
                msim_set_style(7);
137
                serial_set_style(7);
188
            retval = 0;
138
            retval = 0;
189
            break;
139
            break;
190
        case FB_SCROLL:
140
        case FB_SCROLL:
191
            i = IPC_GET_ARG1(call);
141
            i = IPC_GET_ARG1(call);
192
            if ((i > HEIGHT) || (i < -HEIGHT)) {
142
            if ((i > HEIGHT) || (i < -HEIGHT)) {
193
                retval = EINVAL;
143
                retval = EINVAL;
194
                break;
144
                break;
195
            }
145
            }
196
            msim_scroll(i);
146
            serial_scroll(i);
197
            msim_goto(lastrow, lastcol);
147
            serial_goto(lastrow, lastcol);
198
            retval = 0;
148
            retval = 0;
199
            break;
149
            break;
200
        case FB_CURSOR_VISIBILITY:
150
        case FB_CURSOR_VISIBILITY:
201
            if(IPC_GET_ARG1(call))
151
            if(IPC_GET_ARG1(call))
202
                msim_cursor_enable();
152
                serial_cursor_enable();
203
            else
153
            else
204
                msim_cursor_disable();
154
                serial_cursor_disable();
205
            retval = 0;
155
            retval = 0;
206
            break;
156
            break;
207
        default:
157
        default:
208
            retval = ENOENT;
158
            retval = ENOENT;
209
        }
159
        }
210
        ipc_answer_0(callid, retval);
160
        ipc_answer_0(callid, retval);
211
    }
161
    }
212
}
162
}
213
 
163
 
214
int msim_init(void)
164
int msim_init(void)
215
{
165
{
216
    void *phys_addr = (void *) sysinfo_value("fb.address.physical");
166
    void *phys_addr = (void *) sysinfo_value("fb.address.physical");
217
    virt_addr = (char *) as_get_mappable_page(1);
167
    virt_addr = (char *) as_get_mappable_page(1);
218
   
168
   
219
    physmem_map(phys_addr, virt_addr, 1, AS_AREA_READ | AS_AREA_WRITE);
169
    physmem_map(phys_addr, virt_addr, 1, AS_AREA_READ | AS_AREA_WRITE);
220
   
170
   
-
 
171
    serial_console_init(msim_putc, WIDTH, HEIGHT);
-
 
172
   
221
    async_set_client_connection(msim_client_connection);
173
    async_set_client_connection(msim_client_connection);
222
    return 0;
174
    return 0;
223
}
175
}
224
 
176
 
225
/**
177
/**
226
 * @}
178
 * @}
227
 */
179
 */
228
 
180