Blame view

Documentation/serial/tty.txt 10.7 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
  
  			The Lockronomicon
  
  Your guide to the ancient and twisted locking policies of the tty layer and
  the warped logic behind them. Beware all ye who read on.
  
  FIXME: still need to work out the full set of BKL assumptions and document
  them so they can eventually be killed off.
  
  
  Line Discipline
  ---------------
  
  Line disciplines are registered with tty_register_ldisc() passing the
  discipline number and the ldisc structure. At the point of registration the 
  discipline must be ready to use and it is possible it will get used before
  the call returns success. If the call returns an error then it won't get
  called. Do not re-use ldisc numbers as they are part of the userspace ABI
  and writing over an existing ldisc will cause demons to eat your computer.
  After the return the ldisc data has been copied so you may free your own 
  copy of the structure. You must not re-register over the top of the line
  discipline even with the same data or your computer again will be eaten by
  demons.
bfb07599d   Alexey Dobriyan   [PATCH] Introduce...
24
  In order to remove a line discipline call tty_unregister_ldisc().
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  In ancient times this always worked. In modern times the function will
  return -EBUSY if the ldisc is currently in use. Since the ldisc referencing
  code manages the module counts this should not usually be a concern.
  
  Heed this warning: the reference count field of the registered copies of the
  tty_ldisc structure in the ldisc table counts the number of lines using this
  discipline. The reference count of the tty_ldisc structure within a tty 
  counts the number of active users of the ldisc at this instant. In effect it
  counts the number of threads of execution within an ldisc method (plus those
  about to enter and exit although this detail matters not).
  
  Line Discipline Methods
  -----------------------
  
  TTY side interfaces:
1f59c140f   Tilman Schmidt   [PATCH] Update to...
40
41
42
  open()		-	Called when the line discipline is attached to
  			the terminal. No other call into the line
  			discipline for this tty will occur until it
7e11a0fb3   Tilman Schmidt   tty: docs: serial...
43
44
  			completes successfully. Returning an error will
  			prevent the ldisc from being attached. Can sleep.
1f59c140f   Tilman Schmidt   [PATCH] Update to...
45

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
48
49
  close()		-	This is called on a terminal when the line
  			discipline is being unplugged. At the point of
  			execution no further users will enter the
  			ldisc code for this tty. Can sleep.
1f59c140f   Tilman Schmidt   [PATCH] Update to...
50
51
52
  hangup()	-	Called when the tty line is hung up.
  			The line discipline should cease I/O to the tty.
  			No further calls into the ldisc code will occur.
7e11a0fb3   Tilman Schmidt   tty: docs: serial...
53
  			The return value is ignored. Can sleep.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
54
55
56
57
  
  write()		-	A process is writing data through the line
  			discipline.  Multiple write calls are serialized
  			by the tty layer for the ldisc.  May sleep. 
1f59c140f   Tilman Schmidt   [PATCH] Update to...
58
59
60
  flush_buffer()	-	(optional) May be called at any point between
  			open and close, and instructs the line discipline
  			to empty its input buffer.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
61

1f59c140f   Tilman Schmidt   [PATCH] Update to...
62
63
  chars_in_buffer() -	(optional) Report the number of bytes in the input
  			buffer.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
64

1f59c140f   Tilman Schmidt   [PATCH] Update to...
65
66
67
68
69
  set_termios()	-	(optional) Called on termios structure changes.
  			The caller passes the old termios data and the
  			current data is in the tty. Called under the
  			termios semaphore so allowed to sleep. Serialized
  			against itself only.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
70
71
72
73
74
75
76
77
78
79
80
81
  
  read()		-	Move data from the line discipline to the user.
  			Multiple read calls may occur in parallel and the
  			ldisc must deal with serialization issues. May 
  			sleep.
  
  poll()		-	Check the status for the poll/select calls. Multiple
  			poll calls may occur in parallel. May sleep.
  
  ioctl()		-	Called when an ioctl is handed to the tty layer
  			that might be for the ldisc. Multiple ioctl calls
  			may occur in parallel. May sleep. 
