]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* $Id: isdn.h,v 1.125.2.3 2004/02/10 01:07:14 keil Exp $ |
2 | * | |
3 | * Main header for the Linux ISDN subsystem (linklevel). | |
4 | * | |
5 | * Copyright 1994,95,96 by Fritz Elfert ([email protected]) | |
6 | * Copyright 1995,96 by Thinking Objects Software GmbH Wuerzburg | |
7 | * Copyright 1995,96 by Michael Hipp ([email protected]) | |
8 | * | |
9 | * This software may be used and distributed according to the terms | |
10 | * of the GNU General Public License, incorporated herein by reference. | |
11 | * | |
12 | */ | |
13 | ||
14 | #ifndef __ISDN_H__ | |
15 | #define __ISDN_H__ | |
16 | ||
17 | #include <linux/ioctl.h> | |
18 | ||
19 | #ifdef CONFIG_COBALT_MICRO_SERVER | |
20 | /* Save memory */ | |
21 | #define ISDN_MAX_DRIVERS 2 | |
22 | #define ISDN_MAX_CHANNELS 8 | |
23 | #else | |
24 | #define ISDN_MAX_DRIVERS 32 | |
25 | #define ISDN_MAX_CHANNELS 64 | |
26 | #endif | |
27 | ||
28 | /* New ioctl-codes */ | |
29 | #define IIOCNETAIF _IO('I',1) | |
30 | #define IIOCNETDIF _IO('I',2) | |
31 | #define IIOCNETSCF _IO('I',3) | |
32 | #define IIOCNETGCF _IO('I',4) | |
33 | #define IIOCNETANM _IO('I',5) | |
34 | #define IIOCNETDNM _IO('I',6) | |
35 | #define IIOCNETGNM _IO('I',7) | |
36 | #define IIOCGETSET _IO('I',8) /* no longer supported */ | |
37 | #define IIOCSETSET _IO('I',9) /* no longer supported */ | |
38 | #define IIOCSETVER _IO('I',10) | |
39 | #define IIOCNETHUP _IO('I',11) | |
40 | #define IIOCSETGST _IO('I',12) | |
41 | #define IIOCSETBRJ _IO('I',13) | |
42 | #define IIOCSIGPRF _IO('I',14) | |
43 | #define IIOCGETPRF _IO('I',15) | |
44 | #define IIOCSETPRF _IO('I',16) | |
45 | #define IIOCGETMAP _IO('I',17) | |
46 | #define IIOCSETMAP _IO('I',18) | |
47 | #define IIOCNETASL _IO('I',19) | |
48 | #define IIOCNETDIL _IO('I',20) | |
49 | #define IIOCGETCPS _IO('I',21) | |
50 | #define IIOCGETDVR _IO('I',22) | |
51 | #define IIOCNETLCR _IO('I',23) /* dwabc ioctl for LCR from isdnlog */ | |
52 | #define IIOCNETDWRSET _IO('I',24) /* dwabc ioctl to reset abc-values to default on a net-interface */ | |
53 | ||
54 | #define IIOCNETALN _IO('I',32) | |
55 | #define IIOCNETDLN _IO('I',33) | |
56 | ||
57 | #define IIOCNETGPN _IO('I',34) | |
58 | ||
59 | #define IIOCDBGVAR _IO('I',127) | |
60 | ||
61 | #define IIOCDRVCTL _IO('I',128) | |
62 | ||
63 | /* cisco hdlck device private ioctls */ | |
64 | #define SIOCGKEEPPERIOD (SIOCDEVPRIVATE + 0) | |
65 | #define SIOCSKEEPPERIOD (SIOCDEVPRIVATE + 1) | |
66 | #define SIOCGDEBSERINT (SIOCDEVPRIVATE + 2) | |
67 | #define SIOCSDEBSERINT (SIOCDEVPRIVATE + 3) | |
68 | ||
69 | /* Packet encapsulations for net-interfaces */ | |
70 | #define ISDN_NET_ENCAP_ETHER 0 | |
71 | #define ISDN_NET_ENCAP_RAWIP 1 | |
72 | #define ISDN_NET_ENCAP_IPTYP 2 | |
73 | #define ISDN_NET_ENCAP_CISCOHDLC 3 /* Without SLARP and keepalive */ | |
74 | #define ISDN_NET_ENCAP_SYNCPPP 4 | |
75 | #define ISDN_NET_ENCAP_UIHDLC 5 | |
76 | #define ISDN_NET_ENCAP_CISCOHDLCK 6 /* With SLARP and keepalive */ | |
77 | #define ISDN_NET_ENCAP_X25IFACE 7 /* Documentation/networking/x25-iface.txt*/ | |
78 | #define ISDN_NET_ENCAP_MAX_ENCAP ISDN_NET_ENCAP_X25IFACE | |
79 | ||
80 | /* Facility which currently uses an ISDN-channel */ | |
81 | #define ISDN_USAGE_NONE 0 | |
82 | #define ISDN_USAGE_RAW 1 | |
83 | #define ISDN_USAGE_MODEM 2 | |
84 | #define ISDN_USAGE_NET 3 | |
85 | #define ISDN_USAGE_VOICE 4 | |
86 | #define ISDN_USAGE_FAX 5 | |
87 | #define ISDN_USAGE_MASK 7 /* Mask to get plain usage */ | |
88 | #define ISDN_USAGE_DISABLED 32 /* This bit is set, if channel is disabled */ | |
89 | #define ISDN_USAGE_EXCLUSIVE 64 /* This bit is set, if channel is exclusive */ | |
90 | #define ISDN_USAGE_OUTGOING 128 /* This bit is set, if channel is outgoing */ | |
91 | ||
92 | #define ISDN_MODEM_NUMREG 24 /* Number of Modem-Registers */ | |
93 | #define ISDN_LMSNLEN 255 /* Length of tty's Listen-MSN string */ | |
94 | #define ISDN_CMSGLEN 50 /* Length of CONNECT-Message to add for Modem */ | |
95 | ||
96 | #define ISDN_MSNLEN 32 | |
97 | #define NET_DV 0x06 /* Data version for isdn_net_ioctl_cfg */ | |
98 | #define TTY_DV 0x06 /* Data version for iprofd etc. */ | |
99 | ||
100 | #define INF_DV 0x01 /* Data version for /dev/isdninfo */ | |
101 | ||
102 | typedef struct { | |
103 | char drvid[25]; | |
104 | unsigned long arg; | |
105 | } isdn_ioctl_struct; | |
106 | ||
107 | typedef struct { | |
108 | char name[10]; | |
109 | char phone[ISDN_MSNLEN]; | |
110 | int outgoing; | |
111 | } isdn_net_ioctl_phone; | |
112 | ||
113 | typedef struct { | |
114 | char name[10]; /* Name of interface */ | |
115 | char master[10]; /* Name of Master for Bundling */ | |
116 | char slave[10]; /* Name of Slave for Bundling */ | |
117 | char eaz[256]; /* EAZ/MSN */ | |
118 | char drvid[25]; /* DriverId for Bindings */ | |
119 | int onhtime; /* Hangup-Timeout */ | |
120 | int charge; /* Charge-Units */ | |
121 | int l2_proto; /* Layer-2 protocol */ | |
122 | int l3_proto; /* Layer-3 protocol */ | |
123 | int p_encap; /* Encapsulation */ | |
124 | int exclusive; /* Channel, if bound exclusive */ | |
125 | int dialmax; /* Dial Retry-Counter */ | |
126 | int slavedelay; /* Delay until slave starts up */ | |
127 | int cbdelay; /* Delay before Callback */ | |
128 | int chargehup; /* Flag: Charge-Hangup */ | |
129 | int ihup; /* Flag: Hangup-Timeout on incoming line */ | |
130 | int secure; /* Flag: Secure */ | |
131 | int callback; /* Flag: Callback */ | |
132 | int cbhup; /* Flag: Reject Call before Callback */ | |
133 | int pppbind; /* ippp device for bindings */ | |
134 | int chargeint; /* Use fixed charge interval length */ | |
135 | int triggercps; /* BogoCPS needed for triggering slave */ | |
136 | int dialtimeout; /* Dial-Timeout */ | |
137 | int dialwait; /* Time to wait after failed dial */ | |
138 | int dialmode; /* Flag: off / on / auto */ | |
139 | } isdn_net_ioctl_cfg; | |
140 | ||
141 | #define ISDN_NET_DIALMODE_MASK 0xC0 /* bits for status */ | |
142 | #define ISDN_NET_DM_OFF 0x00 /* this interface is stopped */ | |
143 | #define ISDN_NET_DM_MANUAL 0x40 /* this interface is on (manual) */ | |
144 | #define ISDN_NET_DM_AUTO 0x80 /* this interface is autodial */ | |
145 | #define ISDN_NET_DIALMODE(x) ((&(x))->flags & ISDN_NET_DIALMODE_MASK) | |
146 | ||
147 | #ifdef __KERNEL__ | |
148 | ||
149 | #include <linux/config.h> | |
150 | #include <linux/errno.h> | |
151 | #include <linux/fs.h> | |
152 | #include <linux/major.h> | |
1da177e4 LT |
153 | #include <asm/io.h> |
154 | #include <linux/kernel.h> | |
155 | #include <linux/signal.h> | |
156 | #include <linux/slab.h> | |
157 | #include <linux/timer.h> | |
158 | #include <linux/wait.h> | |
159 | #include <linux/tty.h> | |
160 | #include <linux/tty_flip.h> | |
161 | #include <linux/serial_reg.h> | |
162 | #include <linux/fcntl.h> | |
163 | #include <linux/types.h> | |
164 | #include <linux/interrupt.h> | |
165 | #include <linux/ip.h> | |
166 | #include <linux/in.h> | |
167 | #include <linux/netdevice.h> | |
168 | #include <linux/etherdevice.h> | |
169 | #include <linux/skbuff.h> | |
170 | #include <linux/tcp.h> | |
171 | ||
172 | #define ISDN_TTY_MAJOR 43 | |
173 | #define ISDN_TTYAUX_MAJOR 44 | |
174 | #define ISDN_MAJOR 45 | |
175 | ||
176 | /* The minor-devicenumbers for Channel 0 and 1 are used as arguments for | |
177 | * physical Channel-Mapping, so they MUST NOT be changed without changing | |
178 | * the correspondent code in isdn.c | |
179 | */ | |
180 | ||
181 | #define ISDN_MINOR_B 0 | |
182 | #define ISDN_MINOR_BMAX (ISDN_MAX_CHANNELS-1) | |
183 | #define ISDN_MINOR_CTRL 64 | |
184 | #define ISDN_MINOR_CTRLMAX (64 + (ISDN_MAX_CHANNELS-1)) | |
185 | #define ISDN_MINOR_PPP 128 | |
186 | #define ISDN_MINOR_PPPMAX (128 + (ISDN_MAX_CHANNELS-1)) | |
187 | #define ISDN_MINOR_STATUS 255 | |
188 | ||
189 | #ifdef CONFIG_ISDN_PPP | |
190 | ||
191 | #ifdef CONFIG_ISDN_PPP_VJ | |
192 | # include <net/slhc_vj.h> | |
193 | #endif | |
194 | ||
195 | #include <linux/ppp_defs.h> | |
196 | #include <linux/if_ppp.h> | |
197 | ||
198 | #include <linux/isdn_ppp.h> | |
199 | #endif | |
200 | ||
201 | #ifdef CONFIG_ISDN_X25 | |
202 | # include <linux/concap.h> | |
203 | #endif | |
204 | ||
205 | #include <linux/isdnif.h> | |
206 | ||
207 | #define ISDN_DRVIOCTL_MASK 0x7f /* Mask for Device-ioctl */ | |
208 | ||
209 | /* Until now unused */ | |
210 | #define ISDN_SERVICE_VOICE 1 | |
211 | #define ISDN_SERVICE_AB 1<<1 | |
212 | #define ISDN_SERVICE_X21 1<<2 | |
213 | #define ISDN_SERVICE_G4 1<<3 | |
214 | #define ISDN_SERVICE_BTX 1<<4 | |
215 | #define ISDN_SERVICE_DFUE 1<<5 | |
216 | #define ISDN_SERVICE_X25 1<<6 | |
217 | #define ISDN_SERVICE_TTX 1<<7 | |
218 | #define ISDN_SERVICE_MIXED 1<<8 | |
219 | #define ISDN_SERVICE_FW 1<<9 | |
220 | #define ISDN_SERVICE_GTEL 1<<10 | |
221 | #define ISDN_SERVICE_BTXN 1<<11 | |
222 | #define ISDN_SERVICE_BTEL 1<<12 | |
223 | ||
224 | /* Macros checking plain usage */ | |
225 | #define USG_NONE(x) ((x & ISDN_USAGE_MASK)==ISDN_USAGE_NONE) | |
226 | #define USG_RAW(x) ((x & ISDN_USAGE_MASK)==ISDN_USAGE_RAW) | |
227 | #define USG_MODEM(x) ((x & ISDN_USAGE_MASK)==ISDN_USAGE_MODEM) | |
228 | #define USG_VOICE(x) ((x & ISDN_USAGE_MASK)==ISDN_USAGE_VOICE) | |
229 | #define USG_NET(x) ((x & ISDN_USAGE_MASK)==ISDN_USAGE_NET) | |
230 | #define USG_FAX(x) ((x & ISDN_USAGE_MASK)==ISDN_USAGE_FAX) | |
231 | #define USG_OUTGOING(x) ((x & ISDN_USAGE_OUTGOING)==ISDN_USAGE_OUTGOING) | |
232 | #define USG_MODEMORVOICE(x) (((x & ISDN_USAGE_MASK)==ISDN_USAGE_MODEM) || \ | |
233 | ((x & ISDN_USAGE_MASK)==ISDN_USAGE_VOICE) ) | |
234 | ||
235 | /* Timer-delays and scheduling-flags */ | |
236 | #define ISDN_TIMER_RES 4 /* Main Timer-Resolution */ | |
237 | #define ISDN_TIMER_02SEC (HZ/ISDN_TIMER_RES/5) /* Slow-Timer1 .2 sec */ | |
238 | #define ISDN_TIMER_1SEC (HZ/ISDN_TIMER_RES) /* Slow-Timer2 1 sec */ | |
239 | #define ISDN_TIMER_RINGING 5 /* tty RINGs = ISDN_TIMER_1SEC * this factor */ | |
240 | #define ISDN_TIMER_KEEPINT 10 /* Cisco-Keepalive = ISDN_TIMER_1SEC * this factor */ | |
241 | #define ISDN_TIMER_MODEMREAD 1 | |
242 | #define ISDN_TIMER_MODEMPLUS 2 | |
243 | #define ISDN_TIMER_MODEMRING 4 | |
244 | #define ISDN_TIMER_MODEMXMIT 8 | |
245 | #define ISDN_TIMER_NETDIAL 16 | |
246 | #define ISDN_TIMER_NETHANGUP 32 | |
247 | #define ISDN_TIMER_CARRIER 256 /* Wait for Carrier */ | |
248 | #define ISDN_TIMER_FAST (ISDN_TIMER_MODEMREAD | ISDN_TIMER_MODEMPLUS | \ | |
249 | ISDN_TIMER_MODEMXMIT) | |
250 | #define ISDN_TIMER_SLOW (ISDN_TIMER_MODEMRING | ISDN_TIMER_NETHANGUP | \ | |
251 | ISDN_TIMER_NETDIAL | ISDN_TIMER_CARRIER) | |
252 | ||
253 | /* Timeout-Values for isdn_net_dial() */ | |
254 | #define ISDN_TIMER_DTIMEOUT10 (10*HZ/(ISDN_TIMER_02SEC*(ISDN_TIMER_RES+1))) | |
255 | #define ISDN_TIMER_DTIMEOUT15 (15*HZ/(ISDN_TIMER_02SEC*(ISDN_TIMER_RES+1))) | |
256 | #define ISDN_TIMER_DTIMEOUT60 (60*HZ/(ISDN_TIMER_02SEC*(ISDN_TIMER_RES+1))) | |
257 | ||
258 | /* GLOBAL_FLAGS */ | |
259 | #define ISDN_GLOBAL_STOPPED 1 | |
260 | ||
261 | /*=================== Start of ip-over-ISDN stuff =========================*/ | |
262 | ||
263 | /* Feature- and status-flags for a net-interface */ | |
264 | #define ISDN_NET_CONNECTED 0x01 /* Bound to ISDN-Channel */ | |
265 | #define ISDN_NET_SECURE 0x02 /* Accept calls from phonelist only */ | |
266 | #define ISDN_NET_CALLBACK 0x04 /* activate callback */ | |
267 | #define ISDN_NET_CBHUP 0x08 /* hangup before callback */ | |
268 | #define ISDN_NET_CBOUT 0x10 /* remote machine does callback */ | |
269 | ||
270 | #define ISDN_NET_MAGIC 0x49344C02 /* for paranoia-checking */ | |
271 | ||
272 | /* Phone-list-element */ | |
273 | typedef struct { | |
274 | void *next; | |
275 | char num[ISDN_MSNLEN]; | |
276 | } isdn_net_phone; | |
277 | ||
278 | /* | |
279 | Principles when extending structures for generic encapsulation protocol | |
280 | ("concap") support: | |
281 | - Stuff which is hardware specific (here i4l-specific) goes in | |
282 | the netdev -> local structure (here: isdn_net_local) | |
283 | - Stuff which is encapsulation protocol specific goes in the structure | |
284 | which holds the linux device structure (here: isdn_net_device) | |
285 | */ | |
286 | ||
287 | /* Local interface-data */ | |
288 | typedef struct isdn_net_local_s { | |
289 | ulong magic; | |
290 | char name[10]; /* Name of device */ | |
291 | struct net_device_stats stats; /* Ethernet Statistics */ | |
292 | int isdn_device; /* Index to isdn-device */ | |
293 | int isdn_channel; /* Index to isdn-channel */ | |
294 | int ppp_slot; /* PPPD device slot number */ | |
295 | int pre_device; /* Preselected isdn-device */ | |
296 | int pre_channel; /* Preselected isdn-channel */ | |
297 | int exclusive; /* If non-zero idx to reserved chan.*/ | |
298 | int flags; /* Connection-flags */ | |
299 | int dialretry; /* Counter for Dialout-retries */ | |
300 | int dialmax; /* Max. Number of Dial-retries */ | |
301 | int cbdelay; /* Delay before Callback starts */ | |
302 | int dtimer; /* Timeout-counter for dialing */ | |
303 | char msn[ISDN_MSNLEN]; /* MSNs/EAZs for this interface */ | |
304 | u_char cbhup; /* Flag: Reject Call before Callback*/ | |
305 | u_char dialstate; /* State for dialing */ | |
306 | u_char p_encap; /* Packet encapsulation */ | |
307 | /* 0 = Ethernet over ISDN */ | |
308 | /* 1 = RAW-IP */ | |
309 | /* 2 = IP with type field */ | |
310 | u_char l2_proto; /* Layer-2-protocol */ | |
311 | /* See ISDN_PROTO_L2..-constants in */ | |
312 | /* isdnif.h */ | |
313 | /* 0 = X75/LAPB with I-Frames */ | |
314 | /* 1 = X75/LAPB with UI-Frames */ | |
315 | /* 2 = X75/LAPB with BUI-Frames */ | |
316 | /* 3 = HDLC */ | |
317 | u_char l3_proto; /* Layer-3-protocol */ | |
318 | /* See ISDN_PROTO_L3..-constants in */ | |
319 | /* isdnif.h */ | |
320 | /* 0 = Transparent */ | |
321 | int huptimer; /* Timeout-counter for auto-hangup */ | |
322 | int charge; /* Counter for charging units */ | |
323 | ulong chargetime; /* Timer for Charging info */ | |
324 | int hupflags; /* Flags for charge-unit-hangup: */ | |
325 | /* bit0: chargeint is invalid */ | |
326 | /* bit1: Getting charge-interval */ | |
327 | /* bit2: Do charge-unit-hangup */ | |
328 | /* bit3: Do hangup even on incoming */ | |
329 | int outgoing; /* Flag: outgoing call */ | |
330 | int onhtime; /* Time to keep link up */ | |
331 | int chargeint; /* Interval between charge-infos */ | |
332 | int onum; /* Flag: at least 1 outgoing number */ | |
333 | int cps; /* current speed of this interface */ | |
334 | int transcount; /* byte-counter for cps-calculation */ | |
335 | int sqfull; /* Flag: netdev-queue overloaded */ | |
336 | ulong sqfull_stamp; /* Start-Time of overload */ | |
337 | ulong slavedelay; /* Dynamic bundling delaytime */ | |
338 | int triggercps; /* BogoCPS needed for trigger slave */ | |
339 | isdn_net_phone *phone[2]; /* List of remote-phonenumbers */ | |
340 | /* phone[0] = Incoming Numbers */ | |
341 | /* phone[1] = Outgoing Numbers */ | |
342 | isdn_net_phone *dial; /* Pointer to dialed number */ | |
343 | struct net_device *master; /* Ptr to Master device for slaves */ | |
344 | struct net_device *slave; /* Ptr to Slave device for masters */ | |
345 | struct isdn_net_local_s *next; /* Ptr to next link in bundle */ | |
346 | struct isdn_net_local_s *last; /* Ptr to last link in bundle */ | |
347 | struct isdn_net_dev_s *netdev; /* Ptr to netdev */ | |
348 | struct sk_buff_head super_tx_queue; /* List of supervisory frames to */ | |
349 | /* be transmitted asap */ | |
350 | atomic_t frame_cnt; /* number of frames currently */ | |
351 | /* queued in HL driver */ | |
352 | /* Ptr to orig. hard_header_cache */ | |
353 | spinlock_t xmit_lock; /* used to protect the xmit path of */ | |
354 | /* a particular channel (including */ | |
355 | /* the frame_cnt */ | |
356 | ||
357 | int (*org_hhc)( | |
358 | struct neighbour *neigh, | |
359 | struct hh_cache *hh); | |
360 | /* Ptr to orig. header_cache_update */ | |
361 | void (*org_hcu)(struct hh_cache *, | |
362 | struct net_device *, | |
363 | unsigned char *); | |
364 | int pppbind; /* ippp device for bindings */ | |
365 | int dialtimeout; /* How long shall we try on dialing? (jiffies) */ | |
366 | int dialwait; /* How long shall we wait after failed attempt? (jiffies) */ | |
367 | ulong dialstarted; /* jiffies of first dialing-attempt */ | |
368 | ulong dialwait_timer; /* jiffies of earliest next dialing-attempt */ | |
369 | int huptimeout; /* How long will the connection be up? (seconds) */ | |
370 | #ifdef CONFIG_ISDN_X25 | |
371 | struct concap_device_ops *dops; /* callbacks used by encapsulator */ | |
372 | #endif | |
373 | /* use an own struct for that in later versions */ | |
374 | ulong cisco_myseq; /* Local keepalive seq. for Cisco */ | |
375 | ulong cisco_mineseen; /* returned keepalive seq. from remote */ | |
376 | ulong cisco_yourseq; /* Remote keepalive seq. for Cisco */ | |
377 | int cisco_keepalive_period; /* keepalive period */ | |
378 | ulong cisco_last_slarp_in; /* jiffie of last keepalive packet we received */ | |
379 | char cisco_line_state; /* state of line according to keepalive packets */ | |
380 | char cisco_debserint; /* debugging flag of cisco hdlc with slarp */ | |
381 | struct timer_list cisco_timer; | |
382 | struct work_struct tqueue; | |
383 | } isdn_net_local; | |
384 | ||
385 | /* the interface itself */ | |
386 | typedef struct isdn_net_dev_s { | |
387 | isdn_net_local *local; | |
388 | isdn_net_local *queue; /* circular list of all bundled | |
389 | channels, which are currently | |
390 | online */ | |
391 | spinlock_t queue_lock; /* lock to protect queue */ | |
392 | void *next; /* Pointer to next isdn-interface */ | |
393 | struct net_device dev; /* interface to upper levels */ | |
394 | #ifdef CONFIG_ISDN_PPP | |
395 | ippp_bundle * pb; /* pointer to the common bundle structure | |
396 | * with the per-bundle data */ | |
397 | #endif | |
398 | #ifdef CONFIG_ISDN_X25 | |
399 | struct concap_proto *cprot; /* connection oriented encapsulation protocol */ | |
400 | #endif | |
401 | ||
402 | } isdn_net_dev; | |
403 | ||
404 | /*===================== End of ip-over-ISDN stuff ===========================*/ | |
405 | ||
406 | /*======================= Start of ISDN-tty stuff ===========================*/ | |
407 | ||
408 | #define ISDN_ASYNC_MAGIC 0x49344C01 /* for paranoia-checking */ | |
409 | #define ISDN_ASYNC_INITIALIZED 0x80000000 /* port was initialized */ | |
410 | #define ISDN_ASYNC_CALLOUT_ACTIVE 0x40000000 /* Call out device active */ | |
411 | #define ISDN_ASYNC_NORMAL_ACTIVE 0x20000000 /* Normal device active */ | |
412 | #define ISDN_ASYNC_CLOSING 0x08000000 /* Serial port is closing */ | |
413 | #define ISDN_ASYNC_CTS_FLOW 0x04000000 /* Do CTS flow control */ | |
414 | #define ISDN_ASYNC_CHECK_CD 0x02000000 /* i.e., CLOCAL */ | |
415 | #define ISDN_ASYNC_HUP_NOTIFY 0x0001 /* Notify tty on hangups/closes */ | |
416 | #define ISDN_ASYNC_SESSION_LOCKOUT 0x0100 /* Lock cua opens on session */ | |
417 | #define ISDN_ASYNC_PGRP_LOCKOUT 0x0200 /* Lock cua opens on pgrp */ | |
418 | #define ISDN_ASYNC_CALLOUT_NOHUP 0x0400 /* No hangup for cui */ | |
419 | #define ISDN_ASYNC_SPLIT_TERMIOS 0x0008 /* Sep. termios for dialin/out */ | |
420 | #define ISDN_SERIAL_XMIT_SIZE 1024 /* Default bufsize for write */ | |
421 | #define ISDN_SERIAL_XMIT_MAX 4000 /* Maximum bufsize for write */ | |
422 | #define ISDN_SERIAL_TYPE_NORMAL 1 | |
423 | #define ISDN_SERIAL_TYPE_CALLOUT 2 | |
424 | ||
425 | #ifdef CONFIG_ISDN_AUDIO | |
426 | /* For using sk_buffs with audio we need some private variables | |
427 | * within each sk_buff. For this purpose, we declare a struct here, | |
428 | * and put it always at the private skb->cb data array. A few macros help | |
429 | * accessing the variables. | |
430 | */ | |
431 | typedef struct _isdn_audio_data { | |
432 | unsigned short dle_count; | |
433 | unsigned char lock; | |
434 | } isdn_audio_data_t; | |
435 | ||
436 | #define ISDN_AUDIO_SKB_DLECOUNT(skb) (((isdn_audio_data_t *)&skb->cb[0])->dle_count) | |
437 | #define ISDN_AUDIO_SKB_LOCK(skb) (((isdn_audio_data_t *)&skb->cb[0])->lock) | |
438 | #endif | |
439 | ||
440 | /* Private data of AT-command-interpreter */ | |
441 | typedef struct atemu { | |
442 | u_char profile[ISDN_MODEM_NUMREG]; /* Modem-Regs. Profile 0 */ | |
443 | u_char mdmreg[ISDN_MODEM_NUMREG]; /* Modem-Registers */ | |
444 | char pmsn[ISDN_MSNLEN]; /* EAZ/MSNs Profile 0 */ | |
445 | char msn[ISDN_MSNLEN]; /* EAZ/MSN */ | |
446 | char plmsn[ISDN_LMSNLEN]; /* Listening MSNs Profile 0 */ | |
447 | char lmsn[ISDN_LMSNLEN]; /* Listening MSNs */ | |
448 | char cpn[ISDN_MSNLEN]; /* CalledPartyNumber on incoming call */ | |
449 | char connmsg[ISDN_CMSGLEN]; /* CONNECT-Msg from HL-Driver */ | |
450 | #ifdef CONFIG_ISDN_AUDIO | |
451 | u_char vpar[10]; /* Voice-parameters */ | |
452 | int lastDLE; /* Flag for voice-coding: DLE seen */ | |
453 | #endif | |
454 | int mdmcmdl; /* Length of Modem-Commandbuffer */ | |
455 | int pluscount; /* Counter for +++ sequence */ | |
456 | u_long lastplus; /* Timestamp of last + */ | |
457 | int carrierwait; /* Seconds of carrier waiting */ | |
458 | char mdmcmd[255]; /* Modem-Commandbuffer */ | |
459 | unsigned int charge; /* Charge units of current connection */ | |
460 | } atemu; | |
461 | ||
462 | /* Private data (similar to async_struct in <linux/serial.h>) */ | |
463 | typedef struct modem_info { | |
464 | int magic; | |
465 | struct module *owner; | |
466 | int flags; /* defined in tty.h */ | |
467 | int x_char; /* xon/xoff character */ | |
468 | int mcr; /* Modem control register */ | |
469 | int msr; /* Modem status register */ | |
470 | int lsr; /* Line status register */ | |
471 | int line; | |
472 | int count; /* # of fd on device */ | |
473 | int blocked_open; /* # of blocked opens */ | |
474 | long session; /* Session of opening process */ | |
475 | long pgrp; /* pgrp of opening process */ | |
476 | int online; /* 1 = B-Channel is up, drop data */ | |
477 | /* 2 = B-Channel is up, deliver d.*/ | |
478 | int dialing; /* Dial in progress or ATA */ | |
479 | int rcvsched; /* Receive needs schedule */ | |
480 | int isdn_driver; /* Index to isdn-driver */ | |
481 | int isdn_channel; /* Index to isdn-channel */ | |
482 | int drv_index; /* Index to dev->usage */ | |
483 | int ncarrier; /* Flag: schedule NO CARRIER */ | |
484 | unsigned char last_cause[8]; /* Last cause message */ | |
485 | unsigned char last_num[ISDN_MSNLEN]; | |
486 | /* Last phone-number */ | |
487 | unsigned char last_l2; /* Last layer-2 protocol */ | |
488 | unsigned char last_si; /* Last service */ | |
489 | unsigned char last_lhup; /* Last hangup local? */ | |
490 | unsigned char last_dir; /* Last direction (in or out) */ | |
491 | struct timer_list nc_timer; /* Timer for delayed NO CARRIER */ | |
492 | int send_outstanding;/* # of outstanding send-requests */ | |
493 | int xmit_size; /* max. # of chars in xmit_buf */ | |
494 | int xmit_count; /* # of chars in xmit_buf */ | |
495 | unsigned char *xmit_buf; /* transmit buffer */ | |
496 | struct sk_buff_head xmit_queue; /* transmit queue */ | |
497 | atomic_t xmit_lock; /* Semaphore for isdn_tty_write */ | |
498 | #ifdef CONFIG_ISDN_AUDIO | |
499 | int vonline; /* Voice-channel status */ | |
500 | /* Bit 0 = recording */ | |
501 | /* Bit 1 = playback */ | |
502 | /* Bit 2 = playback, DLE-ETX seen */ | |
503 | struct sk_buff_head dtmf_queue; /* queue for dtmf results */ | |
504 | void *adpcms; /* state for adpcm decompression */ | |
505 | void *adpcmr; /* state for adpcm compression */ | |
506 | void *dtmf_state; /* state for dtmf decoder */ | |
507 | void *silence_state; /* state for silence detection */ | |
508 | #endif | |
509 | #ifdef CONFIG_ISDN_TTY_FAX | |
510 | struct T30_s *fax; /* T30 Fax Group 3 data/interface */ | |
511 | int faxonline; /* Fax-channel status */ | |
512 | #endif | |
513 | struct tty_struct *tty; /* Pointer to corresponding tty */ | |
514 | atemu emu; /* AT-emulator data */ | |
515 | struct termios normal_termios; /* For saving termios structs */ | |
516 | struct termios callout_termios; | |
517 | wait_queue_head_t open_wait, close_wait; | |
518 | struct semaphore write_sem; | |
519 | spinlock_t readlock; | |
520 | } modem_info; | |
521 | ||
522 | #define ISDN_MODEM_WINSIZE 8 | |
523 | ||
524 | /* Description of one ISDN-tty */ | |
525 | typedef struct _isdn_modem { | |
526 | int refcount; /* Number of opens */ | |
527 | struct tty_driver *tty_modem; /* tty-device */ | |
528 | struct tty_struct *modem_table[ISDN_MAX_CHANNELS]; /* ?? copied from Orig */ | |
529 | struct termios *modem_termios[ISDN_MAX_CHANNELS]; | |
530 | struct termios *modem_termios_locked[ISDN_MAX_CHANNELS]; | |
531 | modem_info info[ISDN_MAX_CHANNELS]; /* Private data */ | |
532 | } isdn_modem_t; | |
533 | ||
534 | /*======================= End of ISDN-tty stuff ============================*/ | |
535 | ||
536 | /*======================== Start of V.110 stuff ============================*/ | |
537 | #define V110_BUFSIZE 1024 | |
538 | ||
539 | typedef struct { | |
540 | int nbytes; /* 1 Matrixbyte -> nbytes in stream */ | |
541 | int nbits; /* Number of used bits in streambyte */ | |
542 | unsigned char key; /* Bitmask in stream eg. 11 (nbits=2) */ | |
543 | int decodelen; /* Amount of data in decodebuf */ | |
544 | int SyncInit; /* Number of sync frames to send */ | |
545 | unsigned char *OnlineFrame; /* Precalculated V110 idle frame */ | |
546 | unsigned char *OfflineFrame; /* Precalculated V110 sync Frame */ | |
547 | int framelen; /* Length of frames */ | |
548 | int skbuser; /* Number of unacked userdata skbs */ | |
549 | int skbidle; /* Number of unacked idle/sync skbs */ | |
550 | int introducer; /* Local vars for decoder */ | |
551 | int dbit; | |
552 | unsigned char b; | |
553 | int skbres; /* space to reserve in outgoing skb */ | |
554 | int maxsize; /* maxbufsize of lowlevel driver */ | |
555 | unsigned char *encodebuf; /* temporary buffer for encoding */ | |
556 | unsigned char decodebuf[V110_BUFSIZE]; /* incomplete V110 matrices */ | |
557 | } isdn_v110_stream; | |
558 | ||
559 | /*========================= End of V.110 stuff =============================*/ | |
560 | ||
561 | /*======================= Start of general stuff ===========================*/ | |
562 | ||
563 | typedef struct { | |
564 | char *next; | |
565 | char *private; | |
566 | } infostruct; | |
567 | ||
568 | #define DRV_FLAG_RUNNING 1 | |
569 | #define DRV_FLAG_REJBUS 2 | |
570 | #define DRV_FLAG_LOADED 4 | |
571 | ||
572 | /* Description of hardware-level-driver */ | |
573 | typedef struct _isdn_driver { | |
574 | ulong online; /* Channel-Online flags */ | |
575 | ulong flags; /* Misc driver Flags */ | |
576 | int locks; /* Number of locks for this driver */ | |
577 | int channels; /* Number of channels */ | |
578 | wait_queue_head_t st_waitq; /* Wait-Queue for status-read's */ | |
579 | int maxbufsize; /* Maximum Buffersize supported */ | |
580 | unsigned long pktcount; /* Until now: unused */ | |
581 | int stavail; /* Chars avail on Status-device */ | |
582 | isdn_if *interface; /* Interface to driver */ | |
583 | int *rcverr; /* Error-counters for B-Ch.-receive */ | |
584 | int *rcvcount; /* Byte-counters for B-Ch.-receive */ | |
585 | #ifdef CONFIG_ISDN_AUDIO | |
586 | unsigned long DLEflag; /* Flags: Insert DLE at next read */ | |
587 | #endif | |
588 | struct sk_buff_head *rpqueue; /* Pointers to start of Rcv-Queue */ | |
589 | wait_queue_head_t *rcv_waitq; /* Wait-Queues for B-Channel-Reads */ | |
590 | wait_queue_head_t *snd_waitq; /* Wait-Queue for B-Channel-Send's */ | |
591 | char msn2eaz[10][ISDN_MSNLEN]; /* Mapping-Table MSN->EAZ */ | |
592 | } isdn_driver_t; | |
593 | ||
594 | /* Main driver-data */ | |
595 | typedef struct isdn_devt { | |
596 | struct module *owner; | |
597 | spinlock_t lock; | |
598 | unsigned short flags; /* Bitmapped Flags: */ | |
599 | int drivers; /* Current number of drivers */ | |
600 | int channels; /* Current number of channels */ | |
601 | int net_verbose; /* Verbose-Flag */ | |
602 | int modempoll; /* Flag: tty-read active */ | |
603 | spinlock_t timerlock; | |
604 | int tflags; /* Timer-Flags: */ | |
605 | /* see ISDN_TIMER_..defines */ | |
606 | int global_flags; | |
607 | infostruct *infochain; /* List of open info-devs. */ | |
608 | wait_queue_head_t info_waitq; /* Wait-Queue for isdninfo */ | |
609 | struct timer_list timer; /* Misc.-function Timer */ | |
610 | int chanmap[ISDN_MAX_CHANNELS]; /* Map minor->device-channel */ | |
611 | int drvmap[ISDN_MAX_CHANNELS]; /* Map minor->driver-index */ | |
612 | int usage[ISDN_MAX_CHANNELS]; /* Used by tty/ip/voice */ | |
613 | char num[ISDN_MAX_CHANNELS][ISDN_MSNLEN]; | |
614 | /* Remote number of active ch.*/ | |
615 | int m_idx[ISDN_MAX_CHANNELS]; /* Index for mdm.... */ | |
616 | isdn_driver_t *drv[ISDN_MAX_DRIVERS]; /* Array of drivers */ | |
617 | isdn_net_dev *netdev; /* Linked list of net-if's */ | |
618 | char drvid[ISDN_MAX_DRIVERS][20];/* Driver-ID */ | |
619 | struct task_struct *profd; /* For iprofd */ | |
620 | isdn_modem_t mdm; /* tty-driver-data */ | |
621 | isdn_net_dev *rx_netdev[ISDN_MAX_CHANNELS]; /* rx netdev-pointers */ | |
622 | isdn_net_dev *st_netdev[ISDN_MAX_CHANNELS]; /* stat netdev-pointers */ | |
623 | ulong ibytes[ISDN_MAX_CHANNELS]; /* Statistics incoming bytes */ | |
624 | ulong obytes[ISDN_MAX_CHANNELS]; /* Statistics outgoing bytes */ | |
625 | int v110emu[ISDN_MAX_CHANNELS]; /* V.110 emulator-mode 0=none */ | |
626 | atomic_t v110use[ISDN_MAX_CHANNELS]; /* Usage-Semaphore for stream */ | |
627 | isdn_v110_stream *v110[ISDN_MAX_CHANNELS]; /* V.110 private data */ | |
628 | struct semaphore sem; /* serialize list access*/ | |
629 | unsigned long global_features; | |
630 | } isdn_dev; | |
631 | ||
632 | extern isdn_dev *dev; | |
633 | ||
634 | ||
635 | #endif /* __KERNEL__ */ | |
636 | ||
637 | #endif /* __ISDN_H__ */ |