summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/ppcn_60x/console/vga.c
blob: 16b30e1edac5234b58c608115b1419d1027e1d94 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
/*
 *  This file contains the TTY driver for VGA
 *
 *  COPYRIGHT (c) 1998 by Radstone Technology
 *
 *
 * THIS FILE IS PROVIDED TO YOU, THE USER, "AS IS", WITHOUT WARRANTY OF ANY
 * KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK
 * AS TO THE QUALITY AND PERFORMANCE OF ALL CODE IN THIS FILE IS WITH YOU.
 *
 * You are hereby granted permission to use, copy, modify, and distribute
 * this file, provided that this notice, plus the above copyright notice
 * and disclaimer, appears in all copies. Radstone Technology will provide
 * no support for this code.
 *
 *  This driver uses the termios pseudo driver.
 */
/*-------------------------------------------------------------------------+
| (C) Copyright 1997 -
| - NavIST Group - Real-Time Distributed Systems and Industrial Automation
|
| http://pandora.ist.utl.pt
|
| Instituto Superior Tecnico * Lisboa * PORTUGAL
+--------------------------------------------------------------------------+
| Disclaimer:
|
| This file is provided "AS IS" without warranty of any kind, either
| expressed or implied.
+--------------------------------------------------------------------------+
| This code is based on:
|   outch.c,v 1.4 1995/12/19 20:07:27 joel Exp - go32 BSP
| With the following copyright notice:
| **************************************************************************
| * COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.                      *
| * On-Line Applications Research Corporation (OAR).                       *
| **************************************************************************
+--------------------------------------------------------------------------*/

#include <bsp.h>

#include <stdlib.h>
#include <string.h>

#include "vga_p.h"

/*-------------------------------------------------------------------------+
| Constants
+--------------------------------------------------------------------------*/
#define DISPLAY_CELL_COUNT (VGA_NUM_ROWS * VGA_NUM_COLS)
                                       /* Number of display cells.            */
#define TABSIZE 4                      /* Number of spaces for TAB (\t) char. */
#define	WHITE	0x0007                 /* White on Black background colour.   */
#define BLANK   (WHITE | (' '<<8))     /* Blank character.                    */

/*
 * This is imported from i8042.c to provide flow control
 */
extern volatile boolean bScrollLock;

/*-------------------------------------------------------------------------+
| Global Variables
+--------------------------------------------------------------------------*/
/* Physical address of start of video text memory. */
static uint16_t   *videoRam    = (uint16_t*)VGA_FB;
/* Pointer for current output position in display. */
static uint16_t   *videoRamPtr = (uint16_t*)VGA_FB;
static uint8_t    videoRows = VGA_NUM_ROWS; /* Number of rows in display.    */
static uint8_t    videoCols = VGA_NUM_COLS; /* Number of columns in display. */
static uint8_t    cursRow   = 0;       /* Current cursor row.           */
static uint8_t    cursCol   = 0;       /* Current cursor column.        */

/*-------------------------------------------------------------------------+
|         Function: setHardwareCursorPos
|      Description: Set hardware video cursor at given offset into video RAM.
| Global Variables: None.
|        Arguments: videoCursor - Offset into video memory.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static inline void
setHardwareCursorPos(uint16_t   videoCursor)
{
	VGA_WRITE_CRTC(0x0e, (videoCursor >> 8) & 0xff);
	VGA_WRITE_CRTC(0x0f, videoCursor & 0xff);
} /* setHardwareCursorPos */

/*-------------------------------------------------------------------------+
|         Function: updateVideoRamPtr
|      Description: Updates value of global variable "videoRamPtr" based on
|                   current window's cursor position.
| Global Variables: videoRamPtr, cursRow, cursCol.
|        Arguments: None.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static inline void
updateVideoRamPtr(void)
{
	videoRamPtr = videoRam + cursRow * videoCols + cursCol;
} /* updateVideoRamPtr */

/*-------------------------------------------------------------------------+
|         Function: scrollUp
|      Description: Scrolls display up n lines.
| Global Variables: None.
|        Arguments: lines - number of lines to scroll.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static void
scrollUp(uint8_t   lines)
{
	/* Number of blank display cells on bottom of window. */
	uint16_t   blankCount;

       /* Source and destination pointers for memory copy operations. */
	uint16_t   *ptrDst, *ptrSrc;

	if(lines<videoRows)  /* Move window's contents up. */
	{
		/*
		 * Number of non-blank cells on upper part
		 * of display (total - blank).
		 */
		uint16_t   nonBlankCount;

		blankCount = lines * videoCols;
		nonBlankCount = DISPLAY_CELL_COUNT - blankCount;
		ptrSrc = videoRam + blankCount;
		ptrDst = videoRam;

		while(nonBlankCount--)
		{
			*ptrDst++ = *ptrSrc++;
		}
	}
	else
	{
		/*
		 * Clear the whole display.
		 */
		blankCount = DISPLAY_CELL_COUNT;
		ptrDst = videoRam;
	}

	/* Fill bottom with blanks. */
	while (blankCount-->0)
	{
		*ptrDst++ = BLANK;
	}
} /* scrollUp */

