blob: d73c2ab4bedae01e5720ae19a5e8d5273794f2d0 [file] [log] [blame]
Antonino A. Daplas79062a02006-06-26 00:27:11 -07001Console Drivers
2===============
3
Randy Dunlap3d83d312018-08-06 16:24:55 -07004The Linux kernel has 2 general types of console drivers. The first type is
Antonino A. Daplas79062a02006-06-26 00:27:11 -07005assigned by the kernel to all the virtual consoles during the boot process.
6This type will be called 'system driver', and only one system driver is allowed
7to exist. The system driver is persistent and it can never be unloaded, though
8it may become inactive.
9
10The second type has to be explicitly loaded and unloaded. This will be called
11'modular driver' by this document. Multiple modular drivers can coexist at
12any time with each driver sharing the console with other drivers including
13the system driver. However, modular drivers cannot take over the console
14that is currently occupied by another modular driver. (Exception: Drivers that
Wang YanQing6b5f1462013-05-21 23:29:11 +080015call do_take_over_console() will succeed in the takeover regardless of the type
Antonino A. Daplas79062a02006-06-26 00:27:11 -070016of driver occupying the consoles.) They can only take over the console that is
17occupied by the system driver. In the same token, if the modular driver is
18released by the console, the system driver will take over.
19
Randy Dunlap3d83d312018-08-06 16:24:55 -070020Modular drivers, from the programmer's point of view, have to call:
Antonino A. Daplas79062a02006-06-26 00:27:11 -070021
Wang YanQing6b5f1462013-05-21 23:29:11 +080022 do_take_over_console() - load and bind driver to console layer
Randy Dunlap3d83d312018-08-06 16:24:55 -070023 give_up_console() - unload driver; it will only work if driver
24 is fully unbound
Antonino A. Daplas79062a02006-06-26 00:27:11 -070025
26In newer kernels, the following are also available:
27
Wang YanQing6b5f1462013-05-21 23:29:11 +080028 do_register_con_driver()
29 do_unregister_con_driver()
Antonino A. Daplas79062a02006-06-26 00:27:11 -070030
Antonino A. Daplas66900752006-06-26 00:27:14 -070031If sysfs is enabled, the contents of /sys/class/vtconsole can be
32examined. This shows the console backends currently registered by the
Rolf Eike Beer4b8a8b82007-07-19 01:48:33 -070033system which are named vtcon<n> where <n> is an integer from 0 to 15. Thus:
Antonino A. Daplas79062a02006-06-26 00:27:11 -070034
Antonino A. Daplas66900752006-06-26 00:27:14 -070035 ls /sys/class/vtconsole
36 . .. vtcon0 vtcon1
Antonino A. Daplas79062a02006-06-26 00:27:11 -070037
Antonino A. Daplas66900752006-06-26 00:27:14 -070038Each directory in /sys/class/vtconsole has 3 files:
Antonino A. Daplas79062a02006-06-26 00:27:11 -070039
Antonino A. Daplas66900752006-06-26 00:27:14 -070040 ls /sys/class/vtconsole/vtcon0
41 . .. bind name uevent
Antonino A. Daplas79062a02006-06-26 00:27:11 -070042
Antonino A. Daplas66900752006-06-26 00:27:14 -070043What do these files signify?
Antonino A. Daplas79062a02006-06-26 00:27:11 -070044
Antonino A. Daplas66900752006-06-26 00:27:14 -070045 1. bind - this is a read/write file. It shows the status of the driver if
46 read, or acts to bind or unbind the driver to the virtual consoles
47 when written to. The possible values are:
Antonino A. Daplas79062a02006-06-26 00:27:11 -070048
Antonino A. Daplas66900752006-06-26 00:27:14 -070049 0 - means the driver is not bound and if echo'ed, commands the driver
50 to unbind
Antonino A. Daplas79062a02006-06-26 00:27:11 -070051
Antonino A. Daplas66900752006-06-26 00:27:14 -070052 1 - means the driver is bound and if echo'ed, commands the driver to
53 bind
Antonino A. Daplas79062a02006-06-26 00:27:11 -070054
Antonino A. Daplas66900752006-06-26 00:27:14 -070055 2. name - read-only file. Shows the name of the driver in this format:
56
57 cat /sys/class/vtconsole/vtcon0/name
58 (S) VGA+
59
Randy Dunlap3d83d312018-08-06 16:24:55 -070060 '(S)' stands for a (S)ystem driver, i.e., it cannot be directly
Antonino A. Daplas66900752006-06-26 00:27:14 -070061 commanded to bind or unbind
62
63 'VGA+' is the name of the driver
64
65 cat /sys/class/vtconsole/vtcon1/name
66 (M) frame buffer device
67
68 In this case, '(M)' stands for a (M)odular driver, one that can be
69 directly commanded to bind or unbind.
70
71 3. uevent - ignore this file
Antonino A. Daplas79062a02006-06-26 00:27:11 -070072
73When unbinding, the modular driver is detached first, and then the system
74driver takes over the consoles vacated by the driver. Binding, on the other
75hand, will bind the driver to the consoles that are currently occupied by a
76system driver.
77
Thadeu Lima de Souza Cascardoa8ab0102010-02-01 15:57:15 -020078NOTE1: Binding and unbinding must be selected in Kconfig. It's under:
Antonino A. Daplas66900752006-06-26 00:27:14 -070079
80Device Drivers -> Character devices -> Support for binding and unbinding
81console drivers
82
83NOTE2: If any of the virtual consoles are in KD_GRAPHICS mode, then binding or
84unbinding will not succeed. An example of an application that sets the console
85to KD_GRAPHICS is X.
86
Antonino A. Daplas79062a02006-06-26 00:27:11 -070087How useful is this feature? This is very useful for console driver
88developers. By unbinding the driver from the console layer, one can unload the
89driver, make changes, recompile, reload and rebind the driver without any need
90for rebooting the kernel. For regular users who may want to switch from
91framebuffer console to VGA console and vice versa, this feature also makes
92this possible. (NOTE NOTE NOTE: Please read fbcon.txt under Documentation/fb
Randy Dunlap3d83d312018-08-06 16:24:55 -070093for more details.)
Antonino A. Daplas79062a02006-06-26 00:27:11 -070094
95Notes for developers:
96=====================
97
Wang YanQing6b5f1462013-05-21 23:29:11 +080098do_take_over_console() is now broken up into:
Antonino A. Daplas79062a02006-06-26 00:27:11 -070099
Wang YanQing6b5f1462013-05-21 23:29:11 +0800100 do_register_con_driver()
101 do_bind_con_driver() - private function
Antonino A. Daplas79062a02006-06-26 00:27:11 -0700102
Wang YanQing6b5f1462013-05-21 23:29:11 +0800103give_up_console() is a wrapper to do_unregister_con_driver(), and a driver must
Antonino A. Daplas79062a02006-06-26 00:27:11 -0700104be fully unbound for this call to succeed. con_is_bound() will check if the
105driver is bound or not.
106
107Guidelines for console driver writers:
108=====================================
109
110In order for binding to and unbinding from the console to properly work,
111console drivers must follow these guidelines:
112
Wang YanQing6b5f1462013-05-21 23:29:11 +08001131. All drivers, except system drivers, must call either do_register_con_driver()
Randy Dunlap3d83d312018-08-06 16:24:55 -0700114 or do_take_over_console(). do_register_con_driver() will just add the driver
115 to the console's internal list. It won't take over the
Wang YanQing6b5f1462013-05-21 23:29:11 +0800116 console. do_take_over_console(), as it name implies, will also take over (or
Antonino A. Daplas79062a02006-06-26 00:27:11 -0700117 bind to) the console.
118
1192. All resources allocated during con->con_init() must be released in
120 con->con_deinit().
121
1223. All resources allocated in con->con_startup() must be released when the
123 driver, which was previously bound, becomes unbound. The console layer
124 does not have a complementary call to con->con_startup() so it's up to the
125 driver to check when it's legal to release these resources. Calling
126 con_is_bound() in con->con_deinit() will help. If the call returned
127 false(), then it's safe to release the resources. This balance has to be
128 ensured because con->con_startup() can be called again when a request to
129 rebind the driver to the console arrives.
130
1314. Upon exit of the driver, ensure that the driver is totally unbound. If the
Wang YanQing6b5f1462013-05-21 23:29:11 +0800132 condition is satisfied, then the driver must call do_unregister_con_driver()
Antonino A. Daplas79062a02006-06-26 00:27:11 -0700133 or give_up_console().
134
Wang YanQing6b5f1462013-05-21 23:29:11 +08001355. do_unregister_con_driver() can also be called on conditions which make it
Antonino A. Daplas79062a02006-06-26 00:27:11 -0700136 impossible for the driver to service console requests. This can happen
137 with the framebuffer console that suddenly lost all of its drivers.
138
139The current crop of console drivers should still work correctly, but binding
140and unbinding them may cause problems. With minimal fixes, these drivers can
141be made to work correctly.
142
143==========================
144Antonino Daplas <adaplas@pol.net>
145