xref: /freebsd/sys/dev/syscons/syscons.h (revision 87569f75a91f298c52a71823c04d41cf53c88889)
1 /*-
2  * Copyright (c) 1995-1998 S�ren Schmidt
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to The DragonFly Project
6  * by Sascha Wildner <saw@online.de>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer,
13  *    without modification, immediately at the beginning of the file.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  * 3. The name of the author may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  *
31  * $FreeBSD$
32  */
33 
34 #ifndef _DEV_SYSCONS_SYSCONS_H_
35 #define	_DEV_SYSCONS_SYSCONS_H_
36 
37 /* machine-dependent part of the header */
38 
39 #ifdef PC98
40 #include <pc98/cbus/sc_machdep.h>
41 #elif defined(__i386__)
42 /* nothing for the moment */
43 #elif defined(__alpha__)
44 /* nothing for the moment */
45 #endif
46 
47 /* default values for configuration options */
48 
49 #ifndef MAXCONS
50 #define MAXCONS		16
51 #endif
52 
53 #ifdef SC_NO_SYSMOUSE
54 #undef SC_NO_CUTPASTE
55 #define SC_NO_CUTPASTE	1
56 #endif
57 
58 #ifdef SC_NO_MODE_CHANGE
59 #undef SC_PIXEL_MODE
60 #endif
61 
62 /* Always load font data if the pixel (raster text) mode is to be used. */
63 #ifdef SC_PIXEL_MODE
64 #undef SC_NO_FONT_LOADING
65 #endif
66 
67 /*
68  * If font data is not available, the `arrow'-shaped mouse cursor cannot
69  * be drawn.  Use the alternative drawing method.
70  */
71 #ifdef SC_NO_FONT_LOADING
72 #undef SC_ALT_MOUSE_IMAGE
73 #define SC_ALT_MOUSE_IMAGE 1
74 #endif
75 
76 #ifndef SC_CURSOR_CHAR
77 #define SC_CURSOR_CHAR	(0x07)
78 #endif
79 
80 #ifndef SC_MOUSE_CHAR
81 #define SC_MOUSE_CHAR	(0xd0)
82 #endif
83 
84 #if SC_MOUSE_CHAR <= SC_CURSOR_CHAR && SC_CURSOR_CHAR < (SC_MOUSE_CHAR + 4)
85 #undef SC_CURSOR_CHAR
86 #define SC_CURSOR_CHAR	(SC_MOUSE_CHAR + 4)
87 #endif
88 
89 #ifndef SC_DEBUG_LEVEL
90 #define SC_DEBUG_LEVEL	0
91 #endif
92 
93 #define DPRINTF(l, p)	if (SC_DEBUG_LEVEL >= (l)) printf p
94 
95 #ifndef __sparc64__
96 #define SC_DRIVER_NAME	"sc"
97 #else
98 /*
99  * Use a different driver name on sparc64 so it does not get confused
100  * with the system controller devices which are also termed 'sc' in OFW.
101  */
102 #define SC_DRIVER_NAME	"syscons"
103 #endif
104 #define SC_VTY(dev)	minor(dev)
105 #define SC_DEV(sc, vty)	((sc)->dev[(vty) - (sc)->first_vty])
106 #define SC_STAT(dev)	(*((scr_stat **)&(dev)->si_drv1))
107 
108 /* printable chars */
109 #ifndef PRINTABLE
110 #define PRINTABLE(ch)	((ch) > 0x1b || ((ch) > 0x0d && (ch) < 0x1b) \
111 			 || (ch) < 0x07)
112 #endif
113 
114 /* macros for "intelligent" screen update */
115 #define mark_for_update(scp, x)	{\
116 			  	    if ((x) < scp->start) scp->start = (x);\
117 				    else if ((x) > scp->end) scp->end = (x);\
118 				}
119 #define mark_all(scp)		{\
120 				    scp->start = 0;\
121 				    scp->end = scp->xsize * scp->ysize - 1;\
122 				}
123 
124 /* vty status flags (scp->status) */
125 #define UNKNOWN_MODE	0x00010		/* unknown video mode */
126 #define SWITCH_WAIT_REL	0x00080		/* waiting for vty release */
127 #define SWITCH_WAIT_ACQ	0x00100		/* waiting for vty ack */
128 #define BUFFER_SAVED	0x00200		/* vty buffer is saved */
129 #define CURSOR_ENABLED 	0x00400		/* text cursor is enabled */
130 #define MOUSE_MOVED	0x01000		/* mouse cursor has moved */
131 #define MOUSE_CUTTING	0x02000		/* mouse cursor is cutting text */
132 #define MOUSE_VISIBLE	0x04000		/* mouse cursor is showing */
133 #define GRAPHICS_MODE	0x08000		/* vty is in a graphics mode */
134 #define PIXEL_MODE	0x10000		/* vty is in a raster text mode */
135 #define SAVER_RUNNING	0x20000		/* screen saver is running */
136 #define VR_CURSOR_BLINK	0x40000		/* blinking text cursor */
137 #define VR_CURSOR_ON	0x80000		/* text cursor is on */
138 #define MOUSE_HIDDEN	0x100000	/* mouse cursor is temporarily hidden */
139 
140 /* misc defines */
141 #define FALSE		0
142 #define TRUE		1
143 
144 /*
145    The following #defines are hard-coded for a maximum text
146    resolution corresponding to a maximum framebuffer
147    resolution of 1600x1200 with an 8x8 font...
148 */
149 #define	COL		200
150 #define	ROW		150
151 
152 #define PCBURST		128
153 
154 #ifndef BELL_DURATION
155 #define BELL_DURATION	((5 * hz + 99) / 100)
156 #define BELL_PITCH	800
157 #endif
158 
159 /* virtual terminal buffer */
160 typedef struct sc_vtb {
161 	int		vtb_flags;
162 #define VTB_VALID	(1 << 0)
163 #define VTB_ALLOCED	(1 << 1)
164 	int		vtb_type;
165 #define VTB_INVALID	0
166 #define VTB_MEMORY	1
167 #define VTB_FRAMEBUFFER	2
168 #define VTB_RINGBUFFER	3
169 	int		vtb_cols;
170 	int		vtb_rows;
171 	int		vtb_size;
172 	vm_offset_t	vtb_buffer;
173 	int		vtb_tail;	/* valid for VTB_RINGBUFFER only */
174 } sc_vtb_t;
175 
176 /* text cursor attributes */
177 struct cursor_attr {
178 	int		flags;
179 	int		base;
180 	int		height;
181 };
182 
183 /* softc */
184 
185 struct keyboard;
186 struct video_adapter;
187 struct scr_stat;
188 struct tty;
189 
190 typedef struct sc_softc {
191 	int		unit;			/* unit # */
192 	int		config;			/* configuration flags */
193 #define SC_VESA800X600	(1 << 7)
194 #define SC_AUTODETECT_KBD (1 << 8)
195 #define SC_KERNEL_CONSOLE (1 << 9)
196 
197 	int		flags;			/* status flags */
198 #define SC_VISUAL_BELL	(1 << 0)
199 #define SC_QUIET_BELL	(1 << 1)
200 #if 0 /* not used anymore */
201 #define SC_BLINK_CURSOR	(1 << 2)
202 #define SC_CHAR_CURSOR	(1 << 3)
203 #endif
204 #define SC_MOUSE_ENABLED (1 << 4)
205 #define	SC_SCRN_IDLE	(1 << 5)
206 #define	SC_SCRN_BLANKED	(1 << 6)
207 #define	SC_SAVER_FAILED	(1 << 7)
208 #define	SC_SCRN_VTYLOCK	(1 << 8)
209 
210 #define	SC_INIT_DONE	(1 << 16)
211 #define	SC_SPLASH_SCRN	(1 << 17)
212 
213 	int		keyboard;		/* -1 if unavailable */
214 	struct keyboard	*kbd;
215 
216 	int		adapter;
217 	struct video_adapter *adp;
218 	int		initial_mode;		/* initial video mode */
219 
220 	int		first_vty;
221 	int		vtys;
222 	struct cdev **dev;
223 	struct scr_stat	*cur_scp;
224 	struct scr_stat	*new_scp;
225 	struct scr_stat	*old_scp;
226 	int     	delayed_next_scr;
227 
228 	char        	font_loading_in_progress;
229 	char        	switch_in_progress;
230 	char        	videoio_in_progress;
231 	char        	write_in_progress;
232 	char        	blink_in_progress;
233 
234 	long		scrn_time_stamp;
235 
236 	struct cursor_attr dflt_curs_attr;
237 	struct cursor_attr curs_attr;
238 
239 	u_char      	scr_map[256];
240 	u_char      	scr_rmap[256];
241 
242 #ifdef _SC_MD_SOFTC_DECLARED_
243 	sc_md_softc_t	md;			/* machine dependent vars */
244 #endif
245 
246 #ifndef SC_NO_PALETTE_LOADING
247 	u_char        	palette[256*3];
248 #endif
249 
250 #ifndef SC_NO_FONT_LOADING
251 	int     	fonts_loaded;
252 #define FONT_8		2
253 #define FONT_14		4
254 #define FONT_16		8
255 #define FONT_22		8
256 	u_char		*font_8;
257 	u_char		*font_14;
258 	u_char		*font_16;
259 	u_char		*font_22;
260 #endif
261 
262 	u_char		cursor_char;
263 	u_char		mouse_char;
264 
265 } sc_softc_t;
266 
267 /* virtual screen */
268 typedef struct scr_stat {
269 	int		index;			/* index of this vty */
270 	struct sc_softc *sc;			/* pointer to softc */
271 	struct sc_rndr_sw *rndr;		/* renderer */
272 #ifndef __sparc64__
273 	sc_vtb_t	scr;
274 #endif
275 	sc_vtb_t	vtb;
276 
277 	int 		xpos;			/* current X position */
278 	int 		ypos;			/* current Y position */
279 	int 		xsize;			/* X text size */
280 	int 		ysize;			/* Y text size */
281 	int 		xpixel;			/* X graphics size */
282 	int 		ypixel;			/* Y graphics size */
283 	int		xoff;			/* X offset in pixel mode */
284 	int		yoff;			/* Y offset in pixel mode */
285 
286 	u_char		*font;			/* current font */
287 	int		font_size;		/* fontsize in Y direction */
288 	int		font_width;		/* fontsize in X direction */
289 
290 	int		start;			/* modified area start */
291 	int		end;			/* modified area end */
292 
293 	struct sc_term_sw *tsw;
294 	void		*ts;
295 
296 	int	 	status;			/* status (bitfield) */
297 	int		kbd_mode;		/* keyboard I/O mode */
298 
299 	int		cursor_pos;		/* cursor buffer position */
300 	int		cursor_oldpos;		/* cursor old buffer position */
301 	u_short		cursor_saveunder_char;	/* saved char under cursor */
302 	u_short		cursor_saveunder_attr;	/* saved attr under cursor */
303 	struct cursor_attr dflt_curs_attr;
304 	struct cursor_attr curr_curs_attr;
305 	struct cursor_attr curs_attr;
306 
307 	int		mouse_pos;		/* mouse buffer position */
308 	int		mouse_oldpos;		/* mouse old buffer position */
309 	short		mouse_xpos;		/* mouse x coordinate */
310 	short		mouse_ypos;		/* mouse y coordinate */
311 	short		mouse_oldxpos;		/* mouse previous x coordinate */
312 	short		mouse_oldypos;		/* mouse previous y coordinate */
313 	short		mouse_buttons;		/* mouse buttons */
314 	int		mouse_cut_start;	/* mouse cut start pos */
315 	int		mouse_cut_end;		/* mouse cut end pos */
316 	struct proc 	*mouse_proc;		/* proc* of controlling proc */
317 	pid_t 		mouse_pid;		/* pid of controlling proc */
318 	int		mouse_signal;		/* signal # to report with */
319 
320 	u_short		bell_duration;
321 	u_short		bell_pitch;
322 
323 	u_char		border;			/* border color */
324 	int	 	mode;			/* mode */
325 	pid_t 		pid;			/* pid of controlling proc */
326 	struct proc 	*proc;			/* proc* of controlling proc */
327 	struct vt_mode 	smode;			/* switch mode */
328 
329 	sc_vtb_t	*history;		/* circular history buffer */
330 	int		history_pos;		/* position shown on screen */
331 	int		history_size;		/* size of history buffer */
332 
333 	int		splash_save_mode;	/* saved mode for splash screen */
334 	int		splash_save_status;	/* saved status for splash screen */
335 #ifdef _SCR_MD_STAT_DECLARED_
336 	scr_md_stat_t	md;			/* machine dependent vars */
337 #endif
338 } scr_stat;
339 
340 #ifndef SC_NORM_ATTR
341 #define SC_NORM_ATTR		(FG_LIGHTGREY | BG_BLACK)
342 #endif
343 #ifndef SC_NORM_REV_ATTR
344 #define SC_NORM_REV_ATTR	(FG_BLACK | BG_LIGHTGREY)
345 #endif
346 #ifndef SC_KERNEL_CONS_ATTR
347 #define SC_KERNEL_CONS_ATTR	(FG_WHITE | BG_BLACK)
348 #endif
349 #ifndef SC_KERNEL_CONS_REV_ATTR
350 #define SC_KERNEL_CONS_REV_ATTR	(FG_BLACK | BG_LIGHTGREY)
351 #endif
352 
353 /* terminal emulator */
354 
355 #ifndef SC_DFLT_TERM
356 #define SC_DFLT_TERM	"*"			/* any */
357 #endif
358 
359 typedef int	sc_term_init_t(scr_stat *scp, void **tcp, int code);
360 #define SC_TE_COLD_INIT	0
361 #define SC_TE_WARM_INIT	1
362 typedef int	sc_term_term_t(scr_stat *scp, void **tcp);
363 typedef void	sc_term_puts_t(scr_stat *scp, u_char *buf, int len);
364 typedef int	sc_term_ioctl_t(scr_stat *scp, struct tty *tp, u_long cmd,
365 				caddr_t data, int flag, struct thread *td);
366 typedef int	sc_term_reset_t(scr_stat *scp, int code);
367 #define SC_TE_HARD_RESET 0
368 #define SC_TE_SOFT_RESET 1
369 typedef void	sc_term_default_attr_t(scr_stat *scp, int norm, int rev);
370 typedef void	sc_term_clear_t(scr_stat *scp);
371 typedef void	sc_term_notify_t(scr_stat *scp, int event);
372 #define SC_TE_NOTIFY_VTSWITCH_IN	0
373 #define SC_TE_NOTIFY_VTSWITCH_OUT	1
374 typedef int	sc_term_input_t(scr_stat *scp, int c, struct tty *tp);
375 
376 typedef struct sc_term_sw {
377 	LIST_ENTRY(sc_term_sw)	link;
378 	char 			*te_name;	/* name of the emulator */
379 	char 			*te_desc;	/* description */
380 	char 			*te_renderer;	/* matching renderer */
381 	size_t			te_size;	/* size of internal buffer */
382 	int			te_refcount;	/* reference counter */
383 	sc_term_init_t		*te_init;
384 	sc_term_term_t		*te_term;
385 	sc_term_puts_t		*te_puts;
386 	sc_term_ioctl_t		*te_ioctl;
387 	sc_term_reset_t		*te_reset;
388 	sc_term_default_attr_t	*te_default_attr;
389 	sc_term_clear_t		*te_clear;
390 	sc_term_notify_t	*te_notify;
391 	sc_term_input_t		*te_input;
392 } sc_term_sw_t;
393 
394 #define SCTERM_MODULE(name, sw)					\
395 	DATA_SET(scterm_set, sw);				\
396 	static int						\
397 	scterm_##name##_event(module_t mod, int type, void *data) \
398 	{							\
399 		switch (type) {					\
400 		case MOD_LOAD:					\
401 			return sc_term_add(&sw);		\
402 		case MOD_UNLOAD:				\
403 			if (sw.te_refcount > 0)			\
404 				return EBUSY;			\
405 			return sc_term_remove(&sw);		\
406 		default:					\
407 			return EOPNOTSUPP;			\
408 			break;					\
409 		}						\
410 		return 0;					\
411 	}							\
412 	static moduledata_t scterm_##name##_mod = {		\
413 		"scterm-" #name,				\
414 		scterm_##name##_event,				\
415 		NULL,						\
416 	};							\
417 	DECLARE_MODULE(scterm_##name, scterm_##name##_mod,	\
418 		       SI_SUB_DRIVERS, SI_ORDER_MIDDLE)
419 
420 /* renderer function table */
421 typedef void	vr_init_t(scr_stat *scp);
422 typedef void	vr_clear_t(scr_stat *scp, int c, int attr);
423 typedef void	vr_draw_border_t(scr_stat *scp, int color);
424 typedef void	vr_draw_t(scr_stat *scp, int from, int count, int flip);
425 typedef void	vr_set_cursor_t(scr_stat *scp, int base, int height, int blink);
426 typedef void	vr_draw_cursor_t(scr_stat *scp, int at, int blink,
427 				 int on, int flip);
428 typedef void	vr_blink_cursor_t(scr_stat *scp, int at, int flip);
429 typedef void	vr_set_mouse_t(scr_stat *scp);
430 typedef void	vr_draw_mouse_t(scr_stat *scp, int x, int y, int on);
431 
432 typedef struct sc_rndr_sw {
433 	vr_init_t		*init;
434 	vr_clear_t		*clear;
435 	vr_draw_border_t	*draw_border;
436 	vr_draw_t		*draw;
437 	vr_set_cursor_t		*set_cursor;
438 	vr_draw_cursor_t	*draw_cursor;
439 	vr_blink_cursor_t	*blink_cursor;
440 	vr_set_mouse_t		*set_mouse;
441 	vr_draw_mouse_t		*draw_mouse;
442 } sc_rndr_sw_t;
443 
444 typedef struct sc_renderer {
445 	char			*name;
446 	int			mode;
447 	sc_rndr_sw_t		*rndrsw;
448 	LIST_ENTRY(sc_renderer)	link;
449 } sc_renderer_t;
450 
451 #define RENDERER(name, mode, sw, set)				\
452 	static struct sc_renderer scrndr_##name##_##mode = {	\
453 		#name, mode, &sw				\
454 	};							\
455 	DATA_SET(scrndr_set, scrndr_##name##_##mode);		\
456 	DATA_SET(set, scrndr_##name##_##mode)
457 
458 #define RENDERER_MODULE(name, set)				\
459 	SET_DECLARE(set, sc_renderer_t);			\
460 	static int						\
461 	scrndr_##name##_event(module_t mod, int type, void *data) \
462 	{							\
463 		sc_renderer_t **list;				\
464 		int error = 0;					\
465 		switch (type) {					\
466 		case MOD_LOAD:					\
467 			SET_FOREACH(list, set) {		\
468 				error = sc_render_add(*list);	\
469 				if (error)			\
470 					break;			\
471 			}					\
472 			break;					\
473 		case MOD_UNLOAD:				\
474 			SET_FOREACH(list, set) {		\
475 				error = sc_render_remove(*list);\
476 				if (error)			\
477 					break;			\
478 			}					\
479 			break;					\
480 		default:					\
481 			return EOPNOTSUPP;			\
482 			break;					\
483 		}						\
484 		return error;					\
485 	}							\
486 	static moduledata_t scrndr_##name##_mod = {		\
487 		"scrndr-" #name,				\
488 		scrndr_##name##_event,				\
489 		NULL,						\
490 	};							\
491 	DECLARE_MODULE(scrndr_##name, scrndr_##name##_mod, 	\
492 		       SI_SUB_DRIVERS, SI_ORDER_MIDDLE)
493 
494 typedef struct {
495 	int		cursor_start;
496 	int		cursor_end;
497 	int		shift_state;
498 	int		bell_pitch;
499 } bios_values_t;
500 
501 /* other macros */
502 #define ISTEXTSC(scp)	(!((scp)->status 				\
503 			  & (UNKNOWN_MODE | GRAPHICS_MODE | PIXEL_MODE)))
504 #define ISGRAPHSC(scp)	(((scp)->status 				\
505 			  & (UNKNOWN_MODE | GRAPHICS_MODE)))
506 #define ISPIXELSC(scp)	(((scp)->status 				\
507 			  & (UNKNOWN_MODE | GRAPHICS_MODE | PIXEL_MODE))\
508 			  == PIXEL_MODE)
509 #define ISUNKNOWNSC(scp) ((scp)->status & UNKNOWN_MODE)
510 
511 #define ISMOUSEAVAIL(af) ((af) & V_ADP_FONT)
512 #define ISFONTAVAIL(af)	((af) & V_ADP_FONT)
513 #define ISPALAVAIL(af)	((af) & V_ADP_PALETTE)
514 
515 #define ISSIGVALID(sig)	((sig) > 0 && (sig) < NSIG)
516 
517 #define kbd_read_char(kbd, wait)					\
518 		(*kbdsw[(kbd)->kb_index]->read_char)((kbd), (wait))
519 #define kbd_check_char(kbd)						\
520 		(*kbdsw[(kbd)->kb_index]->check_char)((kbd))
521 #define kbd_enable(kbd)							\
522 		(*kbdsw[(kbd)->kb_index]->enable)((kbd))
523 #define kbd_disable(kbd)						\
524 		(*kbdsw[(kbd)->kb_index]->disable)((kbd))
525 #define kbd_lock(kbd, lockf)						\
526 		(*kbdsw[(kbd)->kb_index]->lock)((kbd), (lockf))
527 #define kbd_ioctl(kbd, cmd, arg)					\
528 	    (((kbd) == NULL) ?						\
529 		ENODEV : (*kbdsw[(kbd)->kb_index]->ioctl)((kbd), (cmd), (arg)))
530 #define kbd_clear_state(kbd)						\
531 		(*kbdsw[(kbd)->kb_index]->clear_state)((kbd))
532 #define kbd_get_fkeystr(kbd, fkey, len)					\
533 		(*kbdsw[(kbd)->kb_index]->get_fkeystr)((kbd), (fkey), (len))
534 #define kbd_poll(kbd, on)						\
535 		(*kbdsw[(kbd)->kb_index]->poll)((kbd), (on))
536 
537 /* syscons.c */
538 extern int 	(*sc_user_ioctl)(struct cdev *dev, u_long cmd, caddr_t data,
539 				 int flag, struct thread *td);
540 
541 int		sc_probe_unit(int unit, int flags);
542 int		sc_attach_unit(int unit, int flags);
543 
544 int		set_mode(scr_stat *scp);
545 
546 void		sc_set_border(scr_stat *scp, int color);
547 void		sc_load_font(scr_stat *scp, int page, int size, int width,
548 			     u_char *font, int base, int count);
549 void		sc_save_font(scr_stat *scp, int page, int size, int width,
550 			     u_char *font, int base, int count);
551 void		sc_show_font(scr_stat *scp, int page);
552 
553 void		sc_touch_scrn_saver(void);
554 void		sc_puts(scr_stat *scp, u_char *buf, int len);
555 void		sc_draw_cursor_image(scr_stat *scp);
556 void		sc_remove_cursor_image(scr_stat *scp);
557 void		sc_set_cursor_image(scr_stat *scp);
558 void		sc_change_cursor_shape(scr_stat *scp, int flags,
559 				       int base, int height);
560 int		sc_clean_up(scr_stat *scp);
561 int		sc_switch_scr(sc_softc_t *sc, u_int next_scr);
562 void		sc_alloc_scr_buffer(scr_stat *scp, int wait, int discard);
563 int		sc_init_emulator(scr_stat *scp, char *name);
564 void		sc_paste(scr_stat *scp, u_char *p, int count);
565 void		sc_bell(scr_stat *scp, int pitch, int duration);
566 
567 /* schistory.c */
568 #ifndef SC_NO_HISTORY
569 int		sc_alloc_history_buffer(scr_stat *scp, int lines,
570 					int prev_ysize, int wait);
571 void		sc_free_history_buffer(scr_stat *scp, int prev_ysize);
572 void		sc_hist_save(scr_stat *scp);
573 #define		sc_hist_save_one_line(scp, from)	\
574 		sc_vtb_append(&(scp)->vtb, (from), (scp)->history, (scp)->xsize)
575 int		sc_hist_restore(scr_stat *scp);
576 void		sc_hist_home(scr_stat *scp);
577 void		sc_hist_end(scr_stat *scp);
578 int		sc_hist_up_line(scr_stat *scp);
579 int		sc_hist_down_line(scr_stat *scp);
580 int		sc_hist_ioctl(struct tty *tp, u_long cmd, caddr_t data,
581 			      int flag, struct thread *td);
582 #endif /* SC_NO_HISTORY */
583 
584 /* scmouse.c */
585 #ifndef SC_NO_CUTPASTE
586 void		sc_alloc_cut_buffer(scr_stat *scp, int wait);
587 void		sc_draw_mouse_image(scr_stat *scp);
588 void		sc_remove_mouse_image(scr_stat *scp);
589 int		sc_inside_cutmark(scr_stat *scp, int pos);
590 void		sc_remove_cutmarking(scr_stat *scp);
591 void		sc_remove_all_cutmarkings(sc_softc_t *scp);
592 void		sc_remove_all_mouse(sc_softc_t *scp);
593 void		sc_mouse_paste(scr_stat *scp);
594 #else
595 #define		sc_draw_mouse_image(scp)
596 #define		sc_remove_mouse_image(scp)
597 #define		sc_inside_cutmark(scp, pos)	FALSE
598 #define		sc_remove_cutmarking(scp)
599 #define		sc_remove_all_cutmarkings(scp)
600 #define		sc_remove_all_mouse(scp)
601 #define		sc_mouse_paste(scp)
602 #endif /* SC_NO_CUTPASTE */
603 #ifndef SC_NO_SYSMOUSE
604 void		sc_mouse_move(scr_stat *scp, int x, int y);
605 int		sc_mouse_ioctl(struct tty *tp, u_long cmd, caddr_t data,
606 			       int flag, struct thread *td);
607 #endif /* SC_NO_SYSMOUSE */
608 
609 /* scvidctl.c */
610 int		sc_set_text_mode(scr_stat *scp, struct tty *tp, int mode,
611 				 int xsize, int ysize, int fontsize,
612 				 int font_width);
613 int		sc_set_graphics_mode(scr_stat *scp, struct tty *tp, int mode);
614 int		sc_set_pixel_mode(scr_stat *scp, struct tty *tp, int xsize,
615 				  int ysize, int fontsize, int font_width);
616 int		sc_vid_ioctl(struct tty *tp, u_long cmd, caddr_t data, int flag,
617 			     struct thread *td);
618 
619 int		sc_render_add(sc_renderer_t *rndr);
620 int		sc_render_remove(sc_renderer_t *rndr);
621 sc_rndr_sw_t	*sc_render_match(scr_stat *scp, char *name, int mode);
622 
623 /* scvtb.c */
624 void		sc_vtb_init(sc_vtb_t *vtb, int type, int cols, int rows,
625 			    void *buffer, int wait);
626 void		sc_vtb_destroy(sc_vtb_t *vtb);
627 size_t		sc_vtb_size(int cols, int rows);
628 void		sc_vtb_clear(sc_vtb_t *vtb, int c, int attr);
629 
630 int		sc_vtb_getc(sc_vtb_t *vtb, int at);
631 int		sc_vtb_geta(sc_vtb_t *vtb, int at);
632 void		sc_vtb_putc(sc_vtb_t *vtb, int at, int c, int a);
633 vm_offset_t	sc_vtb_putchar(sc_vtb_t *vtb, vm_offset_t p, int c, int a);
634 vm_offset_t	sc_vtb_pointer(sc_vtb_t *vtb, int at);
635 int		sc_vtb_pos(sc_vtb_t *vtb, int pos, int offset);
636 
637 #define		sc_vtb_tail(vtb)	((vtb)->vtb_tail)
638 #define		sc_vtb_rows(vtb)	((vtb)->vtb_rows)
639 #define		sc_vtb_cols(vtb)	((vtb)->vtb_cols)
640 
641 void		sc_vtb_copy(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2, int to,
642 			    int count);
643 void		sc_vtb_append(sc_vtb_t *vtb1, int from, sc_vtb_t *vtb2,
644 			      int count);
645 void		sc_vtb_seek(sc_vtb_t *vtb, int pos);
646 void		sc_vtb_erase(sc_vtb_t *vtb, int at, int count, int c, int attr);
647 void		sc_vtb_move(sc_vtb_t *vtb, int from, int to, int count);
648 void		sc_vtb_delete(sc_vtb_t *vtb, int at, int count, int c, int attr);
649 void		sc_vtb_ins(sc_vtb_t *vtb, int at, int count, int c, int attr);
650 
651 /* sysmouse.c */
652 int		sysmouse_event(mouse_info_t *info);
653 
654 /* scterm.c */
655 void		sc_move_cursor(scr_stat *scp, int x, int y);
656 void		sc_clear_screen(scr_stat *scp);
657 int		sc_term_add(sc_term_sw_t *sw);
658 int		sc_term_remove(sc_term_sw_t *sw);
659 sc_term_sw_t	*sc_term_match(char *name);
660 sc_term_sw_t	*sc_term_match_by_number(int index);
661 
662 /* machine dependent functions */
663 int		sc_max_unit(void);
664 sc_softc_t	*sc_get_softc(int unit, int flags);
665 sc_softc_t	*sc_find_softc(struct video_adapter *adp, struct keyboard *kbd);
666 int		sc_get_cons_priority(int *unit, int *flags);
667 void		sc_get_bios_values(bios_values_t *values);
668 int		sc_tone(int herz);
669 
670 #endif /* !_DEV_SYSCONS_SYSCONS_H_ */
671