isdn.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:30k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

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