/*-------------------------------------------------------------------------+
|         Function: printCHAR
|      Description: Print printable character to display.
| Global Variables: videoRamPtr, cursRow, cursCol.
|        Arguments: c - character to write to display.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static void
printCHAR(char c)
{
	*videoRamPtr++ = (c<<8) | WHITE;
	cursCol++;
	if(cursCol==videoCols)
	{
		cursCol = 0;
		cursRow++;
		if(cursRow==videoRows)
		{
			cursRow--;
			scrollUp(1);
			videoRamPtr -= videoCols;
		}
	}
} /* printCHAR */

/*-------------------------------------------------------------------------+
|         Function: printBS
|      Description: Print BS (BackSpace - '\b') character to display.
| Global Variables: videoRamPtr, cursRow, cursCol.
|        Arguments: None.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static inline void
printBS(void)
{
	/* Move cursor back one cell. */
	if(cursCol>0)
	{
		cursCol--;
	}
	else if(cursRow>0)
	{
		cursRow--;
		cursCol = videoCols - 1;
	}
	else
	{
		return;
	}

	/* Write a whitespace. */
	*(--videoRamPtr) = BLANK;
} /* printBS */

/*-------------------------------------------------------------------------+
|         Function: printHT
|      Description: Print HT (Horizontal Tab - '\t') character to display.
| Global Variables: cursCol.
|        Arguments: None.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static inline void
printHT(void)
{
	do
	{
		printCHAR(' ');
	}
	while (cursCol % TABSIZE);
} /* printHT */

/*-------------------------------------------------------------------------+
|         Function: printLF
|      Description: Print LF (Line Feed  - '\n') character to display.
| Global Variables: cursRow.
|        Arguments: None.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static inline void
printLF(void)
{
	cursRow++;
	if(cursRow==videoRows)
	{
		cursRow--;
		scrollUp(1);
	}
	updateVideoRamPtr();
} /* printLF */

/*-------------------------------------------------------------------------+
|         Function: printCR
|      Description: Print CR (Carriage Return - '\r') to display.
| Global Variables: cursCol.
|        Arguments: None.
|          Returns: Nothing.
+--------------------------------------------------------------------------*/
static inline void
printCR(void)
{
	cursCol = 0;
	updateVideoRamPtr();
} /* printCR */

/*
 *  Console Device Driver Entry Points
 */
void
vga_write(
	int   minor,
	char cChar)
{
	switch (cChar)
	{
		case '\b':
			printBS();
			break;
		case '\t':
			printHT();
			break;
		case '\n':
			printLF();
			break;
		case '\r':
			printCR();
			break;
		default:
			printCHAR(cChar);
			break;
	}

	setHardwareCursorPos(videoRamPtr - videoRam);
} /* vga_write */

/*
 *  vga_write_support
 *
 *  Console Termios output entry point.
 *
 */
int vga_write_support(
	int   minor,
	const char *buf,
	int   len
)
{
	int nwrite = 0;

	while(bScrollLock)
	{
		/*
		 * The Scroll lock on the keyboard is active
		 */
		/*
		 * Yield while we wait
		 */
		rtems_task_wake_after(RTEMS_YIELD_PROCESSOR);
	}

	/*
	 * Write each byte in the string to the display
	 */
	while (nwrite<len)
	{
		/*
		 * transmit character
		 */
		vga_write(minor, *buf++);
		nwrite++;
	}

	/*
	 * return the number of bytes written.
	 */
	return nwrite;
}

boolean vga_probe(int minor)
{
	uint8_t   ucMiscIn;

	/*
	 * Check for presence of VGA adaptor
	 */
	inport_byte(0x3cc, ucMiscIn);
	if(ucMiscIn!=0xff)
	{
		/*
		 * VGA device is present
		 */
		return(TRUE);
	}
	return(FALSE);
}

void vga_init(int minor)
{
	scrollUp(videoRows);     /* Clear entire screen         */
	setHardwareCursorPos(0); /* Cursor at upper left corner */
	/*
	 * Enable the cursor
	 */
	VGA_WRITE_CRTC(0x0a, 0x0e);	/* Crt cursor start */
}