Rev 4164 | Rev 4167 | 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> |
| 3767 | svoboda | 52 | #include <console/style.h> |
| 53 | #include <console/color.h> |
||
| 4025 | jermar | 54 | #include <sys/types.h> |
| 1493 | palkovsky | 55 | |
| 56 | #include "ega.h" |
||
| 1534 | palkovsky | 57 | #include "../console/screenbuffer.h" |
| 58 | #include "main.h" |
||
| 1493 | palkovsky | 59 | |
| 1562 | vana | 60 | #define MAX_SAVED_SCREENS 256 |
| 61 | typedef struct saved_screen { |
||
| 62 | short *data; |
||
| 63 | } saved_screen; |
||
| 1551 | vana | 64 | |
| 1562 | vana | 65 | saved_screen saved_screens[MAX_SAVED_SCREENS]; |
| 66 | |||
| 4025 | jermar | 67 | #define EGA_IO_BASE ((ioport8_t *) 0x3d4) |
| 1551 | vana | 68 | #define EGA_IO_SIZE 2 |
| 69 | |||
| 3767 | svoboda | 70 | int ega_normal_color = 0x0f; |
| 71 | int ega_inverted_color = 0xf0; |
||
| 1640 | palkovsky | 72 | |
| 3657 | vana | 73 | #define NORMAL_COLOR ega_normal_color |
| 74 | #define INVERTED_COLOR ega_inverted_color |
||
| 75 | |||
| 1493 | palkovsky | 76 | /* Allow only 1 connection */ |
| 77 | static int client_connected = 0; |
||
| 78 | |||
| 79 | static unsigned int scr_width; |
||
| 80 | static unsigned int scr_height; |
||
| 81 | static char *scr_addr; |
||
| 82 | |||
| 3657 | vana | 83 | static unsigned int style; |
| 1534 | palkovsky | 84 | |
| 3866 | svoboda | 85 | static unsigned attr_to_ega_style(const attrs_t *a); |
| 86 | |||
| 1493 | palkovsky | 87 | static void clrscr(void) |
| 88 | { |
||
| 89 | int i; |
||
| 90 | |||
| 2619 | jermar | 91 | for (i = 0; i < scr_width * scr_height; i++) { |
| 2025 | jermar | 92 | scr_addr[i * 2] = ' '; |
| 93 | scr_addr[i * 2 + 1] = style; |
||
| 1534 | palkovsky | 94 | } |
| 1493 | palkovsky | 95 | } |
| 96 | |||
| 1562 | vana | 97 | static void cursor_goto(unsigned int row, unsigned int col) |
| 1551 | vana | 98 | { |
| 99 | int ega_cursor; |
||
| 100 | |||
| 2025 | jermar | 101 | ega_cursor = col + scr_width * row; |
| 1551 | vana | 102 | |
| 4025 | jermar | 103 | pio_write_8(EGA_IO_BASE, 0xe); |
| 104 | pio_write_8(EGA_IO_BASE + 1, (ega_cursor >> 8) & 0xff); |
||
| 105 | pio_write_8(EGA_IO_BASE, 0xf); |
||
| 106 | pio_write_8(EGA_IO_BASE + 1, ega_cursor & 0xff); |
||
| 1551 | vana | 107 | } |
| 108 | |||
| 1562 | vana | 109 | static void cursor_disable(void) |
| 1551 | vana | 110 | { |
| 1694 | palkovsky | 111 | uint8_t stat; |
| 112 | |||
| 4025 | jermar | 113 | pio_write_8(EGA_IO_BASE, 0xa); |
| 114 | stat = pio_read_8(EGA_IO_BASE + 1); |
||
| 115 | pio_write_8(EGA_IO_BASE, 0xa); |
||
| 116 | pio_write_8(EGA_IO_BASE + 1, stat | (1 << 5)); |
||
| 1551 | vana | 117 | } |
| 118 | |||
| 1562 | vana | 119 | static void cursor_enable(void) |
| 1551 | vana | 120 | { |
| 1694 | palkovsky | 121 | uint8_t stat; |
| 122 | |||
| 4025 | jermar | 123 | pio_write_8(EGA_IO_BASE, 0xa); |
| 124 | stat = pio_read_8(EGA_IO_BASE + 1); |
||
| 125 | pio_write_8(EGA_IO_BASE, 0xa); |
||
| 126 | pio_write_8(EGA_IO_BASE + 1, stat & (~(1 << 5))); |
||
| 1551 | vana | 127 | } |
| 128 | |||
| 1562 | vana | 129 | static void scroll(int rows) |
| 130 | { |
||
| 131 | int i; |
||
| 132 | if (rows > 0) { |
||
| 3755 | svoboda | 133 | memmove(scr_addr, ((char *) scr_addr) + rows * scr_width * 2, |
| 2619 | jermar | 134 | scr_width * scr_height * 2 - rows * scr_width * 2); |
| 2025 | jermar | 135 | for (i = 0; i < rows * scr_width; i++) |
| 136 | (((short *) scr_addr) + scr_width * scr_height - rows * |
||
| 2619 | jermar | 137 | scr_width)[i] = ((style << 8) + ' '); |
| 1562 | vana | 138 | } else if (rows < 0) { |
| 3755 | svoboda | 139 | memmove(((char *)scr_addr) - rows * scr_width * 2, scr_addr, |
| 2619 | jermar | 140 | scr_width * scr_height * 2 + rows * scr_width * 2); |
| 2025 | jermar | 141 | for (i = 0; i < -rows * scr_width; i++) |
| 142 | ((short *)scr_addr)[i] = ((style << 8 ) + ' '); |
||
| 1562 | vana | 143 | } |
| 144 | } |
||
| 145 | |||
| 1493 | palkovsky | 146 | static void printchar(char c, unsigned int row, unsigned int col) |
| 147 | { |
||
| 2025 | jermar | 148 | scr_addr[(row * scr_width + col) * 2] = c; |
| 149 | scr_addr[(row * scr_width + col) * 2 + 1] = style; |
||
| 1551 | vana | 150 | |
| 2025 | jermar | 151 | cursor_goto(row, col + 1); |
| 1493 | palkovsky | 152 | } |
| 153 | |||
| 1534 | palkovsky | 154 | static void draw_text_data(keyfield_t *data) |
| 155 | { |
||
| 156 | int i; |
||
| 157 | |||
| 2025 | jermar | 158 | for (i = 0; i < scr_width * scr_height; i++) { |
| 159 | scr_addr[i * 2] = data[i].character; |
||
| 3866 | svoboda | 160 | scr_addr[i * 2 + 1] = attr_to_ega_style(&data[i].attrs); |
| 1534 | palkovsky | 161 | } |
| 162 | } |
||
| 163 | |||
| 1562 | vana | 164 | static int save_screen(void) |
| 165 | { |
||
| 166 | int i; |
||
| 1720 | palkovsky | 167 | |
| 2619 | jermar | 168 | for (i = 0; (i < MAX_SAVED_SCREENS) && (saved_screens[i].data); i++) |
| 1720 | palkovsky | 169 | ; |
| 1565 | vana | 170 | if (i == MAX_SAVED_SCREENS) |
| 1564 | vana | 171 | return EINVAL; |
| 2025 | jermar | 172 | if (!(saved_screens[i].data = malloc(2 * scr_width * scr_height))) |
| 1564 | vana | 173 | return ENOMEM; |
| 1720 | palkovsky | 174 | memcpy(saved_screens[i].data, scr_addr, 2 * scr_width * scr_height); |
| 175 | |||
| 1562 | vana | 176 | return i; |
| 177 | } |
||
| 178 | |||
| 179 | static int print_screen(int i) |
||
| 180 | { |
||
| 1565 | vana | 181 | if (saved_screens[i].data) |
| 2025 | jermar | 182 | memcpy(scr_addr, saved_screens[i].data, 2 * scr_width * |
| 2619 | jermar | 183 | scr_height); |
| 2025 | jermar | 184 | else |
| 185 | return EINVAL; |
||
| 1562 | vana | 186 | return i; |
| 187 | } |
||
| 188 | |||
| 3866 | svoboda | 189 | static int style_to_ega_style(int style) |
| 190 | { |
||
| 191 | unsigned int ega_style; |
||
| 1562 | vana | 192 | |
| 3866 | svoboda | 193 | switch (style) { |
| 194 | case STYLE_NORMAL: |
||
| 195 | ega_style = INVERTED_COLOR; |
||
| 196 | break; |
||
| 197 | case STYLE_EMPHASIS: |
||
| 198 | ega_style = INVERTED_COLOR | 4; |
||
| 199 | break; |
||
| 200 | default: |
||
| 201 | return INVERTED_COLOR; |
||
| 202 | } |
||
| 203 | |||
| 204 | return ega_style; |
||
| 205 | } |
||
| 206 | |||
| 207 | static unsigned int color_to_ega_style(int fg_color, int bg_color, int attr) |
||
| 208 | { |
||
| 209 | unsigned int style; |
||
| 210 | |||
| 211 | style = (fg_color & 7) | ((bg_color & 7) << 4); |
||
| 212 | if (attr & CATTR_BRIGHT) |
||
| 213 | style = style | 0x08; |
||
| 214 | |||
| 215 | return style; |
||
| 216 | } |
||
| 217 | |||
| 218 | static unsigned int rgb_to_ega_style(uint32_t fg, uint32_t bg) |
||
| 219 | { |
||
| 220 | return (fg > bg) ? NORMAL_COLOR : INVERTED_COLOR; |
||
| 221 | } |
||
| 222 | |||
| 223 | static unsigned attr_to_ega_style(const attrs_t *a) |
||
| 224 | { |
||
| 225 | switch (a->t) { |
||
| 226 | case at_style: return style_to_ega_style(a->a.s.style); |
||
| 227 | case at_rgb: return rgb_to_ega_style(a->a.r.fg_color, a->a.r.bg_color); |
||
| 228 | case at_idx: return color_to_ega_style(a->a.i.fg_color, |
||
| 229 | a->a.i.bg_color, a->a.i.flags); |
||
| 230 | default: return INVERTED_COLOR; |
||
| 231 | } |
||
| 232 | } |
||
| 233 | |||
| 4165 | svoboda | 234 | #define FB_WRITE_BUF_SIZE 256 |
| 235 | static char fb_write_buf[FB_WRITE_BUF_SIZE]; |
||
| 236 | |||
| 237 | static void fb_write(ipc_callid_t rid, ipc_call_t *request) |
||
| 238 | { |
||
| 239 | int row, col; |
||
| 240 | ipc_callid_t callid; |
||
| 241 | size_t len; |
||
| 242 | size_t i; |
||
| 243 | |||
| 244 | row = IPC_GET_ARG1(*request); |
||
| 245 | col = IPC_GET_ARG2(*request); |
||
| 246 | |||
| 247 | if ((col >= scr_width) || (row >= scr_height)) { |
||
| 248 | ipc_answer_0(callid, EINVAL); |
||
| 249 | ipc_answer_0(rid, EINVAL); |
||
| 250 | return; |
||
| 251 | } |
||
| 252 | |||
| 253 | if (!ipc_data_write_receive(&callid, &len)) { |
||
| 254 | ipc_answer_0(callid, EINVAL); |
||
| 255 | ipc_answer_0(rid, EINVAL); |
||
| 256 | return; |
||
| 257 | } |
||
| 258 | |||
| 259 | if (len > FB_WRITE_BUF_SIZE) |
||
| 260 | len = FB_WRITE_BUF_SIZE; |
||
| 261 | if (len >= scr_width - col) |
||
| 262 | len = scr_width - col; |
||
| 263 | |||
| 264 | (void) ipc_data_write_finalize(callid, fb_write_buf, len); |
||
| 265 | |||
| 266 | for (i = 0; i < len; i++) { |
||
| 267 | printchar(fb_write_buf[i], row, col++); |
||
| 268 | } |
||
| 269 | |||
| 270 | ipc_answer_1(rid, EOK, len); |
||
| 271 | } |
||
| 272 | |||
| 1493 | palkovsky | 273 | static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall) |
| 274 | { |
||
| 275 | int retval; |
||
| 276 | ipc_callid_t callid; |
||
| 277 | ipc_call_t call; |
||
| 278 | char c; |
||
| 279 | unsigned int row, col; |
||
| 3866 | svoboda | 280 | int bg_color, fg_color, attr; |
| 281 | uint32_t bg_rgb, fg_rgb; |
||
| 1534 | palkovsky | 282 | keyfield_t *interbuf = NULL; |
| 283 | size_t intersize = 0; |
||
| 1562 | vana | 284 | int i; |
| 1493 | palkovsky | 285 | |
| 286 | if (client_connected) { |
||
| 2619 | jermar | 287 | ipc_answer_0(iid, ELIMIT); |
| 1493 | palkovsky | 288 | return; |
| 289 | } |
||
| 290 | client_connected = 1; |
||
| 2619 | jermar | 291 | ipc_answer_0(iid, EOK); /* Accept connection */ |
| 1493 | palkovsky | 292 | |
| 293 | while (1) { |
||
| 294 | callid = async_get_call(&call); |
||
| 295 | switch (IPC_GET_METHOD(call)) { |
||
| 296 | case IPC_M_PHONE_HUNGUP: |
||
| 297 | client_connected = 0; |
||
| 2619 | jermar | 298 | ipc_answer_0(callid, EOK); |
| 1493 | palkovsky | 299 | return; /* Exit thread */ |
| 2677 | jermar | 300 | case IPC_M_SHARE_OUT: |
| 1534 | palkovsky | 301 | /* We accept one area for data interchange */ |
| 302 | intersize = IPC_GET_ARG2(call); |
||
| 2025 | jermar | 303 | if (intersize >= scr_width * scr_height * |
| 2619 | jermar | 304 | sizeof(*interbuf)) { |
| 305 | receive_comm_area(callid, &call, |
||
| 306 | (void *) &interbuf); |
||
| 1534 | palkovsky | 307 | continue; |
| 308 | } |
||
| 309 | retval = EINVAL; |
||
| 310 | break; |
||
| 311 | case FB_DRAW_TEXT_DATA: |
||
| 312 | if (!interbuf) { |
||
| 313 | retval = EINVAL; |
||
| 314 | break; |
||
| 315 | } |
||
| 316 | draw_text_data(interbuf); |
||
| 317 | retval = 0; |
||
| 318 | break; |
||
| 1493 | palkovsky | 319 | case FB_GET_CSIZE: |
| 2619 | jermar | 320 | ipc_answer_2(callid, EOK, scr_height, scr_width); |
| 1493 | palkovsky | 321 | continue; |
| 322 | case FB_CLEAR: |
||
| 323 | clrscr(); |
||
| 324 | retval = 0; |
||
| 325 | break; |
||
| 326 | case FB_PUTCHAR: |
||
| 327 | c = IPC_GET_ARG1(call); |
||
| 328 | row = IPC_GET_ARG2(call); |
||
| 329 | col = IPC_GET_ARG3(call); |
||
| 1534 | palkovsky | 330 | if (col >= scr_width || row >= scr_height) { |
| 1493 | palkovsky | 331 | retval = EINVAL; |
| 332 | break; |
||
| 333 | } |
||
| 2025 | jermar | 334 | printchar(c, row, col); |
| 1493 | palkovsky | 335 | retval = 0; |
| 336 | break; |
||
| 4165 | svoboda | 337 | case FB_WRITE: |
| 338 | fb_write(callid, &call); |
||
| 339 | |||
| 340 | /* Message already answered */ |
||
| 341 | continue; |
||
| 1551 | vana | 342 | case FB_CURSOR_GOTO: |
| 343 | row = IPC_GET_ARG1(call); |
||
| 344 | col = IPC_GET_ARG2(call); |
||
| 345 | if (row >= scr_height || col >= scr_width) { |
||
| 346 | retval = EINVAL; |
||
| 347 | break; |
||
| 348 | } |
||
| 2025 | jermar | 349 | cursor_goto(row, col); |
| 1551 | vana | 350 | retval = 0; |
| 351 | break; |
||
| 1562 | vana | 352 | case FB_SCROLL: |
| 353 | i = IPC_GET_ARG1(call); |
||
| 2025 | jermar | 354 | if (i > scr_height || i < -((int) scr_height)) { |
| 1562 | vana | 355 | retval = EINVAL; |
| 356 | break; |
||
| 357 | } |
||
| 358 | scroll(i); |
||
| 359 | retval = 0; |
||
| 360 | break; |
||
| 1551 | vana | 361 | case FB_CURSOR_VISIBILITY: |
| 4006 | decky | 362 | if (IPC_GET_ARG1(call)) |
| 1551 | vana | 363 | cursor_enable(); |
| 364 | else |
||
| 365 | cursor_disable(); |
||
| 366 | retval = 0; |
||
| 367 | break; |
||
| 1534 | palkovsky | 368 | case FB_SET_STYLE: |
| 3866 | svoboda | 369 | style = style_to_ega_style(IPC_GET_ARG1(call)); |
| 3767 | svoboda | 370 | retval = 0; |
| 371 | break; |
||
| 372 | case FB_SET_COLOR: |
||
| 3866 | svoboda | 373 | fg_color = IPC_GET_ARG1(call); |
| 374 | bg_color = IPC_GET_ARG2(call); |
||
| 375 | attr = IPC_GET_ARG3(call); |
||
| 376 | style = color_to_ega_style(fg_color, bg_color, attr); |
||
| 3767 | svoboda | 377 | retval = 0; |
| 378 | break; |
||
| 379 | case FB_SET_RGB_COLOR: |
||
| 3866 | svoboda | 380 | fg_rgb = IPC_GET_ARG1(call); |
| 381 | bg_rgb = IPC_GET_ARG2(call); |
||
| 382 | style = rgb_to_ega_style(fg_rgb, bg_rgb); |
||
| 1720 | palkovsky | 383 | retval = 0; |
| 1577 | cejka | 384 | break; |
| 1562 | vana | 385 | case FB_VP_DRAW_PIXMAP: |
| 386 | i = IPC_GET_ARG2(call); |
||
| 387 | retval = print_screen(i); |
||
| 388 | break; |
||
| 389 | case FB_VP2PIXMAP: |
||
| 390 | retval = save_screen(); |
||
| 391 | break; |
||
| 392 | case FB_DROP_PIXMAP: |
||
| 393 | i = IPC_GET_ARG1(call); |
||
| 394 | if (i >= MAX_SAVED_SCREENS) { |
||
| 395 | retval = EINVAL; |
||
| 396 | break; |
||
| 397 | } |
||
| 398 | if (saved_screens[i].data) { |
||
| 399 | free(saved_screens[i].data); |
||
| 400 | saved_screens[i].data = NULL; |
||
| 401 | } |
||
| 1720 | palkovsky | 402 | retval = 0; |
| 1562 | vana | 403 | break; |
| 404 | |||
| 1493 | palkovsky | 405 | default: |
| 4164 | svoboda | 406 | retval = EINVAL; |
| 1493 | palkovsky | 407 | } |
| 2619 | jermar | 408 | ipc_answer_0(callid, retval); |
| 1493 | palkovsky | 409 | } |
| 410 | } |
||
| 411 | |||
| 412 | int ega_init(void) |
||
| 413 | { |
||
| 414 | void *ega_ph_addr; |
||
| 1501 | palkovsky | 415 | size_t sz; |
| 1493 | palkovsky | 416 | |
| 2025 | jermar | 417 | ega_ph_addr = (void *) sysinfo_value("fb.address.physical"); |
| 418 | scr_width = sysinfo_value("fb.width"); |
||
| 419 | scr_height = sysinfo_value("fb.height"); |
||
| 3866 | svoboda | 420 | |
| 3908 | decky | 421 | if (sysinfo_value("fb.blinking")) { |
| 3866 | svoboda | 422 | ega_normal_color &= 0x77; |
| 423 | ega_inverted_color &= 0x77; |
||
| 3657 | vana | 424 | } |
| 3866 | svoboda | 425 | |
| 3657 | vana | 426 | style = NORMAL_COLOR; |
| 427 | |||
| 4025 | jermar | 428 | iospace_enable(task_get_id(), (void *) EGA_IO_BASE, 2); |
| 1493 | palkovsky | 429 | |
| 2015 | jermar | 430 | sz = scr_width * scr_height * 2; |
| 2141 | jermar | 431 | scr_addr = as_get_mappable_page(sz); |
| 1493 | palkovsky | 432 | |
| 3908 | decky | 433 | if (physmem_map(ega_ph_addr, scr_addr, ALIGN_UP(sz, PAGE_SIZE) >> |
| 434 | PAGE_WIDTH, AS_AREA_READ | AS_AREA_WRITE) != 0) |
||
| 435 | return -1; |
||
| 1493 | palkovsky | 436 | |
| 437 | async_set_client_connection(ega_client_connection); |
||
| 438 | |||
| 439 | return 0; |
||
| 440 | } |
||
| 1551 | vana | 441 | |
| 1649 | cejka | 442 | |
| 4006 | decky | 443 | /** |
| 1649 | cejka | 444 | * @} |
| 445 | */ |