Rev 3675 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3675 | Rev 4377 | ||
|---|---|---|---|
| Line 47... | Line 47... | ||
| 47 | #include <ipc/fb.h> |
47 | #include <ipc/fb.h> |
| 48 | #include <ipc/ipc.h> |
48 | #include <ipc/ipc.h> |
| 49 | #include <ipc/ns.h> |
49 | #include <ipc/ns.h> |
| 50 | #include <ipc/services.h> |
50 | #include <ipc/services.h> |
| 51 | #include <libarch/ddi.h> |
51 | #include <libarch/ddi.h> |
| - | 52 | #include <console/style.h> |
|
| - | 53 | #include <console/color.h> |
|
| - | 54 | #include <sys/types.h> |
|
| 52 | 55 | ||
| 53 | #include "ega.h" |
56 | #include "ega.h" |
| 54 | #include "../console/screenbuffer.h" |
57 | #include "../console/screenbuffer.h" |
| 55 | #include "main.h" |
58 | #include "main.h" |
| 56 | 59 | ||
| Line 59... | Line 62... | ||
| 59 | short *data; |
62 | short *data; |
| 60 | } saved_screen; |
63 | } saved_screen; |
| 61 | 64 | ||
| 62 | saved_screen saved_screens[MAX_SAVED_SCREENS]; |
65 | saved_screen saved_screens[MAX_SAVED_SCREENS]; |
| 63 | 66 | ||
| 64 | #define EGA_IO_ADDRESS 0x3d4 |
67 | #define EGA_IO_BASE ((ioport8_t *) 0x3d4) |
| 65 | #define EGA_IO_SIZE 2 |
68 | #define EGA_IO_SIZE 2 |
| 66 | 69 | ||
| 67 | int ega_normal_color=0x0f; |
70 | int ega_normal_color = 0x0f; |
| 68 | int ega_inverted_color=0xf0; |
71 | int ega_inverted_color = 0xf0; |
| 69 | 72 | ||
| 70 | #define NORMAL_COLOR ega_normal_color |
73 | #define NORMAL_COLOR ega_normal_color |
| 71 | #define INVERTED_COLOR ega_inverted_color |
74 | #define INVERTED_COLOR ega_inverted_color |
| 72 | 75 | ||
| 73 | #define EGA_STYLE(fg,bg) ((fg) > (bg) ? NORMAL_COLOR : INVERTED_COLOR) |
- | |
| 74 | - | ||
| 75 | /* Allow only 1 connection */ |
76 | /* Allow only 1 connection */ |
| 76 | static int client_connected = 0; |
77 | static int client_connected = 0; |
| 77 | 78 | ||
| 78 | static unsigned int scr_width; |
79 | static unsigned int scr_width; |
| 79 | static unsigned int scr_height; |
80 | static unsigned int scr_height; |
| 80 | static char *scr_addr; |
81 | static uint8_t *scr_addr; |
| 81 | 82 | ||
| 82 | static unsigned int style; |
83 | static unsigned int style; |
| 83 | 84 | ||
| - | 85 | static unsigned attr_to_ega_style(const attrs_t *a); |
|
| - | 86 | static uint8_t ega_glyph(wchar_t ch); |
|
| - | 87 | ||
| 84 | static void clrscr(void) |
88 | static void clrscr(void) |
| 85 | { |
89 | { |
| 86 | int i; |
90 | int i; |
| 87 | 91 | ||
| 88 | for (i = 0; i < scr_width * scr_height; i++) { |
92 | for (i = 0; i < scr_width * scr_height; i++) { |
| Line 95... | Line 99... | ||
| 95 | { |
99 | { |
| 96 | int ega_cursor; |
100 | int ega_cursor; |
| 97 | 101 | ||
| 98 | ega_cursor = col + scr_width * row; |
102 | ega_cursor = col + scr_width * row; |
| 99 | 103 | ||
| 100 | outb(EGA_IO_ADDRESS, 0xe); |
104 | pio_write_8(EGA_IO_BASE, 0xe); |
| 101 | outb(EGA_IO_ADDRESS + 1, (ega_cursor >> 8) & 0xff); |
105 | pio_write_8(EGA_IO_BASE + 1, (ega_cursor >> 8) & 0xff); |
| 102 | outb(EGA_IO_ADDRESS, 0xf); |
106 | pio_write_8(EGA_IO_BASE, 0xf); |
| 103 | outb(EGA_IO_ADDRESS + 1, ega_cursor & 0xff); |
107 | pio_write_8(EGA_IO_BASE + 1, ega_cursor & 0xff); |
| 104 | } |
108 | } |
| 105 | 109 | ||
| 106 | static void cursor_disable(void) |
110 | static void cursor_disable(void) |
| 107 | { |
111 | { |
| 108 | uint8_t stat; |
112 | uint8_t stat; |
| 109 | 113 | ||
| 110 | outb(EGA_IO_ADDRESS, 0xa); |
114 | pio_write_8(EGA_IO_BASE, 0xa); |
| 111 | stat=inb(EGA_IO_ADDRESS + 1); |
115 | stat = pio_read_8(EGA_IO_BASE + 1); |
| 112 | outb(EGA_IO_ADDRESS, 0xa); |
116 | pio_write_8(EGA_IO_BASE, 0xa); |
| 113 | outb(EGA_IO_ADDRESS + 1, stat | (1 << 5)); |
117 | pio_write_8(EGA_IO_BASE + 1, stat | (1 << 5)); |
| 114 | } |
118 | } |
| 115 | 119 | ||
| 116 | static void cursor_enable(void) |
120 | static void cursor_enable(void) |
| 117 | { |
121 | { |
| 118 | uint8_t stat; |
122 | uint8_t stat; |
| 119 | 123 | ||
| 120 | outb(EGA_IO_ADDRESS, 0xa); |
124 | pio_write_8(EGA_IO_BASE, 0xa); |
| 121 | stat=inb(EGA_IO_ADDRESS + 1); |
125 | stat = pio_read_8(EGA_IO_BASE + 1); |
| 122 | outb(EGA_IO_ADDRESS, 0xa); |
126 | pio_write_8(EGA_IO_BASE, 0xa); |
| 123 | outb(EGA_IO_ADDRESS + 1, stat & (~(1 << 5))); |
127 | pio_write_8(EGA_IO_BASE + 1, stat & (~(1 << 5))); |
| 124 | } |
128 | } |
| 125 | 129 | ||
| 126 | static void scroll(int rows) |
130 | static void scroll(int rows) |
| 127 | { |
131 | { |
| 128 | int i; |
132 | int i; |
| 129 | if (rows > 0) { |
133 | if (rows > 0) { |
| 130 | memcpy(scr_addr, ((char *) scr_addr) + rows * scr_width * 2, |
134 | memmove(scr_addr, ((char *) scr_addr) + rows * scr_width * 2, |
| 131 | scr_width * scr_height * 2 - rows * scr_width * 2); |
135 | scr_width * scr_height * 2 - rows * scr_width * 2); |
| 132 | for (i = 0; i < rows * scr_width; i++) |
136 | for (i = 0; i < rows * scr_width; i++) |
| 133 | (((short *) scr_addr) + scr_width * scr_height - rows * |
137 | (((short *) scr_addr) + scr_width * scr_height - rows * |
| 134 | scr_width)[i] = ((style << 8) + ' '); |
138 | scr_width)[i] = ((style << 8) + ' '); |
| 135 | } else if (rows < 0) { |
139 | } else if (rows < 0) { |
| 136 | memcpy(((char *)scr_addr) - rows * scr_width * 2, scr_addr, |
140 | memmove(((char *)scr_addr) - rows * scr_width * 2, scr_addr, |
| 137 | scr_width * scr_height * 2 + rows * scr_width * 2); |
141 | scr_width * scr_height * 2 + rows * scr_width * 2); |
| 138 | for (i = 0; i < -rows * scr_width; i++) |
142 | for (i = 0; i < -rows * scr_width; i++) |
| 139 | ((short *)scr_addr)[i] = ((style << 8 ) + ' '); |
143 | ((short *)scr_addr)[i] = ((style << 8 ) + ' '); |
| 140 | } |
144 | } |
| 141 | } |
145 | } |
| 142 | 146 | ||
| 143 | static void printchar(char c, unsigned int row, unsigned int col) |
147 | static void printchar(wchar_t c, unsigned int row, unsigned int col) |
| 144 | { |
148 | { |
| 145 | scr_addr[(row * scr_width + col) * 2] = c; |
149 | scr_addr[(row * scr_width + col) * 2] = ega_glyph(c); |
| 146 | scr_addr[(row * scr_width + col) * 2 + 1] = style; |
150 | scr_addr[(row * scr_width + col) * 2 + 1] = style; |
| 147 | 151 | ||
| 148 | cursor_goto(row, col + 1); |
152 | cursor_goto(row, col + 1); |
| 149 | } |
153 | } |
| 150 | 154 | ||
| - | 155 | /** Draw text data to viewport. |
|
| - | 156 | * |
|
| - | 157 | * @param vport Viewport id |
|
| - | 158 | * @param data Text data. |
|
| - | 159 | * @param x Leftmost column of the area. |
|
| - | 160 | * @param y Topmost row of the area. |
|
| - | 161 | * @param w Number of rows. |
|
| - | 162 | * @param h Number of columns. |
|
| - | 163 | */ |
|
| 151 | static void draw_text_data(keyfield_t *data) |
164 | static void draw_text_data(keyfield_t *data, unsigned int x, |
| - | 165 | unsigned int y, unsigned int w, unsigned int h) |
|
| 152 | { |
166 | { |
| - | 167 | unsigned int i, j; |
|
| - | 168 | keyfield_t *field; |
|
| 153 | int i; |
169 | uint8_t *dp; |
| - | 170 | ||
| - | 171 | for (j = 0; j < h; j++) { |
|
| - | 172 | for (i = 0; i < w; i++) { |
|
| - | 173 | field = &data[j * w + i]; |
|
| - | 174 | dp = &scr_addr[2 * ((y + j) * scr_width + (x + i))]; |
|
| 154 | 175 | ||
| 155 | for (i = 0; i < scr_width * scr_height; i++) { |
- | |
| 156 | scr_addr[i * 2] = data[i].character; |
176 | dp[0] = ega_glyph(field->character); |
| 157 | scr_addr[i * 2 + 1] = EGA_STYLE(data[i].style.fg_color, |
177 | dp[1] = attr_to_ega_style(&field->attrs); |
| 158 | data[i].style.bg_color); |
178 | } |
| 159 | } |
179 | } |
| 160 | } |
180 | } |
| 161 | 181 | ||
| 162 | static int save_screen(void) |
182 | static int save_screen(void) |
| 163 | { |
183 | { |
| Line 182... | Line 202... | ||
| 182 | else |
202 | else |
| 183 | return EINVAL; |
203 | return EINVAL; |
| 184 | return i; |
204 | return i; |
| 185 | } |
205 | } |
| 186 | 206 | ||
| - | 207 | static int style_to_ega_style(int style) |
|
| - | 208 | { |
|
| - | 209 | unsigned int ega_style; |
|
| - | 210 | ||
| - | 211 | switch (style) { |
|
| - | 212 | case STYLE_NORMAL: |
|
| - | 213 | ega_style = INVERTED_COLOR; |
|
| - | 214 | break; |
|
| - | 215 | case STYLE_EMPHASIS: |
|
| - | 216 | ega_style = INVERTED_COLOR | 4; |
|
| - | 217 | break; |
|
| - | 218 | default: |
|
| - | 219 | return INVERTED_COLOR; |
|
| - | 220 | } |
|
| - | 221 | ||
| - | 222 | return ega_style; |
|
| - | 223 | } |
|
| - | 224 | ||
| - | 225 | static unsigned int color_to_ega_style(int fg_color, int bg_color, int attr) |
|
| - | 226 | { |
|
| - | 227 | unsigned int style; |
|
| - | 228 | ||
| - | 229 | style = (fg_color & 7) | ((bg_color & 7) << 4); |
|
| - | 230 | if (attr & CATTR_BRIGHT) |
|
| - | 231 | style = style | 0x08; |
|
| - | 232 | ||
| - | 233 | return style; |
|
| - | 234 | } |
|
| - | 235 | ||
| - | 236 | static unsigned int rgb_to_ega_style(uint32_t fg, uint32_t bg) |
|
| - | 237 | { |
|
| - | 238 | return (fg > bg) ? NORMAL_COLOR : INVERTED_COLOR; |
|
| - | 239 | } |
|
| - | 240 | ||
| - | 241 | static unsigned attr_to_ega_style(const attrs_t *a) |
|
| - | 242 | { |
|
| - | 243 | switch (a->t) { |
|
| - | 244 | case at_style: return style_to_ega_style(a->a.s.style); |
|
| - | 245 | case at_rgb: return rgb_to_ega_style(a->a.r.fg_color, a->a.r.bg_color); |
|
| - | 246 | case at_idx: return color_to_ega_style(a->a.i.fg_color, |
|
| - | 247 | a->a.i.bg_color, a->a.i.flags); |
|
| - | 248 | default: return INVERTED_COLOR; |
|
| - | 249 | } |
|
| - | 250 | } |
|
| - | 251 | ||
| - | 252 | static uint8_t ega_glyph(wchar_t ch) |
|
| - | 253 | { |
|
| - | 254 | if (ch >= 0 && ch < 128) |
|
| - | 255 | return ch; |
|
| - | 256 | ||
| - | 257 | return '?'; |
|
| - | 258 | } |
|
| 187 | 259 | ||
| 188 | static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall) |
260 | static void ega_client_connection(ipc_callid_t iid, ipc_call_t *icall) |
| 189 | { |
261 | { |
| 190 | int retval; |
262 | int retval; |
| 191 | ipc_callid_t callid; |
263 | ipc_callid_t callid; |
| 192 | ipc_call_t call; |
264 | ipc_call_t call; |
| 193 | char c; |
265 | wchar_t c; |
| 194 | unsigned int row, col; |
266 | unsigned int row, col, w, h; |
| 195 | int bgcolor,fgcolor; |
267 | int bg_color, fg_color, attr; |
| - | 268 | uint32_t bg_rgb, fg_rgb; |
|
| 196 | keyfield_t *interbuf = NULL; |
269 | keyfield_t *interbuf = NULL; |
| 197 | size_t intersize = 0; |
270 | size_t intersize = 0; |
| 198 | int i; |
271 | int i; |
| 199 | 272 | ||
| 200 | if (client_connected) { |
273 | if (client_connected) { |
| Line 221... | Line 294... | ||
| 221 | continue; |
294 | continue; |
| 222 | } |
295 | } |
| 223 | retval = EINVAL; |
296 | retval = EINVAL; |
| 224 | break; |
297 | break; |
| 225 | case FB_DRAW_TEXT_DATA: |
298 | case FB_DRAW_TEXT_DATA: |
| - | 299 | col = IPC_GET_ARG1(call); |
|
| - | 300 | row = IPC_GET_ARG2(call); |
|
| - | 301 | w = IPC_GET_ARG3(call); |
|
| - | 302 | h = IPC_GET_ARG4(call); |
|
| 226 | if (!interbuf) { |
303 | if (!interbuf) { |
| 227 | retval = EINVAL; |
304 | retval = EINVAL; |
| 228 | break; |
305 | break; |
| 229 | } |
306 | } |
| - | 307 | if (col + w > scr_width || row + h > scr_height) { |
|
| - | 308 | retval = EINVAL; |
|
| - | 309 | break; |
|
| - | 310 | } |
|
| 230 | draw_text_data(interbuf); |
311 | draw_text_data(interbuf, col, row, w, h); |
| 231 | retval = 0; |
312 | retval = 0; |
| 232 | break; |
313 | break; |
| 233 | case FB_GET_CSIZE: |
314 | case FB_GET_CSIZE: |
| 234 | ipc_answer_2(callid, EOK, scr_height, scr_width); |
315 | ipc_answer_2(callid, EOK, scr_height, scr_width); |
| 235 | continue; |
316 | continue; |
| Line 266... | Line 347... | ||
| 266 | } |
347 | } |
| 267 | scroll(i); |
348 | scroll(i); |
| 268 | retval = 0; |
349 | retval = 0; |
| 269 | break; |
350 | break; |
| 270 | case FB_CURSOR_VISIBILITY: |
351 | case FB_CURSOR_VISIBILITY: |
| 271 | if(IPC_GET_ARG1(call)) |
352 | if (IPC_GET_ARG1(call)) |
| 272 | cursor_enable(); |
353 | cursor_enable(); |
| 273 | else |
354 | else |
| 274 | cursor_disable(); |
355 | cursor_disable(); |
| 275 | retval = 0; |
356 | retval = 0; |
| 276 | break; |
357 | break; |
| 277 | case FB_SET_STYLE: |
358 | case FB_SET_STYLE: |
| - | 359 | style = style_to_ega_style(IPC_GET_ARG1(call)); |
|
| - | 360 | retval = 0; |
|
| - | 361 | break; |
|
| - | 362 | case FB_SET_COLOR: |
|
| 278 | fgcolor = IPC_GET_ARG1(call); |
363 | fg_color = IPC_GET_ARG1(call); |
| 279 | bgcolor = IPC_GET_ARG2(call); |
364 | bg_color = IPC_GET_ARG2(call); |
| - | 365 | attr = IPC_GET_ARG3(call); |
|
| 280 | style = EGA_STYLE(fgcolor, bgcolor); |
366 | style = color_to_ega_style(fg_color, bg_color, attr); |
| - | 367 | retval = 0; |
|
| - | 368 | break; |
|
| - | 369 | case FB_SET_RGB_COLOR: |
|
| - | 370 | fg_rgb = IPC_GET_ARG1(call); |
|
| - | 371 | bg_rgb = IPC_GET_ARG2(call); |
|
| - | 372 | style = rgb_to_ega_style(fg_rgb, bg_rgb); |
|
| 281 | retval = 0; |
373 | retval = 0; |
| 282 | break; |
374 | break; |
| 283 | case FB_VP_DRAW_PIXMAP: |
375 | case FB_VP_DRAW_PIXMAP: |
| 284 | i = IPC_GET_ARG2(call); |
376 | i = IPC_GET_ARG2(call); |
| 285 | retval = print_screen(i); |
377 | retval = print_screen(i); |
| Line 297... | Line 389... | ||
| 297 | free(saved_screens[i].data); |
389 | free(saved_screens[i].data); |
| 298 | saved_screens[i].data = NULL; |
390 | saved_screens[i].data = NULL; |
| 299 | } |
391 | } |
| 300 | retval = 0; |
392 | retval = 0; |
| 301 | break; |
393 | break; |
| - | 394 | case FB_SCREEN_YIELD: |
|
| - | 395 | case FB_SCREEN_RECLAIM: |
|
| - | 396 | retval = EOK; |
|
| 302 | 397 | break; |
|
| 303 | default: |
398 | default: |
| 304 | retval = ENOENT; |
399 | retval = EINVAL; |
| 305 | } |
400 | } |
| 306 | ipc_answer_0(callid, retval); |
401 | ipc_answer_0(callid, retval); |
| 307 | } |
402 | } |
| 308 | } |
403 | } |
| 309 | 404 | ||
| Line 313... | Line 408... | ||
| 313 | size_t sz; |
408 | size_t sz; |
| 314 | 409 | ||
| 315 | ega_ph_addr = (void *) sysinfo_value("fb.address.physical"); |
410 | ega_ph_addr = (void *) sysinfo_value("fb.address.physical"); |
| 316 | scr_width = sysinfo_value("fb.width"); |
411 | scr_width = sysinfo_value("fb.width"); |
| 317 | scr_height = sysinfo_value("fb.height"); |
412 | scr_height = sysinfo_value("fb.height"); |
| - | 413 | ||
| 318 | if(sysinfo_value("fb.blinking")) |
414 | if (sysinfo_value("fb.blinking")) { |
| 319 | { |
- | |
| 320 | ega_normal_color&=0x77; |
415 | ega_normal_color &= 0x77; |
| 321 | ega_inverted_color&=0x77; |
416 | ega_inverted_color &= 0x77; |
| 322 | } |
417 | } |
| - | 418 | ||
| 323 | style = NORMAL_COLOR; |
419 | style = NORMAL_COLOR; |
| 324 | 420 | ||
| 325 | iospace_enable(task_get_id(), (void *) EGA_IO_ADDRESS, 2); |
421 | iospace_enable(task_get_id(), (void *) EGA_IO_BASE, 2); |
| 326 | 422 | ||
| 327 | sz = scr_width * scr_height * 2; |
423 | sz = scr_width * scr_height * 2; |
| 328 | scr_addr = as_get_mappable_page(sz); |
424 | scr_addr = as_get_mappable_page(sz); |
| 329 | 425 | ||
| 330 | physmem_map(ega_ph_addr, scr_addr, ALIGN_UP(sz, PAGE_SIZE) >> |
426 | if (physmem_map(ega_ph_addr, scr_addr, ALIGN_UP(sz, PAGE_SIZE) >> |
| 331 | PAGE_WIDTH, AS_AREA_READ | AS_AREA_WRITE); |
427 | PAGE_WIDTH, AS_AREA_READ | AS_AREA_WRITE) != 0) |
| - | 428 | return -1; |
|
| 332 | 429 | ||
| 333 | async_set_client_connection(ega_client_connection); |
430 | async_set_client_connection(ega_client_connection); |
| 334 | 431 | ||
| 335 | return 0; |
432 | return 0; |
| 336 | } |
433 | } |
| 337 | 434 | ||
| 338 | 435 | ||
| 339 | /** |
436 | /** |
| 340 | * @} |
437 | * @} |
| 341 | */ |
438 | */ |