Lines Matching refs:TTY
4 TTY title
7 Teletypewriter (TTY) layer takes care of all those serial devices. Including
10 TTY structures
13 There are several major TTY structures. Every TTY device in a system has a
14 corresponding struct tty_port. These devices are maintained by a TTY driver
19 tty_operations are invoked by the TTY layer.
29 In-detail description of the named TTY structures is in separate documents:
41 Writing TTY Driver
44 Before one starts writing a TTY driver, they must consider
48 directly by the TTY Layer. If you are about to write such a driver, read on.
50 A *typical* sequence a TTY driver performs is as follows:
52 #. Allocate and register a TTY driver (module init)
53 #. Create and register TTY devices as they are probed (probe function)
54 #. Handle TTY operations and events like interrupts (TTY core invokes the
57 #. Unregister and free the TTY driver (module exit)