7e11a0fb3   Tilman Schmidt   tty: docs: serial...
82
83
84
  compat_ioctl()	-	Called when a 32 bit ioctl is handed to the tty layer
  			that might be for the ldisc. Multiple ioctl calls
  			may occur in parallel. May sleep.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
86
87
88
89
  Driver Side Interfaces:
  
  receive_buf()	-	Hand buffers of bytes from the driver to the ldisc
  			for processing. Semantics currently rather
  			mysterious 8(
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
90
91
92
93
94
95
96
97
98
99
  write_wakeup()	-	May be called at any point between open and close.
  			The TTY_DO_WRITE_WAKEUP flag indicates if a call
  			is needed but always races versus calls. Thus the
  			ldisc must be careful about setting order and to
  			handle unexpected calls. Must not sleep.
  
  			The driver is forbidden from calling this directly
  			from the ->write call from the ldisc as the ldisc
  			is permitted to call the driver write method from
  			this function. In such a situation defer it.
b3e63afe8   Rodolfo Giometti   ldisc: new dcd_ch...
100
101
  dcd_change()	-	Report to the tty line the current DCD pin status
  			changes and the relative timestamp. The timestamp
12f9b1f9c   Alexander Gordeev   pps: timestamp is...
102
  			cannot be NULL.
b3e63afe8   Rodolfo Giometti   ldisc: new dcd_ch...
103

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104

1f59c140f   Tilman Schmidt   [PATCH] Update to...
105
106
107
108
109
110
111
  Driver Access
  
  Line discipline methods can call the following methods of the underlying
  hardware driver through the function pointers within the tty->driver
  structure:
  
  write()			Write a block of characters to the tty device.
6309ed7cb   Alan Cox   tty: Clarify docu...
112
113
114
  			Returns the number of characters accepted. The
  			character buffer passed to this method is already
  			in kernel space.
1f59c140f   Tilman Schmidt   [PATCH] Update to...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
  
  put_char()		Queues a character for writing to the tty device.
  			If there is no room in the queue, the character is
  			ignored.
  
  flush_chars()		(Optional) If defined, must be called after
  			queueing characters with put_char() in order to
  			start transmission.
  
  write_room()		Returns the numbers of characters the tty driver
  			will accept for queueing to be written.
  
  ioctl()			Invoke device specific ioctl.
  			Expects data pointers to refer to userspace.
  			Returns ENOIOCTLCMD for unrecognized ioctl numbers.
  
  set_termios()		Notify the tty driver that the device's termios
  			settings have changed. New settings are in
  			tty->termios. Previous settings should be passed in
  			the "old" argument.
3ac40b9b5   Alan Cox   termios: document...
135
136
137
138
139
140
141
  			The API is defined such that the driver should return
  			the actual modes selected. This means that the
  			driver function is responsible for modifying any
  			bits in the request it cannot fulfill to indicate
  			the actual modes being used. A device with no
  			hardware capability for change (eg a USB dongle or
  			virtual port) can provide NULL for this method.
1f59c140f   Tilman Schmidt   [PATCH] Update to...
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
  throttle()		Notify the tty driver that input buffers for the
  			line discipline are close to full, and it should
  			somehow signal that no more characters should be
  			sent to the tty.
  
  unthrottle()		Notify the tty driver that characters can now be
  			sent to the tty without fear of overrunning the
  			input buffers of the line disciplines.
  
  stop()			Ask the tty driver to stop outputting characters
  			to the tty device.
  
  start()			Ask the tty driver to resume sending characters
  			to the tty device.
  
  hangup()		Ask the tty driver to hang up the tty device.
  
  break_ctl()		(Optional) Ask the tty driver to turn on or off
  			BREAK status on the RS-232 port.  If state is -1,
  			then the BREAK status should be turned on; if
  			state is 0, then BREAK should be turned off.
  			If this routine is not implemented, use ioctls
  			TIOCSBRK / TIOCCBRK instead.
  
  wait_until_sent()	Waits until the device has written out all of the
  			characters in its transmitter FIFO.
  
  send_xchar()		Send a high-priority XON/XOFF character to the device.
  
  
  Flags
  
  Line discipline methods have access to tty->flags field containing the
  following interesting flags:
  
  TTY_THROTTLED		Driver input is throttled. The ldisc should call
  			tty->driver->unthrottle() in order to resume
  			reception when it is ready to process more data.
  
  TTY_DO_WRITE_WAKEUP	If set, causes the driver to call the ldisc's
  			write_wakeup() method in order to resume
  			transmission when it can accept more data
  			to transmit.
  
  TTY_IO_ERROR		If set, causes all subsequent userspace read/write
  			calls on the tty to fail, returning -EIO.
  
  TTY_OTHER_CLOSED	Device is a pty and the other side has closed.
  
  TTY_NO_WRITE_SPLIT	Prevent driver from splitting up writes into
  			smaller chunks.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
  Locking
  
  Callers to the line discipline functions from the tty layer are required to
  take line discipline locks. The same is true of calls from the driver side
  but not yet enforced.
  
  Three calls are now provided
  
  	ldisc = tty_ldisc_ref(tty);
  
  takes a handle to the line discipline in the tty and returns it. If no ldisc
  is currently attached or the ldisc is being closed and re-opened at this
  point then NULL is returned. While this handle is held the ldisc will not
  change or go away.
  
  	tty_ldisc_deref(ldisc)
  
  Returns the ldisc reference and allows the ldisc to be closed. Returning the
  reference takes away your right to call the ldisc functions until you take
  a new reference.
  
  	ldisc = tty_ldisc_ref_wait(tty);
  
  Performs the same function as tty_ldisc_ref except that it will wait for an
  ldisc change to complete and then return a reference to the new ldisc. 
  
  While these functions are slightly slower than the old code they should have
  minimal impact as most receive logic uses the flip buffers and they only
  need to take a reference when they push bits up through the driver.
  
  A caution: The ldisc->open(), ldisc->close() and driver->set_ldisc 
  functions are called with the ldisc unavailable. Thus tty_ldisc_ref will
  fail in this situation if used within these functions. Ldisc and driver
  code calling its own functions must be careful in this case. 
  
  
  Driver Interface
  ----------------
  
  open()		-	Called when a device is opened. May sleep
  
  close()		-	Called when a device is closed. At the point of
  			return from this call the driver must make no 
  			further ldisc calls of any kind. May sleep
  
  write()		-	Called to write bytes to the device. May not
  			sleep. May occur in parallel in special cases. 
  			Because this includes panic paths drivers generally
  			shouldn't try and do clever locking here.
  
  put_char()	-	Stuff a single character onto the queue. The
  			driver is guaranteed following up calls to
  			flush_chars.
  
  flush_chars()	-	Ask the kernel to write put_char queue
  
  write_room()	-	Return the number of characters tht can be stuffed
  			into the port buffers without overflow (or less).
  			The ldisc is responsible for being intelligent
   			about multi-threading of write_room/write calls
  
  ioctl()		-	Called when an ioctl may be for the driver
  
  set_termios()	-	Called on termios change, serialized against
  			itself by a semaphore. May sleep.
  
  set_ldisc()	-	Notifier for discipline change. At the point this 
  			is done the discipline is not yet usable. Can now
  			sleep (I think)
  
  throttle()	-	Called by the ldisc to ask the driver to do flow
  			control.  Serialization including with unthrottle
  			is the job of the ldisc layer.
  
  unthrottle()	-	Called by the ldisc to ask the driver to stop flow
  			control.
  
  stop()		-	Ldisc notifier to the driver to stop output. As with
  			throttle the serializations with start() are down
  			to the ldisc layer.
  
  start()		-	Ldisc notifier to the driver to start output.
  
  hangup()	-	Ask the tty driver to cause a hangup initiated
  			from the host side. [Can sleep ??]
  
  break_ctl()	-	Send RS232 break. Can sleep. Can get called in
  			parallel, driver must serialize (for now), and
  			with write calls.
  
  wait_until_sent() -	Wait for characters to exit the hardware queue
  			of the driver. Can sleep
  
  send_xchar()	  -	Send XON/XOFF and if possible jump the queue with
  			it in order to get fast flow control responses.
  			Cannot sleep ??