Subversion Repositories HelenOS

Rev

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