blob: d4d642e1ce9ce4597e9d93759748a6ef8c9302b1 [file] [log] [blame]
Antonino A. Daplasefb985f2005-11-08 21:39:15 -08001The Framebuffer Console
2=======================
3
4 The framebuffer console (fbcon), as its name implies, is a text
5console running on top of the framebuffer device. It has the functionality of
6any standard text console driver, such as the VGA console, with the added
7features that can be attributed to the graphical nature of the framebuffer.
8
9 In the x86 architecture, the framebuffer console is optional, and
10some even treat it as a toy. For other architectures, it is the only available
11display device, text or graphical.
12
13 What are the features of fbcon? The framebuffer console supports
14high resolutions, varying font types, display rotation, primitive multihead,
15etc. Theoretically, multi-colored fonts, blending, aliasing, and any feature
16made available by the underlying graphics card are also possible.
17
18A. Configuration
19
20 The framebuffer console can be enabled by using your favorite kernel
21configuration tool. It is under Device Drivers->Graphics Support->Support for
22framebuffer devices->Framebuffer Console Support. Select 'y' to compile
23support statically, or 'm' for module support. The module will be fbcon.
24
25 In order for fbcon to activate, at least one framebuffer driver is
26required, so choose from any of the numerous drivers available. For x86
27systems, they almost universally have VGA cards, so vga16fb and vesafb will
28always be available. However, using a chipset-specific driver will give you
29more speed and features, such as the ability to change the video mode
30dynamically.
31
32 To display the penguin logo, choose any logo available in Logo
33Configuration->Boot up logo.
34
35 Also, you will need to select at least one compiled-in fonts, but if
36you don't do anything, the kernel configuration tool will select one for you,
37usually an 8x16 font.
38
39GOTCHA: A common bug report is enabling the framebuffer without enabling the
40framebuffer console. Depending on the driver, you may get a blanked or
41garbled display, but the system still boots to completion. If you are
42fortunate to have a driver that does not alter the graphics chip, then you
43will still get a VGA console.
44
45B. Loading
46
47Possible scenarios:
48
491. Driver and fbcon are compiled statically
50
51 Usually, fbcon will automatically take over your console. The notable
52 exception is vesafb. It needs to be explicitly activated with the
53 vga= boot option parameter.
54
552. Driver is compiled statically, fbcon is compiled as a module
56
57 Depending on the driver, you either get a standard console, or a
58 garbled display, as mentioned above. To get a framebuffer console,
59 do a 'modprobe fbcon'.
60
613. Driver is compiled as a module, fbcon is compiled statically
62
63 You get your standard console. Once the driver is loaded with
64 'modprobe xxxfb', fbcon automatically takes over the console with
65 the possible exception of using the fbcon=map:n option. See below.
66
674. Driver and fbcon are compiled as a module.
68
69 You can load them in any order. Once both are loaded, fbcon will take
70 over the console.
71
72C. Boot options
73
74 The framebuffer console has several, largely unknown, boot options
75 that can change its behavior.
76
771. fbcon=font:<name>
78
79 Select the initial font to use. The value 'name' can be any of the
Randy Dunlap47427372017-11-07 10:28:06 -080080 compiled-in fonts: 10x18, 6x10, 7x14, Acorn8x8, MINI4x6,
81 PEARL8x8, ProFont6x11, SUN12x22, SUN8x16, VGA8x16, VGA8x8.
Antonino A. Daplasefb985f2005-11-08 21:39:15 -080082
83 Note, not all drivers can handle font with widths not divisible by 8,
84 such as vga16fb.
85
862. fbcon=scrollback:<value>[k]
87
88 The scrollback buffer is memory that is used to preserve display
89 contents that has already scrolled past your view. This is accessed
90 by using the Shift-PageUp key combination. The value 'value' is any
91 integer. It defaults to 32KB. The 'k' suffix is optional, and will
92 multiply the 'value' by 1024.
93
943. fbcon=map:<0123>
95
96 This is an interesting option. It tells which driver gets mapped to
97 which console. The value '0123' is a sequence that gets repeated until
98 the total length is 64 which is the number of consoles available. In
99 the above example, it is expanded to 012301230123... and the mapping
100 will be:
101
102 tty | 1 2 3 4 5 6 7 8 9 ...
103 fb | 0 1 2 3 0 1 2 3 0 ...
104
105 ('cat /proc/fb' should tell you what the fb numbers are)
106
107 One side effect that may be useful is using a map value that exceeds
108 the number of loaded fb drivers. For example, if only one driver is
109 available, fb0, adding fbcon=map:1 tells fbcon not to take over the
110 console.
111
112 Later on, when you want to map the console the to the framebuffer
113 device, you can use the con2fbmap utility.
114
1154. fbcon=vc:<n1>-<n2>
116
117 This option tells fbcon to take over only a range of consoles as
118 specified by the values 'n1' and 'n2'. The rest of the consoles
119 outside the given range will still be controlled by the standard
120 console driver.
121
122 NOTE: For x86 machines, the standard console is the VGA console which
123 is typically located on the same video card. Thus, the consoles that
124 are controlled by the VGA console will be garbled.
125
1264. fbcon=rotate:<n>
127
128 This option changes the orientation angle of the console display. The
129 value 'n' accepts the following:
130
131 0 - normal orientation (0 degree)
132 1 - clockwise orientation (90 degrees)
133 2 - upside down orientation (180 degrees)
134 3 - counterclockwise orientation (270 degrees)
135
136 The angle can be changed anytime afterwards by 'echoing' the same
137 numbers to any one of the 2 attributes found in
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700138 /sys/class/graphics/fbcon
Antonino A. Daplasefb985f2005-11-08 21:39:15 -0800139
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700140 rotate - rotate the display of the active console
141 rotate_all - rotate the display of all consoles
Antonino A. Daplasefb985f2005-11-08 21:39:15 -0800142
143 Console rotation will only become available if Console Rotation
144 Support is compiled in your kernel.
145
146 NOTE: This is purely console rotation. Any other applications that
147 use the framebuffer will remain at their 'normal'orientation.
148 Actually, the underlying fb driver is totally ignorant of console
149 rotation.
150
David Lechner74c1c8b2017-08-18 19:56:40 +02001515. fbcon=margin:<color>
152
153 This option specifies the color of the margins. The margins are the
154 leftover area at the right and the bottom of the screen that are not
155 used by text. By default, this area will be black. The 'color' value
David Lechner176780c2017-09-04 16:00:49 +0200156 is an integer number that depends on the framebuffer driver being used.
David Lechner74c1c8b2017-08-18 19:56:40 +0200157
Hans de Goede83d83be2018-06-28 15:20:30 +02001586. fbcon=nodefer
159
160 If the kernel is compiled with deferred fbcon takeover support, normally
161 the framebuffer contents, left in place by the firmware/bootloader, will
162 be preserved until there actually is some text is output to the console.
163 This option causes fbcon to bind immediately to the fbdev device.
164
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700165C. Attaching, Detaching and Unloading
166
Masanari Iidac9f3f2d2013-07-18 01:29:12 +0900167Before going on how to attach, detach and unload the framebuffer console, an
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -0700168illustration of the dependencies may help.
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700169
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -0700170The console layer, as with most subsystems, needs a driver that interfaces with
171the hardware. Thus, in a VGA console:
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700172
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -0700173console ---> VGA driver ---> hardware.
174
175Assuming the VGA driver can be unloaded, one must first unbind the VGA driver
176from the console layer before unloading the driver. The VGA driver cannot be
177unloaded if it is still bound to the console layer. (See
178Documentation/console/console.txt for more information).
179
Paolo Ornati670e9f32006-10-03 22:57:56 +0200180This is more complicated in the case of the framebuffer console (fbcon),
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -0700181because fbcon is an intermediate layer between the console and the drivers:
182
183console ---> fbcon ---> fbdev drivers ---> hardware
184
185The fbdev drivers cannot be unloaded if it's bound to fbcon, and fbcon cannot
186be unloaded if it's bound to the console layer.
187
188So to unload the fbdev drivers, one must first unbind fbcon from the console,
189then unbind the fbdev drivers from fbcon. Fortunately, unbinding fbcon from
190the console layer will automatically unbind framebuffer drivers from
191fbcon. Thus, there is no need to explicitly unbind the fbdev drivers from
192fbcon.
193
194So, how do we unbind fbcon from the console? Part of the answer is in
195Documentation/console/console.txt. To summarize:
196
Antonino A. Daplas66900752006-06-26 00:27:14 -0700197Echo a value to the bind file that represents the framebuffer console
198driver. So assuming vtcon1 represents fbcon, then:
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -0700199
Antonino A. Daplas66900752006-06-26 00:27:14 -0700200echo 1 > sys/class/vtconsole/vtcon1/bind - attach framebuffer console to
201 console layer
202echo 0 > sys/class/vtconsole/vtcon1/bind - detach framebuffer console from
203 console layer
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -0700204
205If fbcon is detached from the console layer, your boot console driver (which is
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700206usually VGA text mode) will take over. A few drivers (rivafb and i810fb) will
207restore VGA text mode for you. With the rest, before detaching fbcon, you
208must take a few additional steps to make sure that your VGA text mode is
209restored properly. The following is one of the several methods that you can do:
210
2111. Download or install vbetool. This utility is included with most
212 distributions nowadays, and is usually part of the suspend/resume tool.
213
2142. In your kernel configuration, ensure that CONFIG_FRAMEBUFFER_CONSOLE is set
215 to 'y' or 'm'. Enable one or more of your favorite framebuffer drivers.
216
2173. Boot into text mode and as root run:
218
219 vbetool vbestate save > <vga state file>
220
221 The above command saves the register contents of your graphics
222 hardware to <vga state file>. You need to do this step only once as
223 the state file can be reused.
224
2254. If fbcon is compiled as a module, load fbcon by doing:
226
227 modprobe fbcon
228
2295. Now to detach fbcon:
230
231 vbetool vbestate restore < <vga state file> && \
Antonino A. Daplas66900752006-06-26 00:27:14 -0700232 echo 0 > /sys/class/vtconsole/vtcon1/bind
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700233
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -07002346. That's it, you're back to VGA mode. And if you compiled fbcon as a module,
235 you can unload it by 'rmmod fbcon'
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700236
2377. To reattach fbcon:
238
Antonino A. Daplas66900752006-06-26 00:27:14 -0700239 echo 1 > /sys/class/vtconsole/vtcon1/bind
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700240
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -07002418. Once fbcon is unbound, all drivers registered to the system will also
242become unbound. This means that fbcon and individual framebuffer drivers
243can be unloaded or reloaded at will. Reloading the drivers or fbcon will
244automatically bind the console, fbcon and the drivers together. Unloading
245all the drivers without unloading fbcon will make it impossible for the
246console to bind fbcon.
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700247
248Notes for vesafb users:
249=======================
250
251Unfortunately, if your bootline includes a vga=xxx parameter that sets the
252hardware in graphics mode, such as when loading vesafb, vgacon will not load.
253Instead, vgacon will replace the default boot console with dummycon, and you
254won't get any display after detaching fbcon. Your machine is still alive, so
255you can reattach vesafb. However, to reattach vesafb, you need to do one of
256the following:
257
258Variation 1:
259
260 a. Before detaching fbcon, do
261
262 vbetool vbemode save > <vesa state file> # do once for each vesafb mode,
263 # the file can be reused
264
265 b. Detach fbcon as in step 5.
266
267 c. Attach fbcon
268
269 vbetool vbestate restore < <vesa state file> && \
Antonino A. Daplas66900752006-06-26 00:27:14 -0700270 echo 1 > /sys/class/vtconsole/vtcon1/bind
271
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700272Variation 2:
273
274 a. Before detaching fbcon, do:
Antonino A. Daplas418d1ce2006-06-26 00:27:10 -0700275 echo <ID> > /sys/class/tty/console/bind
276
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700277
278 vbetool vbemode get
279
280 b. Take note of the mode number
281
282 b. Detach fbcon as in step 5.
283
284 c. Attach fbcon:
285
286 vbetool vbemode set <mode number> && \
Antonino A. Daplas66900752006-06-26 00:27:14 -0700287 echo 1 > /sys/class/vtconsole/vtcon1/bind
288
289Samples:
290========
291
292Here are 2 sample bash scripts that you can use to bind or unbind the
293framebuffer console driver if you are in an X86 box:
294
295---------------------------------------------------------------------------
296#!/bin/bash
297# Unbind fbcon
298
299# Change this to where your actual vgastate file is located
300# Or Use VGASTATE=$1 to indicate the state file at runtime
301VGASTATE=/tmp/vgastate
302
303# path to vbetool
304VBETOOL=/usr/local/bin
305
306
307for (( i = 0; i < 16; i++))
308do
309 if test -x /sys/class/vtconsole/vtcon$i; then
310 if [ `cat /sys/class/vtconsole/vtcon$i/name | grep -c "frame buffer"` \
311 = 1 ]; then
312 if test -x $VBETOOL/vbetool; then
313 echo Unbinding vtcon$i
314 $VBETOOL/vbetool vbestate restore < $VGASTATE
315 echo 0 > /sys/class/vtconsole/vtcon$i/bind
316 fi
317 fi
318 fi
319done
320
321---------------------------------------------------------------------------
322#!/bin/bash
323# Bind fbcon
324
325for (( i = 0; i < 16; i++))
326do
327 if test -x /sys/class/vtconsole/vtcon$i; then
328 if [ `cat /sys/class/vtconsole/vtcon$i/name | grep -c "frame buffer"` \
329 = 1 ]; then
330 echo Unbinding vtcon$i
331 echo 1 > /sys/class/vtconsole/vtcon$i/bind
332 fi
333 fi
334done
335---------------------------------------------------------------------------
Antonino A. Daplasa4a73e12006-06-26 00:27:07 -0700336
337--
Antonino A. Daplasefb985f2005-11-08 21:39:15 -0800338Antonino Daplas <adaplas@pol.net>