summaryrefslogtreecommitdiff
path: root/static/netbsd/man9/vcons.9
blob: f5b1f3c751cc41c6f6ad4e7874fa9e783892554d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
.\" $NetBSD: vcons.9,v 1.2 2006/02/13 19:57:58 wiz Exp $
.\"
.\" Copyright (c) 2006 Michael Lorenz
.\" All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\"    notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\"    notice, this list of conditions and the following disclaimer in the
.\"    documentation and/or other materials provided with the distribution.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.Dd February 12, 2006
.Dt VCONS 9
.Os
.Sh NAME
.Nm vcons
.Nd generic virtual console framework
.Sh SYNOPSIS
.In wscons/wsdisplay_vconsvar.h
.Ft int
.Fn vcons_init "struct vcons_data *vd" "void *cookie" \
"struct wsscreen_descr *desc" "struct wsdisplay_accessops *accops"
.Ft int
.Fn vcons_init_screen "struct vcons_data *vd" "struct vcons_screen *scr" \
"int exists" "long *defattr"
.Ft void
.Fn vcons_redraw_screen "struct vcons_screen *scr"
.Sh DESCRIPTION
These functions are used to setup and control the generic virtual
console framework.
.Pp
.\"
The
.Fn vcons_init
function initializes the framework, it needs to be called for each
driver that's going to use
.Nm .
.Pp
.Fn vcons_init_screen
adds a virtual screen to a display.
.Pp
.Fn vcons_redraw_screen
redraws a screen.
A driver should call it when returning to terminal emulation mode,
for instance when X exits.
.Pp
.\"
.Vt struct vcons_data
contains all information needed to manage virtual consoles on a display,
usually it will be a member of the driver's softc.
.Pp
.Vt struct vcons_screen
describes a virtual screen.
.Sh USAGE
.\"
To use vcons with a driver it needs to be initialized by calling
.Fn vcons_init ,
usually in the driver's attach function.
.Bl -tag -width cookieXX
.It Fa vd
should be a pointer to the driver's
.Vt struct vcons_data .
.It Fa cookie
should be a pointer to the driver's softc.
.It Fa desc
should point to a
.Vt struct wsscreen_descr
describing the default screen type for this display.
.It Fa accops
points to the driver's
.Vt struct wsdisplay_accessops
so
.Fn vcons_init
can fill it in with its own implementations of
.Fn alloc_screen ,
.Fn free_screen ,
and
.Fn show_screen .
.El
.Pp
A driver should however provide its own
.Fn ioctl
and
.Fn mmap
implementations.
Both will receive a pointer to the driver's
.Vt struct vcons_data
as first parameter.
.Pp
After initialization the driver needs to provide a callback function that
will be called whenever a screen is added.
Its purpose is to set up the
.Vt struct rasops_info
describing the screen.
After that the drawing methods in
.Vt struct rasops_info
will be replaced with wrappers which call the original drawing functions
(which may or may not be provided by the driver) only when the respective
screen is visible.
To add a virtual screen the driver one should call
.Fn vcons_init_screen
which will call the callback function described above, allocate storage for
characters and attributes based on whatever the callback set up in
.Vt struct rasops_info ,
and add the screen to a list kept in
.Vt struct vcons_data .
.Pp
The callback needs to have this form:
.Pp
.Ft void
.Fn init_screen "void *cookie" "struct vcons_screen *scr" "int existing" \
"long *defattr"
.Pp
and should be stored in the
.Va init_screen
member found in
.Vt struct vcons_data .
The arguments are:
.Bl -tag -width cookieXX
.It Fa cookie
is the cookie passed to
.Fn vcons_init
.It Fa scr
points to the
.Vt struct vcons_screen
being added, its
.Va scr_ri
member, a
.Vt struct rasops_info ,
needs to be filled in.
.It Fa existing
is non-zero if the screen already exists and is only added to the list.
.It Fa defattr
points to the screen's default text attribute.
It's filled in by
.Fn vcons_init_screen
by calling the
.Fn alloc_attr
method found in
.Vt struct rasops_info .
.El
.Pp
When attaching a
.Xr wsdisplay 9
the
.Va accesscookie
member of the
.Vt struct wsemuldisplaydev_attach_args
passed to
.Fn config_found
needs to be a pointer to the driver's
.Vt struct vcons_data .
.Pp
The following members of
.Vt struct vcons_screen
may be of interest to drivers:
.Bl -tag -width scr_cookieXX
.It Va scr_ri
contains the
.Vt struct rasops_info
describing the screen's geometry, access methods and so on.
.It Va scr_cookie
the value passed as cookie to
.Fn vcons_init .
Usually the driver's softc.
.It Va scr_vd
the driver's
.Vt struct vcons_data .
.It Va scr_flags
can be zero or any combination of:
.Bl -tag -width XXXXXXXXXXXXXXXXXXXXXX -compact
.It Dv VCONS_NO_REDRAW
don't call
.Fn vcons_redraw_screen
when this screen becomes visible.
.It Dv VCONS_SCREEN_IS_STATIC
don't
.Xr free 9
this screen's
.Vt struct vcons_screen
in
.Fn free_screen
- useful if the screen has been statically allocated.
.El
.It Va scr_status
currently contains only one flag,
.Dv VCONS_IS_VISIBLE ,
which is set when the screen is visible.
.El
.Sh SEE ALSO
.Xr wscons 4 ,
.Xr wsdisplay 4