vt.h revision 257724
1/*-
2 * Copyright (c) 2009, 2013 The FreeBSD Foundation
3 * All rights reserved.
4 *
5 * This software was developed by Ed Schouten under sponsorship from the
6 * FreeBSD Foundation.
7 *
8 * Portions of this software were developed by Oleksandr Rybalko
9 * under sponsorship from the FreeBSD Foundation.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 *    notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 *    notice, this list of conditions and the following disclaimer in the
18 *    documentation and/or other materials provided with the distribution.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: user/ed/newcons/sys/dev/vt/vt.h 257724 2013-11-05 23:00:26Z ray $
33 */
34
35#ifndef _DEV_VT_VT_H_
36#define	_DEV_VT_VT_H_
37
38#include <sys/param.h>
39#include <sys/_lock.h>
40#include <sys/_mutex.h>
41#include <sys/callout.h>
42#include <sys/condvar.h>
43#include <sys/consio.h>
44#include <sys/kbio.h>
45#include <sys/terminal.h>
46#include <sys/sysctl.h>
47
48#define	VT_MAXWINDOWS	12
49#define	VT_CONSWINDOW	0
50
51#define	SC_DRIVER_NAME	"vt"
52#define	DPRINTF(_l, ...)	if (vt_debug > (_l)) printf( __VA_ARGS__ )
53#define	ISSIGVALID(sig)	((sig) > 0 && (sig) < NSIG)
54
55#define	VT_SYSCTL_INT(_name, _default, _descr)				\
56static int vt_##_name = _default;					\
57SYSCTL_INT(_kern_vt, OID_AUTO, _name, CTLFLAG_RW, &vt_##_name, _default,\
58		_descr);						\
59TUNABLE_INT("kern.vt." #_name, &vt_##_name);
60
61struct vt_driver;
62
63void vt_allocate(struct vt_driver *, void *);
64
65typedef unsigned int 	vt_axis_t;
66
67/*
68 * List of locks
69 * (d)	locked by vd_lock
70 * (b)	locked by vb_lock
71 * (G)	locked by Giant
72 * (u)	unlocked, locked by higher levels
73 * (c)	const until freeing
74 * (?)	yet to be determined
75 */
76
77/*
78 * Per-device datastructure.
79 */
80
81struct vt_device {
82	struct vt_window	*vd_windows[VT_MAXWINDOWS]; /* (c) Windows. */
83	struct vt_window	*vd_curwindow;	/* (d) Current window. */
84	const struct vt_driver	*vd_driver;	/* (c) Graphics driver. */
85	void			*vd_softc;	/* (u) Driver data. */
86	vt_axis_t		 vd_width;	/* (?) Screen width. */
87	vt_axis_t		 vd_height;	/* (?) Screen height. */
88	struct mtx		 vd_lock;	/* Per-device lock. */
89	struct cv		 vd_winswitch;	/* (d) Window switch notify. */
90	struct callout		 vd_timer;	/* (d) Display timer. */
91	int			 vd_flags;	/* (d) Device flags. */
92#define	VDF_TEXTMODE	0x01	/* Do text mode rendering. */
93#define	VDF_SPLASH	0x02	/* Splash screen active. */
94#define	VDF_ASYNC	0x04	/* vt_timer() running. */
95#define	VDF_INVALID	0x08	/* Entire screen should be re-rendered. */
96#define	VDF_DEAD	0x10	/* Early probing found nothing. */
97#define	VDF_INITIALIZED	0x20	/* vtterm_cnprobe already done. */
98	int			 vd_keyboard;	/* (G) Keyboard index. */
99	unsigned int		 vd_unit;	/* (c) Device unit. */
100};
101
102/*
103 * Per-window terminal screen buffer.
104 *
105 * Because redrawing is performed asynchronously, the buffer keeps track
106 * of a rectangle that needs to be redrawn (vb_dirtyrect).  Because this
107 * approach seemed to cause suboptimal performance (when the top left
108 * and the bottom right of the screen are modified), it also uses a set
109 * of bitmasks to keep track of the rows and columns (mod 64) that have
110 * been modified.
111 */
112
113struct vt_bufmask {
114	uint64_t		 vbm_row, vbm_col;
115#define	VBM_DIRTY		UINT64_MAX
116};
117
118struct vt_buf {
119	struct mtx		 vb_lock;	/* Buffer lock. */
120	term_pos_t		 vb_scr_size;	/* (b) Screen dimensions. */
121	int			 vb_flags;	/* (b) Flags. */
122#define	VBF_CURSOR	0x1	/* Cursor visible. */
123#define	VBF_STATIC	0x2	/* Buffer is statically allocated. */
124#define	VBF_MTX_INIT	0x4	/* Mutex initialized. */
125#define	VBF_SCROLL	0x8	/* scroll locked mode. */
126#define	VBF_HISTORY_FULL 0x10	/* All rows filled. */
127	int			 vb_history_size;
128#define	VBF_DEFAULT_HISTORY_SIZE	500
129	int			 vb_roffset;	/* (b) History rows offset. */
130	int			 vb_curroffset;	/* (b) Saved rows offset. */
131	term_pos_t		 vb_cursor;	/* (u) Cursor position. */
132	term_rect_t		 vb_dirtyrect;	/* (b) Dirty rectangle. */
133	struct vt_bufmask	 vb_dirtymask;	/* (b) Dirty bitmasks. */
134	term_char_t		*vb_buffer;	/* (u) Data buffer. */
135	term_char_t		**vb_rows;	/* (u) Array of rows */
136};
137
138void vtbuf_copy(struct vt_buf *, const term_rect_t *, const term_pos_t *);
139void vtbuf_fill_locked(struct vt_buf *, const term_rect_t *, term_char_t);
140void vtbuf_init_early(struct vt_buf *);
141void vtbuf_init(struct vt_buf *, const term_pos_t *);
142void vtbuf_grow(struct vt_buf *, const term_pos_t *, int);
143void vtbuf_putchar(struct vt_buf *, const term_pos_t *, term_char_t);
144void vtbuf_cursor_position(struct vt_buf *, const term_pos_t *);
145void vtbuf_cursor_visibility(struct vt_buf *, int);
146void vtbuf_undirty(struct vt_buf *, term_rect_t *, struct vt_bufmask *);
147void vtbuf_sethistory_size(struct vt_buf *, int);
148
149#define	VTBUF_SLCK_ENABLE(vb)	(vb)->vb_flags |= VBF_SCROLL
150#define	VTBUF_SLCK_DISABLE(vb)	(vb)->vb_flags &= ~VBF_SCROLL
151
152#define	VTBUF_MAX_HEIGHT(vb) \
153	((vb)->vb_history_size)
154#define	VTBUF_GET_ROW(vb, r) \
155	((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)])
156#define	VTBUF_GET_FIELD(vb, r, c) \
157	((vb)->vb_rows[((vb)->vb_roffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)])
158#define	VTBUF_FIELD(vb, r, c) \
159	((vb)->vb_rows[((vb)->vb_curroffset + (r)) % VTBUF_MAX_HEIGHT(vb)][(c)])
160#define	VTBUF_ISCURSOR(vb, r, c) \
161	((vb)->vb_flags & VBF_CURSOR && \
162	(vb)->vb_cursor.tp_row == (r) && (vb)->vb_cursor.tp_col == (c))
163#define	VTBUF_DIRTYROW(mask, row) \
164	((mask)->vbm_row & ((uint64_t)1 << ((row) % 64)))
165#define	VTBUF_DIRTYCOL(mask, col) \
166	((mask)->vbm_col & ((uint64_t)1 << ((col) % 64)))
167#define	VTBUF_SPACE_CHAR	(' ' | TC_WHITE << 26 | TC_BLACK << 29)
168
169#define	VHS_SET	0
170#define	VHS_CUR	1
171#define	VHS_END	2
172int vthistory_seek(struct vt_buf *, int offset, int whence);
173void vthistory_addlines(struct vt_buf *vb, int offset);
174void vthistory_getpos(const struct vt_buf *, unsigned int *offset);
175
176/*
177 * Per-window datastructure.
178 */
179
180struct vt_window {
181	struct vt_device	*vw_device;	/* (c) Device. */
182	struct terminal		*vw_terminal;	/* (c) Terminal. */
183	struct vt_buf		 vw_buf;	/* (u) Screen buffer. */
184	struct vt_font		*vw_font;	/* (d) Graphical font. */
185	unsigned int		 vw_number;	/* (c) Window number. */
186	int			 vw_kbdmode;	/* (?) Keyboard mode. */
187	char			*vw_kbdsq;	/* Escape sequence queue*/
188	unsigned int		 vw_flags;	/* (d) Per-window flags. */
189#define	VWF_BUSY	0x1	/* Busy reconfiguring device. */
190#define	VWF_OPENED	0x2	/* TTY in use. */
191#define	VWF_SCROLL	0x4	/* Keys influence scrollback. */
192#define	VWF_CONSOLE	0x8	/* Kernel message console window. */
193#define	VWF_VTYLOCK	0x10	/* Prevent window switch. */
194#define	VWF_SWWAIT_REL	0x10000	/* Program wait for VT acquire is done. */
195#define	VWF_SWWAIT_ACQ	0x20000	/* Program wait for VT release is done. */
196	pid_t			 vw_pid;	/* Terminal holding process */
197	struct proc		*vw_proc;
198	struct vt_mode		 vw_smode;	/* switch mode */
199	struct callout		 vw_proc_dead_timer;
200	struct vt_window	*vw_switch_to;
201};
202
203#define	VT_AUTO		0		/* switching is automatic */
204#define	VT_PROCESS	1		/* switching controlled by prog */
205#define	VT_KERNEL	255		/* switching controlled in kernel */
206
207#define	IS_VT_PROC_MODE(vw)	((vw)->vw_smode.mode == VT_PROCESS)
208
209/*
210 * Per-device driver routines.
211 *
212 * vd_bitbltchr is used when the driver operates in graphics mode, while
213 * vd_putchar is used when the driver operates in text mode
214 * (VDF_TEXTMODE).
215 */
216
217typedef int vd_init_t(struct vt_device *vd);
218typedef void vd_postswitch_t(struct vt_device *vd);
219typedef void vd_blank_t(struct vt_device *vd, term_color_t color);
220typedef void vd_bitbltchr_t(struct vt_device *vd, const uint8_t *src,
221    vt_axis_t top, vt_axis_t left, unsigned int width, unsigned int height,
222    term_color_t fg, term_color_t bg);
223typedef void vd_putchar_t(struct vt_device *vd, term_char_t,
224    vt_axis_t top, vt_axis_t left, term_color_t fg, term_color_t bg);
225
226struct vt_driver {
227	/* Console attachment. */
228	vd_init_t	*vd_init;
229
230	/* Drawing. */
231	vd_blank_t	*vd_blank;
232	vd_bitbltchr_t	*vd_bitbltchr;
233
234	/* Text mode operation. */
235	vd_putchar_t	*vd_putchar;
236
237	/* Update display setting on vt switch. */
238	vd_postswitch_t	*vd_postswitch;
239
240	/* Priority to know which one can override */
241	int		vd_priority;
242#define	VD_PRIORITY_DUMB	10
243#define	VD_PRIORITY_GENERIC	100
244#define	VD_PRIORITY_SPECIFIC	1000
245};
246
247/*
248 * Console device madness.
249 *
250 * Utility macro to make early vt(4) instances work.
251 */
252
253extern const struct terminal_class vt_termclass;
254void vt_upgrade(struct vt_device *vd);
255
256#define	PIXEL_WIDTH(w)	((w) / 8)
257#define	PIXEL_HEIGHT(h)	((h) / 16)
258
259#ifndef VT_FB_DEFAULT_WIDTH
260#define	VT_FB_DEFAULT_WIDTH	640
261#endif
262#ifndef VT_FB_DEFAULT_HEIGHT
263#define	VT_FB_DEFAULT_HEIGHT	480
264#endif
265
266#define	VT_CONSDEV_DECLARE(driver, width, height, softc)		\
267static struct terminal	driver ## _consterm;				\
268static struct vt_window	driver ## _conswindow;				\
269static struct vt_device	driver ## _consdev = {				\
270	.vd_driver = &driver,						\
271	.vd_softc = (softc),						\
272	.vd_flags = VDF_INVALID,					\
273	.vd_windows = { [VT_CONSWINDOW] =  &driver ## _conswindow, },	\
274	.vd_curwindow = &driver ## _conswindow,				\
275};									\
276static term_char_t	driver ## _constextbuf[(width) * 		\
277	    (VBF_DEFAULT_HISTORY_SIZE)];				\
278static term_char_t	*driver ## _constextbufrows[			\
279	    VBF_DEFAULT_HISTORY_SIZE];					\
280static struct vt_window	driver ## _conswindow = {			\
281	.vw_number = VT_CONSWINDOW,					\
282	.vw_flags = VWF_CONSOLE,					\
283	.vw_buf = {							\
284		.vb_buffer = driver ## _constextbuf,			\
285		.vb_rows = driver ## _constextbufrows,			\
286		.vb_history_size = VBF_DEFAULT_HISTORY_SIZE,		\
287		.vb_curroffset = 0,					\
288		.vb_roffset = 0,					\
289		.vb_flags = VBF_STATIC,					\
290		.vb_scr_size = {					\
291			.tp_row = height,				\
292			.tp_col = width,				\
293		},							\
294	},								\
295	.vw_device = &driver ## _consdev,				\
296	.vw_terminal = &driver ## _consterm,				\
297	.vw_kbdmode = K_XLATE,						\
298};									\
299TERMINAL_DECLARE_EARLY(driver ## _consterm, vt_termclass,		\
300    &driver ## _conswindow);						\
301SYSINIT(vt_early_cons, SI_SUB_INT_CONFIG_HOOKS, SI_ORDER_ANY,		\
302    vt_upgrade, &driver ## _consdev)
303
304/*
305 * Fonts.
306 *
307 * Remapping tables are used to map Unicode points to glyphs.  They need
308 * to be sorted, because vtfont_lookup() performs a binary search.  Each
309 * font has two remapping tables, for normal and bold.  When a character
310 * is not present in bold, it uses a normal glyph.  When no glyph is
311 * available, it uses glyph 0, which is normally equal to U+FFFD.
312 */
313
314struct vt_font_map {
315	uint32_t		 vfm_src;
316	uint16_t		 vfm_dst;
317	uint16_t		 vfm_len;
318};
319
320struct vt_font {
321	struct vt_font_map	*vf_bold;
322	struct vt_font_map	*vf_normal;
323	uint8_t			*vf_bytes;
324	unsigned int		 vf_height, vf_width,
325				 vf_normal_length, vf_bold_length;
326	unsigned int		 vf_refcount;
327};
328
329const uint8_t	*vtfont_lookup(const struct vt_font *vf, term_char_t c);
330struct vt_font	*vtfont_ref(struct vt_font *vf);
331void		 vtfont_unref(struct vt_font *vf);
332int		 vtfont_load(vfnt_t *f, struct vt_font **ret);
333
334/* Sysmouse. */
335void sysmouse_process_event(mouse_info_t *mi);
336
337#endif /* !_DEV_VT_VT_H_ */
338