Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sys / dev / video / pcvt / i386 / pcvt_hdr.h
1 /*
2  * Copyright (c) 1999 Hellmuth Michaelis
3  *
4  * Copyright (c) 1992, 1995 Hellmuth Michaelis and Joerg Wunsch.
5  *
6  * Copyright (c) 1992, 1993 Brian Dunford-Shore.
7  *
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *      This product includes software developed by
21  *      Hellmuth Michaelis, Brian Dunford-Shore and Joerg Wunsch.
22  * 4. The name authors may not be used to endorse or promote products
23  *    derived from this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
26  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
29  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35  */
36
37 /*---------------------------------------------------------------------------
38  *
39  *      pcvt_hdr.h      VT220 Driver Global Include File
40  *      ------------------------------------------------
41  *
42  *      Last Edit-Date: [Mon Dec 27 14:06:31 1999]
43  *
44  * $FreeBSD: src/sys/i386/isa/pcvt/pcvt_hdr.h,v 1.36.2.3 2001/08/06 15:30:21 joerg Exp $
45  *
46  *---------------------------------------------------------------------------*/
47
48 #define PCVT_REL "3.20-b24"     /* driver attach announcement   */
49                                 /* see also: pcvt_ioctl.h       */
50
51 #include "opt_pcvt.h"
52 #if defined(__FreeBSD__) && !defined(PCVT_FREEBSD)
53 #  define PCVT_FREEBSD 210
54 #endif
55
56 #if PCVT_FREEBSD >= 200
57
58 #include <sys/param.h>
59 #include <sys/systm.h>
60 #include <sys/conf.h>
61 #include <sys/proc.h>
62 #include <sys/signalvar.h>
63 #include <sys/tty.h>
64 #include <sys/uio.h>
65 #include <sys/callout.h>
66 #include <sys/kernel.h>
67 #include <sys/syslog.h>
68 #include <sys/malloc.h>
69 #include <sys/time.h>
70 /*
71  * XXX sys/kbio.h declares a lot of junk, but we need it for NUM_KEYS which
72  * is used in dev/kbd/kbdreg.h.
73  */
74 #include <sys/kbio.h>
75 #undef KB_OTHER
76 #undef S
77 #undef F
78
79 #if PCVT_FREEBSD > 210
80 #include <sys/random.h>
81 #endif  /* PCVT_FREEBSD > 210 */
82 #else /* ! PCVT_FREEBSD >= 200 */
83
84 #include "param.h"
85 #include "conf.h"
86 #include "ioctl.h"
87 #include "proc.h"
88 #include "signalvar.h"
89 #include "tty.h"
90 #include "uio.h"
91 #include "callout.h"
92 #include "systm.h"
93 #include "kernel.h"
94 #include "syslog.h"
95 #include "malloc.h"
96 #include "time.h"
97
98 #endif /* PCVT_FREEBSD >= 200 */
99
100 #include <i386/isa/pcvt/pcvt_conf.h>
101
102 #include <machine/bus.h>
103
104 #include <dev/kbd/kbdreg.h>
105 #include <dev/kbd/atkbdcreg.h>
106
107 #if PCVT_NETBSD > 9
108 #include "device.h"
109 #endif
110
111 #if PCVT_NETBSD > 9
112 #include "i386/isa/isavar.h"
113 #include "i386/cpufunc.h"
114 #elif PCVT_FREEBSD >= 200
115 #include <i386/isa/isa_device.h>
116 #else
117 #include "i386/isa/isa_device.h"
118 #endif
119
120 #if PCVT_FREEBSD >= 200
121 #include <i386/isa/icu.h>
122 #else
123 #include "i386/isa/icu.h"
124 #endif
125
126 #if PCVT_NETBSD > 100
127 #include "i386/isa/isareg.h"
128 #elif PCVT_FREEBSD >= 200
129 #include <i386/isa/isa.h>
130 #else
131 #include "i386/isa/isa.h"
132 #endif
133
134 #if PCVT_NETBSD > 9
135 #include "dev/cons.h"
136 #elif PCVT_FREEBSD >= 200
137 #include <sys/cons.h>
138 #else
139 #include "i386/i386/cons.h"
140 #endif
141
142 #if PCVT_NETBSD <= 9
143 #if PCVT_FREEBSD >= 200
144 #include <machine/psl.h>
145 #include <machine/frame.h>
146 #else /* ! PCVT_FREEBSD >= 200 */
147 #include "machine/psl.h"
148 #include "machine/frame.h"
149 #endif /* PCVT_FREEBSD >= 200 */
150 #endif /* PCVT_NETBSD <= 9 */
151
152 #if PCVT_NETBSD > 9
153 #include <i386/isa/pcvt/pcvt_ioctl.h>
154 #elif PCVT_FREEBSD >= 200
155 #include <machine/pcvt_ioctl.h>
156 #else
157 #include "machine/pcvt_ioctl.h"
158 #endif
159
160 #if PCVT_FREEBSD >= 200
161 #include <machine/pc/display.h>
162 #if PCVT_FREEBSD > 200
163 #include <machine/clock.h>
164 #include <machine/md_var.h>
165 #endif
166 /*
167  * The following values are defined in machine/console.h, but the header
168  * file is not included here due to conflicts with pcvt_ioctl.h.
169  */
170 #define KDGKBTYPE       _IOR('K', 64, int)
171 #define KB_84           1
172 #define KB_101          2
173 #define KB_OTHER        3
174 #else /* PCVT_FREEBSD >= 200 */
175 #include "machine/pc/display.h"
176 #endif /* PCVT_FREEBSD >= 200 */
177
178 /* setup irq disable function to use */
179
180 #if !(PCVT_SLOW_INTERRUPT) && (PCVT_NETBSD > 9)
181 # define PCVT_DISABLE_INTR()    disable_intr()
182 # define PCVT_ENABLE_INTR()     enable_intr()
183 # undef PCVT_SLOW_INTERRUPT
184 #else
185 # define PCVT_DISABLE_INTR()    s = spltty()
186 # define PCVT_ENABLE_INTR()     splx(s)
187 # undef PCVT_SLOW_INTERRUPT
188 # define PCVT_SLOW_INTERRUPT 1
189 #endif
190
191 /* perform option consistency checks */
192
193 #if defined PCVT_FREEBSD && PCVT_FREEBSD == 1
194 # undef PCVT_FREEBSD
195 # define PCVT_FREEBSD 102       /* assume 1.0 release */
196 #endif
197
198 #if defined PCVT_NETBSD && PCVT_NETBSD == 1
199 #undef PCVT_NETBSD
200 #define PCVT_NETBSD 9           /* assume 0.9 release for now */
201 #endif
202
203 #if PCVT_FREEBSD + PCVT_NETBSD == 0
204 # error "pcvt_hdr.h: You MUST define one of PCVT_{NET,FREE}BSD \
205 in the config file"
206 #elif (PCVT_FREEBSD && PCVT_NETBSD)
207 # error "pcvt_hdr.h: You CAN only define *one* of PCVT_{NET,FREE}BSD \
208 in the config file"
209 #endif
210
211 #ifdef XSERVER
212
213 /* PCVT_NULLCHARS is mandatory for X server */
214 #if !PCVT_NULLCHARS
215 #undef PCVT_NULLCHARS
216 #define PCVT_NULLCHARS 1
217 #endif
218
219 /* PCVT_BACKUP_FONTS is mandatory for PCVT_USL_VT_COMPAT */
220 #if PCVT_USL_VT_COMPAT && !PCVT_BACKUP_FONTS
221 #undef PCVT_BACKUP_FONTS
222 #define PCVT_BACKUP_FONTS 1
223 #endif
224
225 #else /* XSERVER */
226
227 #if PCVT_USL_VT_COMPAT
228 #warning "Option PCVT_USL_VT_COMPAT meaningless without XSERVER"
229 #undef PCVT_USL_VT_COMPAT
230 #define PCVT_USL_VT_COMPAT 0
231 #endif
232
233 #endif /* XSERVER */
234
235 /* PCVT_SCREENSAVER is mandatory for PCVT_PRETTYSCRNS */
236 #if PCVT_PRETTYSCRNS && !PCVT_SCREENSAVER
237 #undef PCVT_SCREENSAVER
238 #define PCVT_SCREENSAVER 1
239 #endif
240
241 /* get the inline inb/outb back again ... */
242
243 #if PCVT_NETBSD
244 #if PCVT_NETBSD == 9
245 #include "machine/cpufunc.h"    /* NetBSD 0.9 [...and earlier -currents] */
246 #undef PCVT_USL_VT_COMPAT
247 #define PCVT_USL_VT_COMPAT 0    /* does not work, workaround ... */
248 #else
249 #include "machine/pio.h"        /* recent NetBSD -currents */
250 #define NEW_AVERUNNABLE         /* averunnable changes for younger currents */
251 #endif /* PCVT_NETBSD == 9 */
252 #endif /* PCVT_NETBSD */
253
254 #if PCVT_FREEBSD >= 200
255 #define NEW_AVERUNNABLE         /* new averunnable changes for FreeBSD 2.0 */
256 #endif
257
258 #if PCVT_SCANSET !=1 && PCVT_SCANSET !=2
259 #error "Supported keyboard scancode sets are 1 and 2 only (for now)!!!"
260 #endif
261
262 /* initial default scrollback buffer size (in pages) */
263 #define SCROLLBACK_PAGES       8
264
265 /*---------------------------------------------------------------------------*
266  *      Keyboard and Keyboard Controller
267  *---------------------------------------------------------------------------*/
268
269 #ifndef _DEV_KBD_KBDREG_H_
270
271 #define CONTROLLER_CTRL 0x64    /* W - command, R - status      */
272 #define CONTROLLER_DATA 0x60    /* R/W - data                   */
273
274 /* commands to control the CONTROLLER (8042) on the mainboard */
275
276 #define CONTR_READ      0x20    /* read command byte from controller */
277 #define CONTR_WRITE     0x60    /* write command to controller, see below */
278 #define CONTR_SELFTEST  0xaa    /* controller selftest, returns 0x55 when ok */
279 #define CONTR_IFTEST    0xab    /* interface selftest */
280 #define CONTR_KBDISABL  0xad    /* disable keyboard */
281 #define CONTR_KBENABL   0xae    /* enable keyboard */
282
283 /* command byte for writing to CONTROLLER (8042) via CONTR_WRITE */
284
285 #define  COMMAND_RES7   0x80    /* bit 7, reserved, always write a ZERO ! */
286 #define  COMMAND_PCSCAN 0x40    /* bit 6, 1 = convert to pc scan codes */
287 #define  COMMAND_RES5   0x20    /* bit 5, perhaps (!) use 9bit frame
288                                  * instead of 11 */
289 #define  COMMAND_DISABL 0x10    /* bit 4, 1 = disable keyboard */
290 #define  COMMAND_INHOVR 0x08    /* bit 3, 1 = override security lock inhibit */
291 #define  COMMAND_SYSFLG 0x04    /* bit 2, value stored as "system flag" */
292 #define  COMMAND_RES2   0x02    /* bit 1, reserved, always write a ZERO ! */
293 #define  COMMAND_IRQEN  0x01    /* bit 0, 1 = enable output buffer full
294                                  * interrupt */
295
296 /* status from CONTROLLER (8042) on the mainboard */
297
298 #define STATUS_PARITY   0x80    /* bit 7, 1 = parity error on last byte */
299 #define STATUS_RXTIMO   0x40    /* bit 6, 1 = receive timeout error occured */
300 #define STATUS_TXTIMO   0x20    /* bit 5, 1 = transmit timeout error occured */
301 #define STATUS_ENABLE   0x10    /* bit 4, 1 = keyboard unlocked */
302 #define STATUS_WHAT     0x08    /* bit 3, 1 = wrote cmd to 0x64, 0 = wrote
303                                  * data to 0x60 */
304 #define STATUS_SYSFLG   0x04    /* bit 2, value stored as "system flag" */
305 #define STATUS_INPBF    0x02    /* bit 1, 1 = input buffer full (to 8042) */
306 #define STATUS_OUTPBF   0x01    /* bit 0, 1 = output buffer full (from 8042) */
307
308 /* commands to the KEYBOARD (via the 8042 controller on mainboard..) */
309
310 #define KEYB_C_RESET    0xff    /* reset keyboard to power-on status */
311 #define KEYB_C_RESEND   0xfe    /* resend last byte in case of error */
312 #define KEYB_C_TYPEM    0xf3    /* set keyboard typematic rate/delay */
313 #define KEYB_C_ID       0xf2    /* return keyboard id */
314 #define KEYB_C_ECHO     0xee    /* diagnostic, echo 0xee */
315 #define KEYB_C_LEDS     0xed    /* set/reset numlock,capslock & scroll lock */
316
317 #endif /* _DEV_KBD_KBDREG_H_ */
318
319 /* responses from the KEYBOARD (via the 8042 controller on mainboard..) */
320
321 #define KEYB_R_OVERRUN0 0x00    /* keyboard buffer overflow */
322 #define KEYB_R_SELFOK   0xaa    /* keyboard selftest ok after KEYB_C_RESET */
323 #define KEYB_R_EXT0     0xe0    /* keyboard extended scancode prefix 1 */
324 #define KEYB_R_EXT1     0xe1    /* keyboard extended scancode prefix 2 */
325 #define KEYB_R_ECHO     0xee    /* keyboard response to KEYB_C_ECHO */
326 #define KEYB_R_BREAKPFX 0xf0    /* break code prefix for set 2 and 3 */
327 #define KEYB_R_ACK      0xfa    /* acknowledge after a command has rx'd */
328 #define KEYB_R_SELFBAD  0xfc    /*keyboard selftest FAILED after KEYB_C_RESET*/
329 #define KEYB_R_DIAGBAD  0xfd    /* keyboard self diagnostic failure */
330 #define KEYB_R_RESEND   0xfe    /* keyboard wants command resent or illegal
331                                  * command rx'd */
332 #define KEYB_R_OVERRUN1 0xff    /* keyboard buffer overflow */
333
334 #define KEYB_R_MF2ID1   0xab    /* MF II Keyboard id-byte #1 */
335 #define KEYB_R_MF2ID2   0x41    /* MF II Keyboard id-byte #2 */
336 #define KEYB_R_MF2ID2HP 0x83    /* MF II Keyboard id-byte #2 from HP keybd's */
337
338 /* internal Keyboard Type */
339
340 #define KB_UNKNOWN      0       /* unknown keyboard type */
341 #define KB_AT           1       /* AT (84 keys) Keyboard */
342 #define KB_MFII         2       /* MF II (101/102 keys) Keyboard */
343
344 /*---------------------------------------------------------------------------*
345  *      CMOS ram access to get the "Equipment Byte"
346  *---------------------------------------------------------------------------*/
347
348 #define RTC_EQUIPMENT   0x14    /* equipment byte in cmos ram   */
349 #define EQ_EGAVGA       0       /* reserved (= ega/vga)         */
350 #define EQ_40COLOR      1       /* display = 40 col color       */
351 #define EQ_80COLOR      2       /* display = 80 col color       */
352 #define EQ_80MONO       3       /* display = 80 col mono        */
353
354 /*---------------------------------------------------------------------------*
355  *      VT220 -> internal color conversion table fields
356  *---------------------------------------------------------------------------*/
357
358 #define VT_NORMAL       0x00            /* no attributes at all */
359 #define VT_BOLD         0x01            /* bold attribute */
360 #define VT_UNDER        0x02            /* underline attribute */
361 #define VT_BLINK        0x04            /* blink attribute */
362 #define VT_INVERSE      0x08            /* inverse attribute */
363
364 /*---------------------------------------------------------------------------*
365  *      VGA GENERAL/EXTERNAL Registers          (3BA or 3DA and 3CA, 3C2, 3CC)
366  *---------------------------------------------------------------------------*/
367
368 #define GN_MISCOUTR     0x3CC           /* misc output register read */
369 #define GN_MISCOUTW     0x3C2           /* misc output register write */
370 #define GN_INPSTAT0     0x3C2           /* input status 0, r/o */
371 #define GN_INPSTAT1M    0x3BA           /* input status 1, r/o, mono */
372 #define GN_INPSTAT1C    0x3DA           /* input status 1, r/o, color */
373 #define GN_FEATR        0x3CA           /* feature control, read */
374 #define GN_FEATWM       0x3BA           /* feature control, write, mono */
375 #define GN_FEATWC       0x3DA           /* feature control, write, color */
376 #define GN_VSUBSYS      0x3C3           /* video subsystem register r/w */
377 #define GN_DMCNTLM      0x3B8           /* display mode control, r/w, mono */
378 #define GN_DMCNTLC      0x3D8           /* display mode control, r/w, color */
379 #define GN_COLORSEL     0x3D9           /* color select register, w/o */
380 #define GN_HERCOMPAT    0x3BF           /* Hercules compatibility reg, w/o */
381
382 /*---------------------------------------------------------------------------*
383  *      VGA CRTC Registers                        (3B4 and 3B5 or 3D4 and 3D5)
384  *---------------------------------------------------------------------------*/
385
386 #define MONO_BASE       0x3B4           /* crtc index register address mono */
387 #define CGA_BASE        0x3D4           /* crtc index register address color */
388
389 #define CRTC_ADDR       0x00            /* index register */
390
391 #define CRTC_HTOTAL     0x00            /* horizontal total */
392 #define CRTC_HDISPLE    0x01            /* horizontal display end */
393 #define CRTC_HBLANKS    0x02            /* horizontal blank start */
394 #define CRTC_HBLANKE    0x03            /* horizontal blank end */
395 #define CRTC_HSYNCS     0x04            /* horizontal sync start */
396 #define CRTC_HSYNCE     0x05            /* horizontal sync end */
397 #define CRTC_VTOTAL     0x06            /* vertical total */
398 #define CRTC_OVERFLL    0x07            /* overflow low */
399 #define CRTC_IROWADDR   0x08            /* inital row address */
400 #define CRTC_MAXROW     0x09            /* maximum row address */
401 #define CRTC_CURSTART   0x0A            /* cursor start row address */
402 #define         CURSOR_ON_BIT 0x20      /* cursor on/off on mda/cga/vga */
403 #define CRTC_CUREND     0x0B            /* cursor end row address */
404 #define CRTC_STARTADRH  0x0C            /* linear start address mid */
405 #define CRTC_STARTADRL  0x0D            /* linear start address low */
406 #define CRTC_CURSORH    0x0E            /* cursor address mid */
407 #define CRTC_CURSORL    0x0F            /* cursor address low */
408 #define CRTC_VSYNCS     0x10            /* vertical sync start */
409 #define CRTC_VSYNCE     0x11            /* vertical sync end */
410 #define CRTC_VDE        0x12            /* vertical display end */
411 #define CRTC_OFFSET     0x13            /* row offset */
412 #define CRTC_ULOC       0x14            /* underline row address */
413 #define CRTC_VBSTART    0x15            /* vertical blank start */
414 #define CRTC_VBEND      0x16            /* vertical blank end */
415 #define CRTC_MODE       0x17            /* CRTC mode register */
416 #define CRTC_SPLITL     0x18            /* split screen start low */
417
418 /* start of ET4000 extensions */
419
420 #define CRTC_RASCAS     0x32            /* ras/cas configuration */
421 #define CRTC_EXTSTART   0x33            /* extended start address */
422 #define CRTC_COMPAT6845 0x34            /* 6845 comatibility control */
423 #define CRTC_OVFLHIGH   0x35            /* overflow high */
424 #define CRTC_SYSCONF1   0x36            /* video system configuration 1 */
425 #define CRTC_SYSCONF2   0x36            /* video system configuration 2 */
426
427 /* start of WD/Paradise extensions */
428
429 #define CRTC_PR10       0x29            /* r/w unlocking */
430 #define CRTC_PR11       0x2A            /* ega switches */
431 #define CRTC_PR12       0x2B            /* scratch pad */
432 #define CRTC_PR13       0x2C            /* interlace h/2 start */
433 #define CRTC_PR14       0x2D            /* interlace h/2 end */
434 #define CRTC_PR15       0x2E            /* misc control #1 */
435 #define CRTC_PR16       0x2F            /* misc control #2 */
436 #define CRTC_PR17       0x30            /* misc control #3 */
437                                         /* 0x31 .. 0x3f reserved */
438 /* Video 7 */
439
440 #define CRTC_V7ID       0x1f            /* identification register */
441
442 /* Trident */
443
444 #define CRTC_MTEST      0x1e            /* module test register */
445 #define CRTC_SOFTPROG   0x1f            /* software programming */
446 #define CRTC_LATCHRDB   0x22            /* latch read back register */
447 #define CRTC_ATTRSRDB   0x24            /* attribute state read back register*/
448 #define CRTC_ATTRIRDB   0x26            /* attribute index read back register*/
449 #define CRTC_HOSTAR     0x27            /* high order start address register */
450
451 /*---------------------------------------------------------------------------*
452  *      VGA TIMING & SEQUENCER Registers                         (3C4 and 3C5)
453  *---------------------------------------------------------------------------*/
454
455 #define TS_INDEX        0x3C4           /* index register */
456 #define TS_DATA         0x3C5           /* data register */
457
458 #define TS_SYNCRESET    0x00            /* synchronous reset */
459 #define TS_MODE         0x01            /* ts mode register */
460 #define TS_WRPLMASK     0x02            /* write plane mask */
461 #define TS_FONTSEL      0x03            /* font select register */
462 #define TS_MEMMODE      0x04            /* memory mode register */
463
464 /* ET4000 only */
465
466 #define TS_RESERVED     0x05            /* undef, reserved */
467 #define TS_STATECNTL    0x06            /* state control register */
468 #define TS_AUXMODE      0x07            /* auxiliary mode control */
469
470 /* WD/Paradise only */
471
472 #define TS_UNLOCKSEQ    0x06            /* PR20 - unlock sequencer register */
473 #define TS_DISCFSTAT    0x07            /* PR21 - display config status */
474 #define TS_MEMFIFOCTL   0x10            /* PR30 - memory i/f & fifo control */
475 #define TS_SYSIFCNTL    0x11            /* PR31 - system interface control */
476 #define TS_MISC4        0x12            /* PR32 - misc control #4 */
477
478 /* Video 7 */
479
480 #define TS_EXTCNTL      0x06            /* extensions control */
481 #define TS_CLRVDISP     0x30            /* clear vertical display 0x30-0x3f */
482 #define TS_V7CHIPREV    0x8e            /* chipset revision 0x8e-0x8f */
483 #define TS_SWBANK       0xe8            /* single/write bank register, rev 5+*/
484 #define TS_RDBANK       0xe8            /* read bank register, rev 4+ */
485 #define TS_MISCCNTL     0xe8            /* misc control register, rev 4+ */
486 #define TS_SWSTROBE     0xea            /* switch strobe */
487 #define TS_MWRCNTL      0xf3            /* masked write control */
488 #define TS_MWRMVRAM     0xf4            /* masked write mask VRAM only */
489 #define TS_BANKSEL      0xf6            /* bank select */
490 #define TS_SWREADB      0xf7            /* switch readback */
491 #define TS_PAGESEL      0xf9            /* page select */
492 #define TS_COMPAT       0xfc            /* compatibility control */
493 #define TS_16BITCTL     0xff            /* 16 bit interface control */
494
495 /* Trident */
496
497 #define TS_HWVERS       0x0b            /* hardware version, switch old/new! */
498 #define TS_CONFPORT1    0x0c            /* config port 1 and 2    - caution! */
499 #define TS_MODEC2       0x0d            /* old/new mode control 2 - caution! */
500 #define TS_MODEC1       0x0e            /* old/new mode control 1 - caution! */
501 #define TS_PUPM2        0x0f            /* power up mode 2 */
502
503 /*---------------------------------------------------------------------------*
504  *      VGA GRAPHICS DATA CONTROLLER Registers              (3CE, 3CF and 3CD)
505  *---------------------------------------------------------------------------*/
506
507 #define GDC_SEGSEL      0x3CD           /* segment select register */
508 #define GDC_INDEX       0x3CE           /* index register */
509 #define GDC_DATA        0x3CF           /* data register */
510
511 #define GDC_SETRES      0x00            /* set / reset bits */
512 #define GDC_ENSETRES    0x01            /* enable set / reset */
513 #define GDC_COLORCOMP   0x02            /* color compare register */
514 #define GDC_ROTFUNC     0x03            /* data rotate / function select */
515 #define GDC_RDPLANESEL  0x04            /* read plane select */
516 #define GDC_MODE        0x05            /* gdc mode register */
517 #define GDC_MISC        0x06            /* gdc misc register */
518 #define GDC_COLORCARE   0x07            /* color care register */
519 #define GDC_BITMASK     0x08            /* bit mask register */
520
521 /* WD/Paradise only */
522
523 #define GDC_BANKSWA     0x09            /* PR0A - bank switch a */
524 #define GDC_BANKSWB     0x0a            /* PR0B - bank switch b */
525 #define GDC_MEMSIZE     0x0b            /* PR1 memory size */
526 #define GDC_VIDEOSEL    0x0c            /* PR2 video configuration */
527 #define GDC_CRTCNTL     0x0d            /* PR3 crt address control */
528 #define GDC_VIDEOCNTL   0x0e            /* PR4 video control */
529 #define GDC_PR5GPLOCK   0x0f            /* PR5 gp status and lock */
530
531 /* Video 7 */
532
533 #define GDC_DATALATCH   0x22            /* gdc data latch */
534
535 /*---------------------------------------------------------------------------*
536  *      VGA ATTRIBUTE CONTROLLER Registers                       (3C0 and 3C1)
537  *---------------------------------------------------------------------------*/
538
539 #define ATC_INDEX       0x3C0           /* index register  AND  */
540 #define ATC_DATAW       0x3C0           /* data write      !!!  */
541 #define ATC_DATAR       0x3C1           /* data read */
542
543 #define ATC_ACCESS      0x20            /* access bit in ATC index register */
544
545 #define ATC_PALETTE0    0x00            /* color palette register 0 */
546 #define ATC_PALETTE1    0x01            /* color palette register 1 */
547 #define ATC_PALETTE2    0x02            /* color palette register 2 */
548 #define ATC_PALETTE3    0x03            /* color palette register 3 */
549 #define ATC_PALETTE4    0x04            /* color palette register 4 */
550 #define ATC_PALETTE5    0x05            /* color palette register 5 */
551 #define ATC_PALETTE6    0x06            /* color palette register 6 */
552 #define ATC_PALETTE7    0x07            /* color palette register 7 */
553 #define ATC_PALETTE8    0x08            /* color palette register 8 */
554 #define ATC_PALETTE9    0x09            /* color palette register 9 */
555 #define ATC_PALETTEA    0x0A            /* color palette register 10 */
556 #define ATC_PALETTEB    0x0B            /* color palette register 11 */
557 #define ATC_PALETTEC    0x0C            /* color palette register 12 */
558 #define ATC_PALETTED    0x0D            /* color palette register 13 */
559 #define ATC_PALETTEE    0x0E            /* color palette register 14 */
560 #define ATC_PALETTEF    0x0F            /* color palette register 15 */
561 #define ATC_MODE        0x10            /* atc mode register */
562 #define ATC_OVERSCAN    0x11            /* overscan register */
563 #define ATC_COLPLEN     0x12            /* color plane enable register */
564 #define ATC_HORPIXPAN   0x13            /* horizontal pixel panning */
565 #define ATC_COLRESET    0x14            /* color reset */
566 #define ATC_MISC        0x16            /* misc register (ET3000/ET4000) */
567
568 /*---------------------------------------------------------------------------*
569  *      VGA palette handling (output DAC palette)
570  *---------------------------------------------------------------------------*/
571
572 #define VGA_DAC         0x3C6           /* vga dac address */
573 #define VGA_PMSK        0x3F            /* palette mask, 64 distinct values */
574 #define NVGAPEL         256             /* number of palette entries */
575
576 /*---------------------------------------------------------------------------*
577  *      function key labels
578  *---------------------------------------------------------------------------*/
579
580 #define LABEL_LEN       9               /* length of one label */
581 #define LABEL_MID       8               /* mid-part (row/col)   */
582
583 #define LABEL_ROWH      ((4*LABEL_LEN)+1)
584 #define LABEL_ROWL      ((4*LABEL_LEN)+2)
585 #define LABEL_COLU      ((4*LABEL_LEN)+4)
586 #define LABEL_COLH      ((4*LABEL_LEN)+5)
587 #define LABEL_COLL      ((4*LABEL_LEN)+6)
588
589 /* tab setting */
590
591 #define MAXTAB 132              /* no of possible tab stops */
592
593 /* escape detection state machine */
594
595 #define STATE_INIT      0       /* normal       */
596 #define STATE_ESC       1       /* got ESC      */
597 #define STATE_BLANK     2       /* got ESC space*/
598 #define STATE_HASH      3       /* got ESC #    */
599 #define STATE_BROPN     4       /* got ESC (    */
600 #define STATE_BRCLO     5       /* got ESC )    */
601 #define STATE_CSI       6       /* got ESC [    */
602 #define STATE_CSIQM     7       /* got ESC [ ?  */
603 #define STATE_AMPSND    8       /* got ESC &    */
604 #define STATE_STAR      9       /* got ESC *    */
605 #define STATE_PLUS      10      /* got ESC +    */
606 #define STATE_DCS       11      /* got ESC P    */
607 #define STATE_SCA       12      /* got ESC <Ps> " */
608 #define STATE_STR       13      /* got ESC !    */
609 #define STATE_MINUS     14      /* got ESC -    */
610 #define STATE_DOT       15      /* got ESC .    */
611 #define STATE_SLASH     16      /* got ESC /    */
612
613 /* for storing escape sequence parameters */
614
615 #define MAXPARMS        10      /* maximum no of parms */
616
617 /* terminal responses */
618
619 #define DA_VT220        "\033[?62;1;2;6;7;8;9c"
620
621 /* sub-states for Device Control String processing */
622
623 #define DCS_INIT        0       /* got ESC P ... */
624 #define DCS_AND_UDK     1       /* got ESC P ... | */
625 #define DCS_UDK_DEF     2       /* got ESC P ... | fnckey / */
626 #define DCS_UDK_ESC     3       /* got ESC P ... | fnckey / ... ESC */
627 #define DCS_DLD_DSCS    4       /* got ESC P ... { */
628 #define DCS_DLD_DEF     5       /* got ESC P ... { dscs */
629 #define DCS_DLD_ESC     6       /* got ESC P ... { dscs ... / ... ESC */
630
631 /* vt220 user defined keys and vt220 downloadable charset */
632
633 #define MAXUDKDEF       300     /* max 256 char + 1 '\0' + space.. */
634 #define MAXUDKEYS       18      /* plus holes .. */
635 #define DSCS_LENGTH     3       /* descriptor length */
636 #define MAXSIXEL        8       /* sixels forever ! */
637
638 /* sub-states for HP-terminal emulator */
639
640 #define SHP_INIT        0
641
642 /* esc & f family */
643
644 #define SHP_AND_F       1
645 #define SHP_AND_Fa      2
646 #define SHP_AND_Fak     3
647 #define SHP_AND_Fak1    4
648 #define SHP_AND_Fakd    5
649 #define SHP_AND_FakdL   6
650 #define SHP_AND_FakdLl  7
651 #define SHP_AND_FakdLls 8
652
653 /* esc & j family */
654
655 #define SHP_AND_J       9
656 #define SHP_AND_JL      10
657
658 /* esc & every-thing-else */
659
660 #define SHP_AND_ETE     11
661
662 /* additionals for function key labels */
663
664 #define MAX_LABEL       16
665 #define MAX_STRING      80
666 #define MAX_STATUS      160
667
668 /* MAX values for screen sizes for possible video adaptors */
669
670 #define MAXROW_MDACGA   25              /* MDA/CGA can do 25 x 80 max */
671 #define MAXCOL_MDACGA   80
672
673 #define MAXROW_EGA      43              /* EGA can do 43 x 80 max */
674 #define MAXCOL_EGA      80
675
676 #define MAXROW_VGA      50              /* VGA can do 50 x 80 max */
677 #define MAXCOL_VGA      80
678 #define MAXCOL_SVGA     132             /* Super VGA can do 50 x 132 max */
679
680 /* switch 80/132 columns */
681
682 #define SCR_COL80       80              /* in 80 col mode */
683 #define SCR_COL132      132             /* in 132 col mode */
684
685 #define MAXDECSCA       (((MAXCOL_SVGA * MAXROW_VGA) \
686                         / (8 * sizeof(unsigned int)) ) + 1 )
687
688 /* screen memory start, monochrome */
689
690 #ifndef MONO_BUF
691 # if PCVT_FREEBSD && (PCVT_FREEBSD > 102)
692 #  define MONO_BUF      (KERNBASE+0xB0000)
693 # else
694 #  define MONO_BUF      0xfe0B0000               /* NetBSD-current: isa.h */
695 # endif
696 #endif
697
698 /* screen memory start, color */
699
700 #ifndef CGA_BUF
701 # if PCVT_FREEBSD && (PCVT_FREEBSD > 102)
702 #  define CGA_BUF       (KERNBASE+0xB8000)
703 # else
704 #  define CGA_BUF       0xfe0B8000               /* NetBSD-current: isa.h */
705 # endif
706 #endif
707
708 #define CHR             2               /* bytes per word in screen mem */
709
710 #define NVGAFONTS       8               /* number of vga fonts loadable */
711
712 #define MAXKEYNUM       127             /* max no of keys in table */
713
714 /* charset tables */
715
716 #define CSL     0x0000          /* ega/vga charset, lower half of 512 */
717 #define CSH     0x0800          /* ega/vga charset, upper half of 512 */
718 #define CSSIZE  96              /* (physical) size of a character set */
719
720 /* charset designations */
721
722 #define D_G0            0       /* designated as G0 */
723 #define D_G1            1       /* designated as G1 */
724 #define D_G2            2       /* designated as G2 */
725 #define D_G3            3       /* designated as G3 */
726 #define D_G1_96         4       /* designated as G1 for 96-char charsets */
727 #define D_G2_96         5       /* designated as G2 for 96-char charsets */
728 #define D_G3_96         6       /* designated as G3 for 96-char charsets */
729
730 /* which fkey-labels */
731
732 #define SYS_FKL         0       /* in hp mode, sys-fkls are active */
733 #define USR_FKL         1       /* in hp mode, user-fkls are active */
734
735 /* arguments to async_update() */
736
737 #define UPDATE_START    ((void *)0)     /* do cursor update and requeue */
738 #define UPDATE_STOP     ((void *)1)     /* suspend cursor updates */
739 #define UPDATE_KERN     ((void *)2)     /* do cursor updates for kernel output */
740
741 /* variables */
742
743 #ifdef EXTERN
744 #define WAS_EXTERN
745 #else
746 #define EXTERN extern
747 #endif
748
749 EXTERN  u_char  *more_chars;            /* response buffer via kbd */
750 EXTERN  u_char  color;                  /* color or mono display */
751
752 EXTERN  u_short kern_attr;              /* kernel messages char attributes */
753 EXTERN  u_short user_attr;              /* character attributes */
754
755 #if !PCVT_EMU_MOUSE
756
757 #if PCVT_NETBSD
758 EXTERN struct tty *pc_tty[PCVT_NSCREENS];
759 #elif !(PCVT_FREEBSD > 110 && PCVT_FREEBSD < 200)
760 EXTERN struct tty pccons[PCVT_NSCREENS];
761 #else
762 EXTERN struct tty *pccons[PCVT_NSCREENS];
763 #endif /* PCVT_NETBSD */
764
765 #else /* PCVT_EMU_MOUSE */
766
767 #if PCVT_NETBSD
768 EXTERN struct tty *pc_tty[PCVT_NSCREENS + 1];
769 #elif !(PCVT_FREEBSD > 110 && PCVT_FREEBSD < 200)
770 EXTERN struct tty pccons[PCVT_NSCREENS + 1];
771 #else
772 EXTERN struct tty *pccons[PCVT_NSCREENS + 1];
773 #endif
774
775 #endif /* PCVT_EMU_MOUSE */
776
777 struct sixels {
778         u_char lower[MAXSIXEL];         /* lower half of char */
779         u_char upper[MAXSIXEL];         /* upper half of char */
780 };
781
782 struct udkentry {
783         u_char  first[MAXUDKEYS];       /* index to first char */
784         u_char  length[MAXUDKEYS];      /* length of this entry */
785 };
786
787 /* VGA palette handling */
788 struct rgb {
789         u_char  r, g, b;                /* red/green/blue, valid 0..VGA_PMSK */
790 };
791
792 typedef struct video_state {
793         u_short *Crtat;                 /* video page start addr */
794         u_short *Memory;                /* malloc'ed memory start address */
795         struct tty *vs_tty;             /* pointer to this screen's tty */
796         u_char  maxcol;                 /* 80 or 132 cols on screen */
797         u_char  row, col;               /* current cursor position */
798         u_short c_attr;                 /* current character attributes */
799         u_char  vtsgr;                  /* current sgr configuration */
800         u_short cur_offset;             /* current cursor position offset */
801         u_char  bell_on;                /* flag, bell enabled */
802         u_char  sevenbit;               /* flag, data path 7 bits wide */
803         u_char  dis_fnc;                /* flag, display functions enable */
804         u_char  transparent;            /* flag, mk path tmp trnsprnt for ctls*/
805         u_char  scrr_beg;               /* scrolling region, begin */
806         u_char  scrr_len;               /* scrolling region, length */
807         u_char  scrr_end;               /* scrolling region, end */
808         u_char  screen_rows;            /* screen size, length - status lines */
809         u_char  screen_rowsize;         /* screen size, length */
810         u_char  vga_charset;            /* VGA character set value */
811         u_char  lastchar;               /* flag, vt100 behaviour of last char */
812         u_char  lastrow;                /* save row, --------- " -----------  */
813         u_char  *report_chars;          /* ptr, status reports from terminal */
814         u_char  report_count;           /* count, ----------- " ------------ */
815         u_char  state;                  /* escape sequence state machine */
816         u_char  m_awm;                  /* flag, vt100 mode, auto wrap */
817         u_char  m_om;                   /* flag, vt100 mode, origin mode */
818         u_char  sc_flag;                /* flag, vt100 mode,saved parms valid */
819         u_char  sc_row;                 /* saved row */
820         u_char  sc_col;                 /* saved col */
821         u_short sc_cur_offset;          /* saved cursor addr offset */
822         u_short sc_attr;                /* saved attributes */
823         u_char  sc_vtsgr;               /* saved sgr configuration */
824         u_char  sc_awm;                 /* saved auto wrap mode */
825         u_char  sc_om;                  /* saved origin mode */
826         u_short *sc_G0;                 /* save G0 ptr */
827         u_short *sc_G1;                 /* save G1 ptr */
828         u_short *sc_G2;                 /* save G2 ptr */
829         u_short *sc_G3;                 /* save G3 ptr */
830         u_short **sc_GL;                /* save GL ptr */
831         u_short **sc_GR;                /* save GR ptr */
832         u_char  sc_sel;                 /* selective erase state */
833         u_char  ufkl[8][17];            /* user fkey-labels */
834         u_char  sfkl[8][17];            /* system fkey-labels */
835         u_char  labels_on;              /* display fkey labels etc. on/off */
836         u_char  which_fkl;              /* which fkey labels are active */
837         char    tab_stops[MAXTAB];      /* table of active tab stops */
838         u_char  parmi;                  /* parameter index */
839         u_char  parms[MAXPARMS];        /* parameter array */
840         u_char  hp_state;               /* hp escape sequence state machine */
841         u_char  attribute;              /* attribute normal, tx only, local */
842         u_char  key;                    /* fkey label no */
843         u_char  l_len;                  /* buffer length's */
844         u_char  s_len;
845         u_char  m_len;
846         u_char  i;                      /* help (got short of names ...) */
847         u_char  l_buf[MAX_LABEL+1];     /* buffers */
848         u_char  s_buf[MAX_STRING+1];
849         u_char  m_buf[MAX_STATUS+1];
850         u_char  openf;                  /* we are opened ! */
851         u_char  vt_pure_mode;           /* no fkey labels, row/col, status */
852         u_char  cursor_start;           /* Start of cursor */
853         u_char  cursor_end;             /* End of cursor */
854         u_char  cursor_on;              /* cursor switched on */
855         u_char  ckm;                    /* true = cursor key normal mode */
856         u_char  irm;                    /* true = insert mode */
857         u_char  lnm;                    /* Line Feed/New Line Mode */
858         u_char  dcs_state;              /* dcs escape sequence state machine */
859         u_char  udk_def[MAXUDKDEF];     /* new definitions for vt220 FKeys */
860         u_char  udk_defi;               /* index for FKey definitions */
861         u_char  udk_deflow;             /* low or high nibble in sequence */
862         u_char  udk_fnckey;             /* function key to assign to */
863         u_char  dld_dscs[DSCS_LENGTH];  /* designate soft character set id */
864         u_char  dld_dscsi;              /* index for dscs */
865         u_char  dld_sixel_lower;        /* upper/lower sixels of character */
866         u_char  dld_sixelli;            /* index for lower sixels */
867         u_char  dld_sixelui;            /* index for upper sixels */
868         struct sixels sixel;            /* structure for storing char sixels */
869         u_char  selchar;                /* true = selective attribute on */
870         u_int   decsca[MAXDECSCA];      /* Select Character Attrib bit array */
871         u_short **GL;                   /* ptr to current GL conversion table*/
872         u_short **GR;                   /* ptr to current GR conversion table*/
873         u_short *G0;                    /* ptr to current G0 conversion table*/
874         u_short *G1;                    /* ptr to current G1 conversion table*/
875         u_char force24;                 /* force 24 lines in DEC 25 and HP 28*/
876         u_short *G2;                    /* ptr to current G2 conversion table*/
877         u_short *G3;                    /* ptr to current G3 conversion table*/
878         u_char  dld_id[DSCS_LENGTH+1];  /* soft character set id */
879         u_char  which[DSCS_LENGTH+1];   /* which set to designate */
880         u_char  whichi;                 /* index into which ..  */
881         u_char  ss;                     /* flag, single shift G2 / G3 -> GL */
882         u_short **Gs;                   /* ptr to cur. G2/G3 conversion table*/
883         u_char  udkbuf[MAXUDKDEF];      /* buffer for user defined keys */
884         struct udkentry ukt;            /* index & length for each udk */
885         u_char  udkff;                  /* index into buffer first free entry*/
886         struct rgb palette[NVGAPEL];    /* saved VGA DAC palette */
887         u_char  wd132col;               /* we are on a wd vga and in 132 col */
888         u_char  scroll_lock;            /* scroll lock active */
889         u_char  caps_lock;              /* caps lock active */
890         u_char  shift_lock;             /* shiftlock flag (virtual ..) */
891         u_char  num_lock;               /* num lock, true = keypad num mode */
892         u_char  abs_write;              /* write outside of scroll region */
893
894         u_short *Scrollback;            /* scrollback buffer */
895         u_short scrollback_pages;       /* size of scrollback buffer */
896         u_short scr_offset;             /* current scrollback offset (lines) */
897         short scrolling;                /* current scrollback page */
898         u_short max_off;                /* maximum scrollback offset */
899         
900 #if PCVT_USL_VT_COMPAT                  /* SysV compatibility :-( */
901
902         struct vt_mode smode;
903         struct proc *proc;
904         pid_t pid;
905         unsigned vt_status;
906 #define VT_WAIT_REL 1                   /* wait till process released vt */
907 #define VT_WAIT_ACK 2                   /* wait till process ack vt acquire */
908 #define VT_GRAFX    4                   /* vt runs graphics mode */
909 #define VT_WAIT_ACT 8                   /* a process is sleeping on this vt */
910                                         /*  becoming active */
911 #endif /* PCVT_USL_VT_COMPAT */
912
913 } video_state;
914
915 EXTERN video_state vs[PCVT_NSCREENS];   /* parameters for screens */
916
917 struct vga_char_state {
918         int     loaded;         /* Whether a font is loaded here */
919         int     secondloaded;   /* an extension characterset was loaded, */
920                                 /*      the number is found here         */
921         u_char  char_scanlines; /* Scanlines per character */
922         u_char  scr_scanlines;  /* Low byte of scanlines per screen */
923         int     screen_size;    /* Screen size in SIZ_YYROWS */
924 };
925
926 EXTERN struct vga_char_state vgacs[NVGAFONTS];  /* Character set states */
927
928 #if PCVT_EMU_MOUSE
929 struct mousestat {
930         struct timeval lastmove; /* last time the pointer moved */
931         u_char opened;           /* someone would like to use a mouse */
932         u_char minor;            /* minor device number */
933         u_char buttons;          /* current "buttons" pressed */
934         u_char extendedseen;     /* 0xe0 has been seen, do not use next key */
935         u_char breakseen;        /* key break has been seen for a sticky btn */
936 };
937 #endif /* PCVT_EMU_MOUSE */
938
939 #ifdef WAS_EXTERN
940
941 #if PCVT_NETBSD > 9
942
943 int pcprobe ();
944 void pcattach ();
945
946 struct cfdriver vtcd = {
947         NULL, "vt", pcprobe, pcattach, DV_TTY, sizeof(struct device)
948 };
949
950 #else
951
952 int pcprobe ( struct isa_device *dev );
953 int pcattach ( struct isa_device *dev );
954
955 struct  isa_driver vtdriver = {         /* driver routines */
956         pcprobe, pcattach, "vt", 1,
957 };
958
959 #endif /* PCVT_NETBSD > 9 */
960
961 u_char fgansitopc[] = {                 /* foreground ANSI color -> pc */
962         FG_BLACK, FG_RED, FG_GREEN, FG_BROWN, FG_BLUE,
963         FG_MAGENTA, FG_CYAN, FG_LIGHTGREY
964 };
965
966 u_char bgansitopc[] = {                 /* background ANSI color -> pc */
967         BG_BLACK, BG_RED, BG_GREEN, BG_BROWN, BG_BLUE,
968         BG_MAGENTA, BG_CYAN, BG_LIGHTGREY
969 };
970
971 #if !PCVT_NETBSD
972 u_short *Crtat;                 /* screen start address */
973 #if !(PCVT_FREEBSD > 110 && PCVT_FREEBSD < 200)
974 struct tty *pcconsp =   &pccons[0];             /* ptr to current device */
975 #else /* PCVT_FREEBSD > 110 */
976 struct tty *pcconsp;
977 #endif /* !(PCVT_FREEBSD > 110) */
978 #else
979 struct tty *pcconsp;            /* ptr to current device, see pcattach() */
980 #endif /* PCVT_NETBSD */
981
982 #if PCVT_EMU_MOUSE
983 struct mousestat        mouse;
984 struct mousedefs        mousedef = {0x3b, 0x3c, 0x3d, 0,     250000};
985 #endif /* PCVT_EMU_MOUSE */     /*  F1,   F2,   F3,   false, 0.25 sec */
986
987 video_state *vsp                = &vs[0]; /* ptr to current screen parms */
988
989 #if PCVT_USL_VT_COMPAT
990 int     vt_switch_pending       = 0;            /* if > 0, a vt switch is */
991 #endif /* PCVT_USL_VT_COMPAT */                 /* pending; contains the # */
992                                                 /* of the old vt + 1 */
993
994 u_int   addr_6845               = MONO_BASE;    /* crtc base addr */
995 u_char  do_initialization       = 1;            /* we have to init ourselves */
996 u_char  pcvt_is_console         = 0;            /* until we know it */
997 u_char  shift_down              = 0;            /* shift key down flag */
998 u_char  ctrl_down               = 0;            /* ctrl key down flag */
999 u_char  meta_down               = 0;            /* alt key down flag */
1000 u_char  altgr_down              = 0;            /* altgr key down flag */
1001 u_char  kbrepflag               = 1;            /* key repeat flag */
1002 u_char  totalscreens            = 1;            /* screens available */
1003 u_char  current_video_screen    = 0;            /* displayed screen no */
1004 u_char  adaptor_type            = UNKNOWN_ADAPTOR;/* adaptor type */
1005 u_char  vga_type                = VGA_UNKNOWN;  /* vga chipset */
1006 u_char  can_do_132col           = 0;            /* vga chipset can 132 cols */
1007 u_char  vga_family              = 0;            /* vga manufacturer */
1008 u_char  totalfonts              = 0;            /* fonts available */
1009 u_char  chargen_access          = 0;            /* synchronize access */
1010 u_char  keyboard_type           = KB_UNKNOWN;   /* type of keyboard */
1011 u_char  keyboard_is_initialized = 0;            /* for ddb sanity */
1012 u_char  kbd_polling             = 0;            /* keyboard is being polled */
1013 #ifdef _DEV_KBD_KBDREG_H_
1014 u_char  reset_keyboard          = 0;            /* OK to reset keyboard */
1015 keyboard_t *kbd                 = NULL;
1016 #endif /* _DEV_KBD_KBDREG_H_ */
1017
1018 #if PCVT_SHOWKEYS
1019 u_char  keyboard_show           = 0;            /* normal display */
1020 #endif /* PCVT_SHOWKEYS */
1021
1022 u_char  cursor_pos_valid        = 0;            /* sput left a valid position*/
1023
1024 u_char  critical_scroll         = 0;            /* inside scrolling up */
1025 int     switch_page             = -1;           /* which page to switch to */
1026
1027 #if PCVT_SCREENSAVER
1028 u_char  reset_screen_saver      = 1;            /* reset the saver next time */
1029 u_char  scrnsv_active           = 0;            /* active flag */
1030 #endif /* PCVT_SCREENSAVER */
1031
1032 #ifdef XSERVER
1033 unsigned scrnsv_timeout         = 0;            /* initially off */
1034 #if !PCVT_USL_VT_COMPAT
1035 u_char pcvt_xmode               = 0;            /* display is grafx */
1036 #endif /* PCVT_USL_VT_COMPAT */
1037 u_char pcvt_kbd_raw             = 0;            /* keyboard sends scans */
1038 #endif /* XSERVER */
1039
1040 #if PCVT_BACKUP_FONTS
1041 u_char *saved_charsets[NVGAFONTS] = {0};        /* backup copy of fonts */
1042 #endif /* PCVT_BACKUP_FONTS */
1043
1044 /*---------------------------------------------------------------------------
1045
1046         VT220 attributes -> internal emulator attributes conversion tables
1047
1048         be careful when designing color combinations, because on
1049         EGA and VGA displays, bit 3 of the attribute byte is used
1050         for characterset switching, and is no longer available for
1051         foreground intensity (bold)!
1052
1053 ---------------------------------------------------------------------------*/
1054
1055 /* color displays */
1056
1057 u_char sgr_tab_color[16] = {
1058 /*00*/  (BG_BLACK     | FG_LIGHTGREY),             /* normal               */
1059 /*01*/  (BG_BLUE      | FG_LIGHTGREY),             /* bold                 */
1060 /*02*/  (BG_BROWN     | FG_LIGHTGREY),             /* underline            */
1061 /*03*/  (BG_MAGENTA   | FG_LIGHTGREY),             /* bold+underline       */
1062 /*04*/  (BG_BLACK     | FG_LIGHTGREY | FG_BLINK),  /* blink                */
1063 /*05*/  (BG_BLUE      | FG_LIGHTGREY | FG_BLINK),  /* bold+blink           */
1064 /*06*/  (BG_BROWN     | FG_LIGHTGREY | FG_BLINK),  /* underline+blink      */
1065 /*07*/  (BG_MAGENTA   | FG_LIGHTGREY | FG_BLINK),  /* bold+underline+blink */
1066 /*08*/  (BG_LIGHTGREY | FG_BLACK),                 /* invers               */
1067 /*09*/  (BG_LIGHTGREY | FG_BLUE),                  /* bold+invers          */
1068 /*10*/  (BG_LIGHTGREY | FG_BROWN),                 /* underline+invers     */
1069 /*11*/  (BG_LIGHTGREY | FG_MAGENTA),               /* bold+underline+invers*/
1070 /*12*/  (BG_LIGHTGREY | FG_BLACK      | FG_BLINK), /* blink+invers         */
1071 /*13*/  (BG_LIGHTGREY | FG_BLUE       | FG_BLINK), /* bold+blink+invers    */
1072 /*14*/  (BG_LIGHTGREY | FG_BROWN      | FG_BLINK), /* underline+blink+invers*/
1073 /*15*/  (BG_LIGHTGREY | FG_MAGENTA    | FG_BLINK)  /*bold+underl+blink+invers*/
1074 };
1075
1076 /* monochrome displays (VGA version, no intensity) */
1077
1078 u_char sgr_tab_mono[16] = {
1079 /*00*/  (BG_BLACK     | FG_LIGHTGREY),            /* normal               */
1080 /*01*/  (BG_BLACK     | FG_UNDERLINE),            /* bold                 */
1081 /*02*/  (BG_BLACK     | FG_UNDERLINE),            /* underline            */
1082 /*03*/  (BG_BLACK     | FG_UNDERLINE),            /* bold+underline       */
1083 /*04*/  (BG_BLACK     | FG_LIGHTGREY | FG_BLINK), /* blink                */
1084 /*05*/  (BG_BLACK     | FG_UNDERLINE | FG_BLINK), /* bold+blink           */
1085 /*06*/  (BG_BLACK     | FG_UNDERLINE | FG_BLINK), /* underline+blink      */
1086 /*07*/  (BG_BLACK     | FG_UNDERLINE | FG_BLINK), /* bold+underline+blink */
1087 /*08*/  (BG_LIGHTGREY | FG_BLACK),                /* invers               */
1088 /*09*/  (BG_LIGHTGREY | FG_BLACK),                /* bold+invers          */
1089 /*10*/  (BG_LIGHTGREY | FG_BLACK),                /* underline+invers     */
1090 /*11*/  (BG_LIGHTGREY | FG_BLACK),                /* bold+underline+invers*/
1091 /*12*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK),     /* blink+invers         */
1092 /*13*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK),     /* bold+blink+invers    */
1093 /*14*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK),     /* underline+blink+invers*/
1094 /*15*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK)      /*bold+underl+blink+invers*/
1095 };
1096
1097 /* monochrome displays (MDA version, with intensity) */
1098
1099 u_char sgr_tab_imono[16] = {
1100 /*00*/  (BG_BLACK     | FG_LIGHTGREY),                /* normal               */
1101 /*01*/  (BG_BLACK     | FG_LIGHTGREY | FG_INTENSE),   /* bold                 */
1102 /*02*/  (BG_BLACK     | FG_UNDERLINE),                /* underline            */
1103 /*03*/  (BG_BLACK     | FG_UNDERLINE | FG_INTENSE),   /* bold+underline       */
1104 /*04*/  (BG_BLACK     | FG_LIGHTGREY | FG_BLINK),     /* blink                */
1105 /*05*/  (BG_BLACK     | FG_LIGHTGREY | FG_INTENSE | FG_BLINK), /* bold+blink  */
1106 /*06*/  (BG_BLACK     | FG_UNDERLINE | FG_BLINK),     /* underline+blink      */
1107 /*07*/  (BG_BLACK     | FG_UNDERLINE | FG_BLINK | FG_INTENSE), /* bold+underline+blink */
1108 /*08*/  (BG_LIGHTGREY | FG_BLACK),                    /* invers               */
1109 /*09*/  (BG_LIGHTGREY | FG_BLACK | FG_INTENSE),       /* bold+invers          */
1110 /*10*/  (BG_LIGHTGREY | FG_BLACK),                    /* underline+invers     */
1111 /*11*/  (BG_LIGHTGREY | FG_BLACK | FG_INTENSE),       /* bold+underline+invers*/
1112 /*12*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK),         /* blink+invers         */
1113 /*13*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK | FG_INTENSE),/* bold+blink+invers*/
1114 /*14*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK),         /* underline+blink+invers*/
1115 /*15*/  (BG_LIGHTGREY | FG_BLACK | FG_BLINK | FG_INTENSE) /* bold+underl+blink+invers */
1116 };
1117
1118 #else /* WAS_EXTERN */
1119
1120 extern u_char           vga_type;
1121 extern struct tty       *pcconsp;
1122 extern video_state      *vsp;
1123
1124 #if PCVT_EMU_MOUSE
1125 extern struct mousestat mouse;
1126 extern struct mousedefs mousedef;
1127 #endif /* PCVT_EMU_MOUSE */
1128
1129 #if PCVT_USL_VT_COMPAT
1130 extern int              vt_switch_pending;
1131 #endif /* PCVT_USL_VT_COMPAT */
1132
1133 extern u_int            addr_6845;
1134 extern u_short          *Crtat;
1135 extern u_char           do_initialization;
1136 extern u_char           pcvt_is_console;
1137 extern u_char           bgansitopc[];
1138 extern u_char           fgansitopc[];
1139 extern u_char           shift_down;
1140 extern u_char           ctrl_down;
1141 extern u_char           meta_down;
1142 extern u_char           altgr_down;
1143 extern u_char           kbrepflag;
1144 extern u_char           adaptor_type;
1145 extern u_char           current_video_screen;
1146 extern u_char           totalfonts;
1147 extern u_char           totalscreens;
1148 extern u_char           chargen_access;
1149 extern u_char           keyboard_type;
1150 extern u_char           can_do_132col;
1151 extern u_char           vga_family;
1152 extern u_char           keyboard_is_initialized;
1153 extern u_char           kbd_polling;
1154 #ifdef _DEV_KBD_KBDREG_H_
1155 extern u_char           reset_keyboard;
1156 extern keyboard_t       *kbd;
1157 #endif /* _DEV_KBD_KBDREG_H_ */
1158
1159 #if PCVT_SHOWKEYS
1160 extern u_char           keyboard_show;
1161 #endif /* PCVT_SHOWKEYS */
1162
1163 extern  u_char  cursor_pos_valid;
1164
1165 extern  u_char  critical_scroll;
1166 extern  int     switch_page;
1167
1168 #if PCVT_SCREENSAVER
1169 extern  u_char  reset_screen_saver;
1170 extern  u_char  scrnsv_active;
1171 #endif /* PCVT_SCREENSAVER */
1172
1173 extern u_char           sgr_tab_color[];
1174 extern u_char           sgr_tab_mono[];
1175 extern u_char           sgr_tab_imono[];
1176
1177 #ifdef XSERVER
1178 extern unsigned         scrnsv_timeout;
1179 extern u_char           pcvt_xmode;
1180 extern u_char           pcvt_kbd_raw;
1181 #endif /* XSERVER */
1182
1183 #if PCVT_BACKUP_FONTS
1184 extern u_char           *saved_charsets[NVGAFONTS];
1185 #endif /* PCVT_BACKUP_FONTS */
1186
1187 #endif  /* WAS_EXTERN */
1188
1189 /*
1190  * FreeBSD > 1.0.2 cleaned up the kernel definitions (with the aim of
1191  * getting ANSI-clean). Since there has been a mixed usage of types like
1192  * "dev_t" (actually some short) in prototyped and non-prototyped fasion,
1193  * each of those types is declared as "int" within function prototypes
1194  * (which is what the compiler would actually promote it to).
1195  *
1196  * The macros below are used to clarify which type a parameter ought to
1197  * be, regardless of its actual promotion to "int".
1198  */
1199
1200 #define Dev_t   int
1201 #define U_short int
1202 #define U_char  int
1203
1204 /*
1205  * In FreeBSD >= 2.0, dev_t has type `unsigned long', so promoting it
1206  * doesn't cause any problems in prototypes.
1207  */
1208
1209 #if PCVT_FREEBSD >= 200
1210 #undef Dev_t
1211 #define Dev_t   dev_t
1212 #endif
1213
1214 #if !PCVT_FREEBSD || (PCVT_FREEBSD < 210)
1215 extern void bcopyb(void *from, void *to, u_int length);
1216 #endif
1217
1218 #if !PCVT_FREEBSD || (PCVT_FREEBSD < 200)
1219 extern void fillw(U_short value, void *addr, u_int length);
1220 #endif
1221
1222 int     pcparam ( struct tty *tp, struct termios *t );
1223
1224 /*
1225  * In FreeBSD > 2.0.6, driver console functions are declared in machine/cons.h
1226  * and some return void, so don't declare them here.
1227  */
1228 #if PCVT_FREEBSD <= 205
1229 int     pccnprobe ( struct consdev *cp );
1230 int     pccninit ( struct consdev *cp );
1231 int     pccngetc ( Dev_t dev );
1232 int     pccncheckc ( Dev_t dev );
1233 int     pccnputc ( Dev_t dev, U_char c );
1234 #endif
1235
1236 ointhand2_t     pcrint;
1237 void    pcstart ( struct tty *tp );
1238 void    pcstop ( struct tty *tp, int flag );
1239
1240 # if PCVT_FREEBSD < 200
1241 void    consinit ( void );
1242 # endif
1243
1244 #if PCVT_USL_VT_COMPAT
1245 void    switch_screen ( int n, int oldgrafx, int newgrafx );
1246 int     usl_vt_ioctl (Dev_t dev, int cmd, caddr_t data, int flag,
1247                       struct proc *);
1248 int     vt_activate ( int newscreen );
1249 int     vgapage ( int n );
1250 void    get_usl_keymap( keymap_t *map );
1251 void    reset_usl_modes (struct video_state *vsx);
1252 #else
1253 void    vgapage ( int n );
1254 #endif /* PCVT_USL_VT_COMPAT */
1255
1256 #if PCVT_EMU_MOUSE
1257 int     mouse_ioctl ( Dev_t dev, int cmd, caddr_t data );
1258 #endif /*  PCVT_EMU_MOUSE */
1259
1260 #if PCVT_SCREENSAVER
1261 void    pcvt_scrnsv_reset ( void );
1262 #endif /* PCVT_SCREENSAVER */
1263
1264 #if PCVT_SCREENSAVER && defined(XSERVER)
1265 void    pcvt_set_scrnsv_tmo ( int );
1266 #endif /* PCVT_SCREENSAVER && defined(XSERVER) */
1267
1268 void    vga_move_charset ( unsigned n, unsigned char *b, int save_it);
1269
1270 void    async_update ( void *arg );
1271 void    clr_parms ( struct video_state *svsp );
1272 void    cons_highlight ( void );
1273 void    cons_normal ( void );
1274 void    dprintf ( unsigned flgs, const char *fmt, ... );
1275 int     egavga_test ( void );
1276 void    fkl_off ( struct video_state *svsp );
1277 void    fkl_on ( struct video_state *svsp );
1278 struct tty *get_pccons ( Dev_t dev );
1279 void    init_sfkl ( struct video_state *svsp );
1280 void    init_ufkl ( struct video_state *svsp );
1281 #ifndef _DEV_KBD_KBDREG_H_
1282 int     kbd_cmd ( int val );
1283 int     kbd_response ( void );
1284 #endif /* _DEV_KBD_KBDREG_H_ */
1285 void    kbd_code_init ( void );
1286 void    kbd_code_init1 ( void );
1287
1288 #if PCVT_SCANSET > 1
1289 void    kbd_emulate_pc(int do_emulation);
1290 #endif
1291
1292 int     kbdioctl ( Dev_t dev, int cmd, caddr_t data, int flag );
1293 void    loadchar ( int fontset, int character, int char_scanlines,
1294                    u_char *char_table );
1295 void    mda2egaorvga ( void );
1296 void    roll_up ( struct video_state *svsp, int n );
1297 void    select_vga_charset ( int vga_charset );
1298 void    set_2ndcharset ( void );
1299 void    set_charset ( struct video_state *svsp, int curvgacs );
1300 void    set_emulation_mode ( struct video_state *svsp, int mode );
1301 void    set_screen_size ( struct video_state *svsp, int size );
1302 void    reallocate_scrollbuffer ( struct video_state *svsp, int pages );
1303 u_char *sgetc ( int noblock );
1304 void    sixel_vga ( struct sixels *charsixel, u_char *charvga );
1305 void    sput ( u_char *s, U_char attrib, int len, int page );
1306 void    sw_cursor ( int onoff );
1307 void    sw_sfkl ( struct video_state *svsp );
1308 void    sw_ufkl ( struct video_state *svsp );
1309 void    swritefkl ( int num, u_char *string, struct video_state *svsp );
1310 void    toggl_awm ( struct video_state *svsp );
1311 void    toggl_bell ( struct video_state *svsp );
1312 void    toggl_columns ( struct video_state *svsp );
1313 void    toggl_dspf ( struct video_state *svsp );
1314 void    toggl_sevenbit ( struct video_state *svsp );
1315 void    update_hp ( struct video_state *svsp );
1316 void    update_led ( void );
1317 void    vga10_vga10 ( u_char *invga, u_char *outvga );
1318 void    vga10_vga14 ( u_char *invga, u_char *outvga );
1319 void    vga10_vga16 ( u_char *invga, u_char *outvga );
1320 void    vga10_vga8 ( u_char *invga, u_char *outvga );
1321 u_char  vga_chipset ( void );
1322 int     vga_col ( struct video_state *svsp, int cols );
1323 void    vga_screen_off ( void );
1324 void    vga_screen_on ( void );
1325 char   *vga_string ( int number );
1326 int     vga_test ( void );
1327 int     vgaioctl ( Dev_t dev, int cmd, caddr_t data, int flag );
1328 void    vgapaletteio ( unsigned idx, struct rgb *val, int writeit );
1329 void    vt_aln ( struct video_state *svsp );
1330 void    vt_clearudk ( struct video_state *svsp );
1331 void    vt_clreol ( struct video_state *svsp );
1332 void    vt_clreos ( struct video_state *svsp );
1333 void    vt_clrtab ( struct video_state *svsp );
1334 int     vt_col ( struct video_state *svsp, int cols );
1335 void    vt_coldmalloc ( void );
1336 void    vt_cub ( struct video_state *svsp );
1337 void    vt_cud ( struct video_state *svsp );
1338 void    vt_cuf ( struct video_state *svsp );
1339 void    vt_curadr ( struct video_state *svsp );
1340 void    vt_cuu ( struct video_state *svsp );
1341 void    vt_da ( struct video_state *svsp );
1342 void    vt_dch ( struct video_state *svsp );
1343 void    vt_dcsentry ( U_char ch, struct video_state *svsp );
1344 void    vt_designate ( struct video_state *svsp);
1345 void    vt_dl ( struct video_state *svsp );
1346 void    vt_dld ( struct video_state *svsp );
1347 void    vt_dsr ( struct video_state *svsp );
1348 void    vt_ech ( struct video_state *svsp );
1349 void    vt_ic ( struct video_state *svsp );
1350 void    vt_il ( struct video_state *svsp );
1351 void    vt_ind ( struct video_state *svsp );
1352 void    vt_initsel ( struct video_state *svsp );
1353 void    vt_keyappl ( struct video_state *svsp );
1354 void    vt_keynum ( struct video_state *svsp );
1355 void    vt_mc ( struct video_state *svsp );
1356 void    vt_nel ( struct video_state *svsp );
1357 void    vt_rc ( struct video_state *svsp );
1358 void    vt_reqtparm ( struct video_state *svsp );
1359 void    vt_reset_ansi ( struct video_state *svsp );
1360 void    vt_reset_dec_priv_qm ( struct video_state *svsp );
1361 void    vt_ri ( struct video_state *svsp );
1362 void    vt_ris ( struct video_state *svsp );
1363 void    vt_sc ( struct video_state *svsp );
1364 void    vt_sca ( struct video_state *svsp );
1365 void    vt_sd ( struct video_state *svsp );
1366 void    vt_sed ( struct video_state *svsp );
1367 void    vt_sel ( struct video_state *svsp );
1368 void    vt_set_ansi ( struct video_state *svsp );
1369 void    vt_set_dec_priv_qm ( struct video_state *svsp );
1370 void    vt_sgr ( struct video_state *svsp );
1371 void    vt_stbm ( struct video_state *svsp );
1372 void    vt_str ( struct video_state *svsp );
1373 void    vt_su ( struct video_state *svsp );
1374 void    vt_tst ( struct video_state *svsp );
1375 void    vt_udk ( struct video_state *svsp );
1376 void    toggl_24l ( struct video_state *svsp );
1377
1378 #ifdef PCVT_INCLUDE_VT_SELATTR
1379
1380 #define INT_BITS        (sizeof(unsigned int) * 8)
1381 #define INT_INDEX(n)    ((n) / INT_BITS)
1382 #define BIT_INDEX(n)    ((n) % INT_BITS)
1383
1384 /*---------------------------------------------------------------------------*
1385  *      set selective attribute if appropriate
1386  *---------------------------------------------------------------------------*/
1387 static __inline void vt_selattr(struct video_state *svsp)
1388 {
1389         int i;
1390
1391         i = (svsp->Crtat + svsp->cur_offset) - svsp->Crtat;
1392
1393         if(svsp->selchar)
1394                 svsp->decsca[INT_INDEX(i)] |=  (1 << BIT_INDEX(i));
1395         else
1396                 svsp->decsca[INT_INDEX(i)] &= ~(1 << BIT_INDEX(i));
1397 }
1398
1399 #endif /* PCVT_INCLUDE_VT_SELATTR */
1400
1401
1402 /*---------------------------------------------------------------------------*
1403  *      produce 7 us delay accessing the keyboard controller
1404  *---------------------------------------------------------------------------*/
1405
1406 #if PCVT_PORTIO_DELAY
1407                                 /* use multiple dummy accesses to port    */
1408                                 /* 0x84 to produce keyboard controller    */
1409                                 /* access delays                          */
1410 #define PCVT_KBD_DELAY()          \
1411         { (void)inb(0x84); } \
1412         { (void)inb(0x84); } \
1413         { (void)inb(0x84); } \
1414         { (void)inb(0x84); } \
1415         { (void)inb(0x84); } \
1416         { (void)inb(0x84); }
1417
1418 #else /* PCVT_PORTIO_DELAY */
1419                                 /* use system supplied delay function for */
1420                                 /* producing delays for accesssing the    */
1421                                 /* keyboard controller                    */
1422 #if PCVT_NETBSD > 9
1423 #define PCVT_KBD_DELAY()        delay(7)
1424 #elif PCVT_FREEBSD || (PCVT_NETBSD <= 9)
1425 #define PCVT_KBD_DELAY()        DELAY(7)
1426 #endif
1427 #endif /* PCVT_PORTIO_DELAY */
1428
1429 /*---------------------------------- E O F ----------------------------------*/