Rev 3674 | Rev 4342 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1493 | palkovsky | 1 | /* |
2071 | jermar | 2 | * Copyright (c) 2006 Ondrej Palkovsky |
1493 | palkovsky | 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 | */ |
||
1649 | cejka | 28 | |
29 | /** @defgroup egafb EGA framebuffer |
||
30 | * @brief HelenOS EGA framebuffer. |
||
31 | * @ingroup fbs |
||
32 | * @{ |
||
33 | */ |
||
34 | /** @file |
||
35 | */ |
||
36 | |||
1562 | vana | 37 | #include <stdlib.h> |
38 | #include <unistd.h> |
||
1493 | palkovsky | 39 | #include <align.h> |
40 | #include <async.h> |
||
41 | #include <ipc/ipc.h> |
||
42 | #include <errno.h> |
||
43 | #include <stdio.h> |
||
44 | #include <ddi.h> |
||
45 | #include <sysinfo.h> |
||
46 | #include <as.h> |
||
47 | #include <ipc/fb.h> |
||
48 | #include <ipc/ipc.h> |
||
49 | #include <ipc/ns.h> |
||
50 | #include <ipc/services.h> |
||
1694 | palkovsky | 51 | #include <libarch/ddi.h> |
4338 | svoboda | 52 | #include <console/style.h> |
53 | #include <console/color.h> |
||
1493 | palkovsky | 54 | |
55 | #include "ega.h" |
||
1534 | palkovsky | 56 | #include "../console/screenbuffer.h" |
57 | #include "main.h" |
||
1493 | palkovsky | 58 | |
1562 | vana | 59 | #define MAX_SAVED_SCREENS 256 |
60 | typedef struct saved_screen { |
||
61 | short *data; |
||
62 | } saved_screen; |
||
1551 | vana | 63 | |
1562 | vana | 64 | saved_screen saved_screens[MAX_SAVED_SCREENS]; |
65 | |||
1551 | vana | 66 | #define EGA_IO_ADDRESS 0x3d4 |
67 | #define EGA_IO_SIZE 2 |
||
68 | |||
4338 | svoboda | 69 | int ega_normal_color = 0x0f; |
70 | int ega_inverted_color = 0xf0; |
||
1640 | palkovsky | 71 | |
3674 | svoboda | 72 | #define NORMAL_COLOR ega_normal_color |
73 | #define INVERTED_COLOR ega_inverted_color |
||
74 | |||
1640 | palkovsky | 75 | #define EGA_STYLE(fg,bg) ((fg) > (bg) ? NORMAL_COLOR : INVERTED_COLOR) |
76 | |||
1493 | palkovsky | 77 | /* Allow only 1 connection */ |
78 | static int client_connected = 0; |
||
79 | |||
80 | static unsigned int scr_width; |
||
81 | static unsigned int scr_height; |
||
82 | static char *scr_addr; |
||
83 | |||
3674 | svoboda | 84 | static unsigned int style; |
1534 | palkovsky | 85 | |
1493 | palkovsky | 86 | static void clrscr(void) |
87 | { |
||
88 | int i; |
||
89 | |||
2619 | jermar | 90 | for (i = 0; i < scr_width * scr_height; i++) { |
2025 | jermar | 91 | scr_addr[i * 2] = ' '; |
92 | scr_addr[i * 2 + 1] = style; |
||
1534 | palkovsky | 93 | } |
1493 | palkovsky | 94 | } |
95 | |||
1562 | vana | 96 | static void cursor_goto(unsigned int row, unsigned int col) |
1551 | vana | 97 | { |
98 | int ega_cursor; |
||
99 | |||
2025 | jermar | 100 | ega_cursor = col + scr_width * row; |
1551 | vana | 101 | |
2025 | jermar | 102 | outb(EGA_IO_ADDRESS, 0xe); |
103 | outb(EGA_IO_ADDRESS + 1, (ega_cursor >> 8) & 0xff); |
||
104 | outb(EGA_IO_ADDRESS, 0xf); |
||
1551 | vana | 105 | outb(EGA_IO_ADDRESS + 1, ega_cursor & 0xff); |
106 | } |
||
107 | |||
1562 | vana | 108 | static void cursor_disable(void) |
1551 | vana | 109 | { |
1694 | palkovsky | 110 | uint8_t stat; |
111 | |||
2025 | jermar | 112 | outb(EGA_IO_ADDRESS, 0xa); |
1551 | vana | 113 | stat=inb(EGA_IO_ADDRESS + 1); |
2025 | jermar | 114 | outb(EGA_IO_ADDRESS, 0xa); |
115 | outb(EGA_IO_ADDRESS + 1, stat | (1 << 5)); |
||
1551 | vana | 116 | } |
117 | |||
1562 | vana | 118 | static void cursor_enable(void) |
1551 | vana | 119 | { |
1694 | palkovsky | 120 | uint8_t stat; |
121 | |||
2025 | jermar | 122 | outb(EGA_IO_ADDRESS, 0xa); |
1551 | vana | 123 | stat=inb(EGA_IO_ADDRESS + 1); |
2025 | jermar | 124 | outb(EGA_IO_ADDRESS, 0xa); |
125 | outb(EGA_IO_ADDRESS + 1, stat & (~(1 << 5))); |
||
1551 | vana | 126 | } |
127 | |||
1562 | vana | 128 | static void scroll(int rows) |
129 | { |
||
130 | int i; |
||
131 | if (rows > 0) { |
||
4338 | svoboda | 132 | memmove(scr_addr, ((char *) scr_addr) + rows * scr_width * 2, |
2619 | jermar | 133 | scr_width * scr_height * 2 - rows * scr_width * 2); |
2025 | jermar | 134 | for (i = 0; i < rows * scr_width; i++) |
135 | (((short *) scr_addr) + scr_width * scr_height - rows * |
||
2619 | jermar | 136 | scr_width)[i] = ((style << 8) + ' '); |
1562 | vana | 137 | } else if (rows < 0) { |
4338 | svoboda | 138 | memmove(((char *)scr_addr) - rows * scr_width * 2, scr_addr, |
2619 | jermar | 139 | scr_width * scr_height * 2 + rows * scr_width * 2); |
2025 | jermar | 140 | for (i = 0; i < -rows * scr_width; i++) |
141 | ((short *)scr_addr)[i] = ((style << 8 ) + ' '); |
||
1562 | vana | 142 | } |
143 | } |
||
144 | |||
1493 | palkovsky | 145 | static void printchar(char c, unsigned int row, unsigned int col) |
146 | { |
||
2025 | jermar | 147 | scr_addr[(row * scr_width + col) * 2] = c; |
148 | scr_addr[(row * scr_width + col) * 2 + 1] = style; |
||
1551 | vana | 149 | |
2025 | jermar | 150 | cursor_goto(row, col + 1); |
1493 | palkovsky | 151 | } |
152 | |||
1534 | palkovsky | 153 | static void draw_text_data(keyfield_t *data) |
154 | { |
||
155 | int i; |
||
156 | |||
2025 | jermar | 157 | for (i = 0; i < scr_width * scr_height; i++) { |
158 | scr_addr[i * 2] = data[i].character; |
||
4338 | svoboda | 159 | /* FIXME |
2025 | jermar | 160 | scr_addr[i * 2 + 1] = EGA_STYLE(data[i].style.fg_color, |
2619 | jermar | 161 | data[i].style.bg_color); |
4338 | svoboda | 162 | */ |
1534 | palkovsky | 163 | } |
164 | } |
||
165 | |||
1562 | vana | 166 | static int save_screen(void) |
167 | { |
||
168 | int i; |
||
1720 | palkovsky | 169 | |
2619 | jermar | 170 | for (i = 0; (i < MAX_SAVED_SCREENS) && (saved_screens[i].data); i++) |
1720 | palkovsky | 171 | ; |
1565 | vana | 172 | if (i == MAX_SAVED_SCREENS) |
1564 | vana | 173 | return EINVAL; |
2025 | jermar | 174 | if (!(saved_screens[i].data = malloc(2 * scr_width * scr_height))) |
1564 | vana | 175 | return ENOMEM; |
1720 | palkovsky | 176 | memcpy(saved_screens[i].data, scr_addr, 2 * scr_width * scr_height); |
177 | |||
1562 | vana | 178 | return i; |
179 | } |
||
180 | |||
181 | static int print_screen(int i) |
||
182 | { |
||
1565 | vana | 183 | if (saved_screens[i].data) |
2025 | jermar | 184 | memcpy(scr_addr, saved_screens[i].data, 2 * scr_width * |
2619 | jermar | 185 | scr_height); |
2025 | jermar | 186 | else |
187 | return EINVAL; |
||
1562 | vana | 188 | return i; |
189 | } |
||
190 | |||
191 | |||
1493 | palkovsky | 192 | static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall) |
193 | { |
||
194 | int retval; |
||
195 | ipc_callid_t callid; |
||
196 | ipc_call_t call; |
||
197 | char c; |
||
198 | unsigned int row, col; |
||
1534 | palkovsky | 199 | int bgcolor,fgcolor; |
200 | keyfield_t *interbuf = NULL; |
||
201 | size_t intersize = 0; |
||
1562 | vana | 202 | int i; |
1493 | palkovsky | 203 | |
204 | if (client_connected) { |
||
2619 | jermar | 205 | ipc_answer_0(iid, ELIMIT); |
1493 | palkovsky | 206 | return; |
207 | } |
||
208 | client_connected = 1; |
||
2619 | jermar | 209 | ipc_answer_0(iid, EOK); /* Accept connection */ |
1493 | palkovsky | 210 | |
211 | while (1) { |
||
212 | callid = async_get_call(&call); |
||
213 | switch (IPC_GET_METHOD(call)) { |
||
214 | case IPC_M_PHONE_HUNGUP: |
||
215 | client_connected = 0; |
||
2619 | jermar | 216 | ipc_answer_0(callid, EOK); |
1493 | palkovsky | 217 | return; /* Exit thread */ |
2677 | jermar | 218 | case IPC_M_SHARE_OUT: |
1534 | palkovsky | 219 | /* We accept one area for data interchange */ |
220 | intersize = IPC_GET_ARG2(call); |
||
2025 | jermar | 221 | if (intersize >= scr_width * scr_height * |
2619 | jermar | 222 | sizeof(*interbuf)) { |
223 | receive_comm_area(callid, &call, |
||
224 | (void *) &interbuf); |
||
1534 | palkovsky | 225 | continue; |
226 | } |
||
227 | retval = EINVAL; |
||
228 | break; |
||
229 | case FB_DRAW_TEXT_DATA: |
||
230 | if (!interbuf) { |
||
231 | retval = EINVAL; |
||
232 | break; |
||
233 | } |
||
234 | draw_text_data(interbuf); |
||
235 | retval = 0; |
||
236 | break; |
||
1493 | palkovsky | 237 | case FB_GET_CSIZE: |
2619 | jermar | 238 | ipc_answer_2(callid, EOK, scr_height, scr_width); |
1493 | palkovsky | 239 | continue; |
240 | case FB_CLEAR: |
||
241 | clrscr(); |
||
242 | retval = 0; |
||
243 | break; |
||
244 | case FB_PUTCHAR: |
||
245 | c = IPC_GET_ARG1(call); |
||
246 | row = IPC_GET_ARG2(call); |
||
247 | col = IPC_GET_ARG3(call); |
||
1534 | palkovsky | 248 | if (col >= scr_width || row >= scr_height) { |
1493 | palkovsky | 249 | retval = EINVAL; |
250 | break; |
||
251 | } |
||
2025 | jermar | 252 | printchar(c, row, col); |
1493 | palkovsky | 253 | retval = 0; |
254 | break; |
||
1551 | vana | 255 | case FB_CURSOR_GOTO: |
256 | row = IPC_GET_ARG1(call); |
||
257 | col = IPC_GET_ARG2(call); |
||
258 | if (row >= scr_height || col >= scr_width) { |
||
259 | retval = EINVAL; |
||
260 | break; |
||
261 | } |
||
2025 | jermar | 262 | cursor_goto(row, col); |
1551 | vana | 263 | retval = 0; |
264 | break; |
||
1562 | vana | 265 | case FB_SCROLL: |
266 | i = IPC_GET_ARG1(call); |
||
2025 | jermar | 267 | if (i > scr_height || i < -((int) scr_height)) { |
1562 | vana | 268 | retval = EINVAL; |
269 | break; |
||
270 | } |
||
271 | scroll(i); |
||
272 | retval = 0; |
||
273 | break; |
||
1551 | vana | 274 | case FB_CURSOR_VISIBILITY: |
275 | if(IPC_GET_ARG1(call)) |
||
276 | cursor_enable(); |
||
277 | else |
||
278 | cursor_disable(); |
||
279 | retval = 0; |
||
280 | break; |
||
1534 | palkovsky | 281 | case FB_SET_STYLE: |
4338 | svoboda | 282 | retval = 0; |
283 | switch (IPC_GET_ARG1(call)) { |
||
284 | case STYLE_NORMAL: style = INVERTED_COLOR; break; |
||
285 | case STYLE_EMPHASIS: style = INVERTED_COLOR | 4; break; |
||
286 | default: retval = EINVAL; |
||
287 | } |
||
288 | break; |
||
289 | case FB_SET_COLOR: |
||
1534 | palkovsky | 290 | fgcolor = IPC_GET_ARG1(call); |
291 | bgcolor = IPC_GET_ARG2(call); |
||
4338 | svoboda | 292 | style = (fgcolor & 7) | ((bgcolor & 7) << 4); |
293 | if (IPC_GET_ARG3(call) & CATTR_BRIGHT) |
||
294 | style = style | 0x08; |
||
295 | retval = 0; |
||
296 | break; |
||
297 | case FB_SET_RGB_COLOR: |
||
298 | fgcolor = IPC_GET_ARG1(call); |
||
299 | bgcolor = IPC_GET_ARG2(call); |
||
1640 | palkovsky | 300 | style = EGA_STYLE(fgcolor, bgcolor); |
1720 | palkovsky | 301 | retval = 0; |
1577 | cejka | 302 | break; |
1562 | vana | 303 | case FB_VP_DRAW_PIXMAP: |
304 | i = IPC_GET_ARG2(call); |
||
305 | retval = print_screen(i); |
||
306 | break; |
||
307 | case FB_VP2PIXMAP: |
||
308 | retval = save_screen(); |
||
309 | break; |
||
310 | case FB_DROP_PIXMAP: |
||
311 | i = IPC_GET_ARG1(call); |
||
312 | if (i >= MAX_SAVED_SCREENS) { |
||
313 | retval = EINVAL; |
||
314 | break; |
||
315 | } |
||
316 | if (saved_screens[i].data) { |
||
317 | free(saved_screens[i].data); |
||
318 | saved_screens[i].data = NULL; |
||
319 | } |
||
1720 | palkovsky | 320 | retval = 0; |
1562 | vana | 321 | break; |
322 | |||
1493 | palkovsky | 323 | default: |
324 | retval = ENOENT; |
||
325 | } |
||
2619 | jermar | 326 | ipc_answer_0(callid, retval); |
1493 | palkovsky | 327 | } |
328 | } |
||
329 | |||
330 | int ega_init(void) |
||
331 | { |
||
332 | void *ega_ph_addr; |
||
1501 | palkovsky | 333 | size_t sz; |
1493 | palkovsky | 334 | |
2025 | jermar | 335 | ega_ph_addr = (void *) sysinfo_value("fb.address.physical"); |
336 | scr_width = sysinfo_value("fb.width"); |
||
337 | scr_height = sysinfo_value("fb.height"); |
||
3674 | svoboda | 338 | if(sysinfo_value("fb.blinking")) |
339 | { |
||
4338 | svoboda | 340 | ega_normal_color &= 0x77; |
341 | ega_inverted_color &= 0x77; |
||
3674 | svoboda | 342 | } |
343 | style = NORMAL_COLOR; |
||
344 | |||
2015 | jermar | 345 | iospace_enable(task_get_id(), (void *) EGA_IO_ADDRESS, 2); |
1493 | palkovsky | 346 | |
2015 | jermar | 347 | sz = scr_width * scr_height * 2; |
2141 | jermar | 348 | scr_addr = as_get_mappable_page(sz); |
1493 | palkovsky | 349 | |
2015 | jermar | 350 | physmem_map(ega_ph_addr, scr_addr, ALIGN_UP(sz, PAGE_SIZE) >> |
2619 | jermar | 351 | PAGE_WIDTH, AS_AREA_READ | AS_AREA_WRITE); |
1493 | palkovsky | 352 | |
353 | async_set_client_connection(ega_client_connection); |
||
354 | |||
355 | return 0; |
||
356 | } |
||
1551 | vana | 357 | |
1649 | cejka | 358 | |
359 | /** |
||
360 | * @} |
||
361 | */ |