INTERFACE
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:28k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. $Id: INTERFACE,v 1.1.4.1 2001/11/20 14:19:33 kai Exp $
  2. Description of the Interface between Linklevel and Hardwarelevel
  3.   of isdn4linux:
  4.   The Communication between Linklevel (LL) and Hardwarelevel (HL)
  5.   is based on the struct isdn_if (defined in isdnif.h).
  6.   An HL-driver can register itself at LL by calling the function
  7.   register_isdn() with a pointer to that struct. Prior to that, it has
  8.   to preset some of the fields of isdn_if. The LL sets the rest of
  9.   the fields. All further communication is done via callbacks using
  10.   the function-pointers defined in isdn_if.
  11.   Changes/Version numbering:
  12.   During development of the ISDN subsystem, several changes have been
  13.   made to the interface. Before it went into kernel, the package
  14.   had a unique version number. The last version, distributed separately
  15.   was 0.7.4. When the subsystem went into kernel, every functional unit
  16.   got a separate version number. These numbers are shown at initialization,
  17.   separated by slashes:
  18.      c.c/t.t/n.n/p.p/a.a/v.v
  19.   where
  20.    c.c is the revision of the common code.
  21.    t.t is the revision of the tty related code.
  22.    n.n is the revision of the network related code.
  23.    p.p is the revision of the ppp related code.
  24.    a.a is the revision of the audio related code.
  25.    v.v is the revision of the V.110 related code.
  26.   Changes in this document are marked with '***CHANGEx' where x representing
  27.   the version number. If that number starts with 0, it refers to the old,
  28.   separately distributed package. If it starts with one of the letters
  29.   above, it refers to the revision of the corresponding module. 
  30.   ***CHANGEIx refers to the revision number of the isdnif.h  
  31. 1. Description of the fields of isdn_if:
  32.   int channels;
  33.     This field has to be set by the HL-driver to the number of channels
  34.     supported prior to calling register_isdn(). Upon return of the call,
  35.     the LL puts an id there, which has to be used by the HL-driver when
  36.     invoking the other callbacks.
  37.   int maxbufsize;
  38.     ***CHANGE0.6: New since this version.
  39.     Also to be preset by the HL-driver. With this value the HL-driver
  40.     tells the LL the maximum size of a data-packet it will accept. 
  41.   unsigned long features;
  42.     To be preset by the HL-driver. Using this field, the HL-driver
  43.     announces the features supported. At the moment this is limited to
  44.     report the supported layer2 and layer3-protocols. For setting this
  45.     field the constants ISDN_FEATURE..., declared in isdnif.h have to be
  46.     used.
  47.     ***CHANGE0.7.1: The line type (1TR6, EDSS1) has to be set.
  48.   unsigned short hl_hdrlen;
  49.     ***CHANGE0.7.4: New field.
  50.     To be preset by the HL-driver, if it supports sk_buff's. The driver
  51.     should put here the amount of additional space needed in sk_buff's for
  52.     its internal purposes. Drivers not supporting sk_buff's should 
  53.     initialize this field to 0.
  54.   void (*rcvcallb_skb)(int, int, struct sk_buff *)
  55.     ***CHANGE0.7.4: New field.
  56.     This field will be set by LL. The HL-driver delivers received data-
  57.     packets by calling this function. Upon calling, the HL-driver must
  58.     already have its private data pulled off the head of the sk_buff.
  59.     Parameter:
  60.       int              driver-Id
  61.       int              Channel-number locally to the driver. (starting with 0)
  62.       struct sk_buff * Pointer to sk_buff, containing received data.
  63.   int (*statcallb)(isdn_ctrl*);
  64.     This field will be set by LL. This function has to be called by the
  65.     HL-driver for signaling status-changes or other events to the LL.
  66.     Parameter:
  67.       isdn_ctrl*
  68.       The struct isdn_ctrl also defined in isdn_if. The exact meanings of its
  69.       fields are described together with the descriptions of the possible
  70.       events. Here is only a short description of the fields:
  71.         driver  = driver Id.
  72.         command = event-type. (one of the constants ISDN_STAT_...)
  73.         arg     = depends on event-type.
  74.         num     = depends on event-type.
  75.     Returnvalue:
  76.       0 on success, else -1
  77.   int (*command)(isdn_ctrl*);
  78.     This field has to be preset by the HL-driver. It points to a function,
  79.     to be called by LL to perform functions like dialing, B-channel
  80.     setup, etc. The exact meaning of the parameters is described with the
  81.     descriptions of the possible commands.
  82.     Parameter:
  83.       isdn_ctrl*
  84.         driver  = driver-Id
  85.         command = command to perform. (one of the constants ISDN_CMD_...)
  86.         arg     = depends on command.
  87.         num     = depends on command.
  88.     
  89.     Returnvalue:
  90.       >=0 on success, else error-code (-ENODEV etc.)
  91.   int (*writebuf_skb)(int, int, int, struct sk_buff *)
  92.     ***CHANGE0.7.4: New field.
  93.     ***CHANGEI.1.21: New field.
  94.     This field has to be preset by the HL-driver. The given function will
  95.     be called by the LL for delivering data to be send via B-Channel.
  96.  
  97.     Parameter:
  98.       int              driver-Id ***CHANGE0.7.4: New parameter.
  99.       int              channel-number locally to the HL-driver. (starts with 0)
  100.       int        ack ***ChangeI1.21: New parameter
  101.        If this is !0, the driver has to signal the delivery
  102.        by sending an ISDN_STAT_BSENT. If this is 0, the driver
  103.        MUST NOT send an ISDN_STAT_BSENT.
  104.       struct sk_buff * Pointer to sk_buff containing data to be send via
  105.                        B-channel.
  106.     Returnvalue:
  107.       Length of data accepted on success, else error-code (-EINVAL on
  108.       oversized packets etc.)
  109.   int (*writecmd)(u_char*, int, int, int, int);
  110.     This field has to be preset by the HL-driver. The given function will be
  111.     called to perform write-requests on /dev/isdnctrl (i.e. sending commands
  112.     to the card) The data-format is hardware-specific. This function is
  113.     intended for debugging only. It is not necessary for normal operation
  114.     and never will be called by the tty-emulation- or network-code. If
  115.     this function is not supported, the driver has to set NULL here.
  116.     Parameter:
  117.       u_char* pointer to data.
  118.       int     length of data.
  119.       int     flag: 0 = call from within kernel-space. (HL-driver must use
  120.                         memcpy, may NOT use schedule())
  121.                     1 = call from user-space. (HL-driver must use
  122.                         memcpy_fromfs, use of schedule() allowed)
  123.       int     driver-Id.
  124.       int     channel-number locally to the HL-driver. (starts with 0)
  125. ***CHANGEI1.14: The driver-Id and channel-number are new since this revision.
  126.     Returnvalue:
  127.       Length of data accepted on success, else error-code (-EINVAL etc.)
  128.   int (*readstat)(u_char*, int, int, int, int);
  129.     This field has to be preset by the HL-driver. The given function will be
  130.     called to perform read-requests on /dev/isdnctrl (i.e. reading replies
  131.     from the card) The data-format is hardware-specific. This function is
  132.     intended for debugging only. It is not necessary for normal operation
  133.     and never will be called by the tty-emulation- or network-code. If
  134.     this function is not supported, the driver has to set NULL here.
  135.     Parameter:
  136.       u_char* pointer to data.
  137.       int     length of data.
  138.       int     flag: 0 = call from within kernel-space. (HL-driver must use
  139.                         memcpy, may NOT use schedule())
  140.                     1 = call from user-space. (HL-driver must use
  141.                         memcpy_fromfs, use of schedule() allowed)
  142.       int     driver-Id.
  143.       int     channel-number locally to the HL-driver. (starts with 0)
  144. ***CHANGEI1.14: The driver-Id and channel-number are new since this revision.
  145.     Returnvalue:
  146.       Length of data on success, else error-code (-EINVAL etc.)
  147.   char id[20];
  148.        ***CHANGE0.7: New since this version.
  149.    This string has to be preset by the HL-driver. Its purpose is for
  150.    identification of the driver by the user. Eg.: it is shown in the
  151.    status-info of /dev/isdninfo. Furthermore it is used as Id for binding
  152.    net-interfaces to a specific channel. If a string of length zero is
  153.    given, upon return, isdn4linux will replace it by a generic name. (line0,
  154.    line1 etc.) It is recommended to make this string configurable during
  155.    module-load-time. (copy a global variable to this string.) For doing that,
  156.    modules 1.2.8 or newer are necessary.
  157. 2. Description of the commands, a HL-driver has to support:
  158.    All commands will be performed by calling the function command() described
  159.    above from within the LL. The field command of the struct-parameter will
  160.    contain the desired command, the field driver is always set to the
  161.    appropriate driver-Id.
  162.    Until now, the following commands are defined:
  163. ***CHANGEI1.34: The parameter "num" has been replaced by a union "parm" containing
  164.                 the old "num" and a new setup_type struct used for ISDN_CMD_DIAL
  165.                 and ISDN_STAT_ICALL callback.
  166.    ISDN_CMD_IOCTL:
  167.      This command is intended for performing ioctl-calls for configuring
  168.      hardware or similar purposes (setting port-addresses, loading firmware
  169.      etc.) For this purpose, in the LL all ioctl-calls with an argument
  170.      >= IIOCDRVCTL (0x100) will be handed transparently to this
  171.      function after subtracting 0x100 and placing the result in arg.
  172.      Example:
  173.        If a userlevel-program calls ioctl(0x101,...) the function gets
  174.        called with the field command set to 1.
  175.      Parameter:
  176.        driver   = driver-Id.
  177.        command  = ISDN_CMD_IOCTL
  178.        arg      = Original ioctl-cmd - IIOCDRVCTL
  179.        parm.num = first bytes filled with (unsigned long)arg
  180.    
  181.      Returnvalue:
  182.        Depending on driver.
  183.   
  184.   ISDN_CMD_DIAL:
  185.     This command is used to tell the HL-driver it should dial a given
  186.     number.
  187.     Parameter:
  188.       driver      = driver-Id.
  189.       command     = ISDN_CMD_DIAL
  190.       arg         = channel-number locally to the driver. (starting with 0)
  191.       
  192.       parm.setup.phone  = An ASCII-String containing the number to dial.
  193.       parm.setup.eazmsn = An ASCII-Sting containing the own EAZ or MSN.
  194.       parm.setup.si1    = The Service-Indicator.
  195.       parm.setup.si2    = Additional Service-Indicator.
  196.                     If the Line has been designed as SPV (a special german
  197.                     feature, meaning semi-leased-line) the phone has to
  198.                     start with an "S".
  199.       ***CHANGE0.6: In previous versions the EAZ has been given in the
  200.                     highbyte of arg.
  201.     ***CHANGE0.7.1: New since this version: ServiceIndicator and AddInfo.
  202.   ISDN_CMD_ACCEPTD:
  203.     With this command, the HL-driver is told to accept a D-Channel-setup.
  204.     (Response to an incoming call)
  205.     Parameter:
  206.       driver      = driver-Id.
  207.       command     = ISDN_CMD_ACCEPTD
  208.       arg         = channel-number locally to the driver. (starting with 0)
  209.       parm        = unused.
  210.   ISDN_CMD_ACCEPTB:
  211.     With this command, the HL-driver is told to perform a B-Channel-setup.
  212.     (after establishing D-Channel-Connection)
  213.     Parameter:
  214.       driver      = driver-Id.
  215.       command     = ISDN_CMD_ACCEPTB
  216.       arg         = channel-number locally to the driver. (starting with 0)
  217.       parm        = unused.
  218.   ISDN_CMD_HANGUP:
  219.     With this command, the HL-driver is told to hangup (B-Channel if
  220.     established first, then D-Channel). This command is also used for
  221.     actively rejecting an incoming call.
  222.     Parameter:
  223.       driver      = driver-Id.
  224.       command     = ISDN_CMD_HANGUP
  225.       arg         = channel-number locally to the driver. (starting with 0)
  226.       parm        = unused.
  227.   ISDN_CMD_CLREAZ:
  228.     With this command, the HL-driver is told not to signal incoming
  229.     calls to the LL.
  230.     Parameter:
  231.       driver      = driver-Id.
  232.       command     = ISDN_CMD_CLREAZ
  233.       arg         = channel-number locally to the driver. (starting with 0)
  234.       parm        = unused.
  235.   ISDN_CMD_SETEAZ:
  236.     With this command, the HL-driver is told to signal incoming calls for
  237.     the given EAZs/MSNs to the LL.
  238.     Parameter:
  239.       driver      = driver-Id.
  240.       command     = ISDN_CMD_SETEAZ
  241.       arg         = channel-number locally to the driver. (starting with 0)
  242.       parm.num    = ASCII-String, containing the desired EAZ's/MSN's
  243.                     (comma-separated). If an empty String is given, the
  244.                     HL-driver should respond to ALL incoming calls,
  245.                     regardless of the destination-address.
  246.       ***CHANGE0.6: New since this version the "empty-string"-feature.
  247.   ISDN_CMD_GETEAZ: (currently unused)
  248.     With this command, the HL-driver is told to report the current setting
  249.     given with ISDN_CMD_SETEAZ.
  250.     Parameter:
  251.       driver      = driver-Id.
  252.       command     = ISDN_CMD_GETEAZ
  253.       arg         = channel-number locally to the driver. (starting with 0)
  254.       parm.num    = ASCII-String, containing the current EAZ's/MSN's
  255.   ISDN_CMD_SETSIL: (currently unused)
  256.     With this command, the HL-driver is told to signal only incoming
  257.     calls with the given Service-Indicators.
  258.     Parameter:
  259.       driver      = driver-Id.
  260.       command     = ISDN_CMD_SETSIL
  261.       arg         = channel-number locally to the driver. (starting with 0)
  262.       parm.num    = ASCII-String, containing the desired Service-Indicators.
  263.   ISDN_CMD_GETSIL: (currently unused)
  264.     With this command, the HL-driver is told to return the current
  265.     Service-Indicators it will respond to.
  266.     Parameter:
  267.       driver      = driver-Id.
  268.       command     = ISDN_CMD_SETSIL
  269.       arg         = channel-number locally to the driver. (starting with 0)
  270.       parm.num    = ASCII-String, containing the current Service-Indicators.
  271.   ISDN_CMD_SETL2:
  272.     With this command, the HL-driver is told to select the given Layer-2-
  273.     protocol. This command is issued by the LL prior to ISDN_CMD_DIAL or
  274.     ISDN_CMD_ACCEPTD.
  275.     Parameter:
  276.       driver      = driver-Id.
  277.       command     = ISDN_CMD_SETL2
  278.       arg         = channel-number locally to the driver. (starting with 0)
  279.                     logical or'ed with (protocol-Id << 8)
  280.                     protocol-Id is one of the constants ISDN_PROTO_L2...
  281.       parm        = unused.
  282.   ISDN_CMD_GETL2: (currently unused)
  283.     With this command, the HL-driver is told to return the current
  284.     setting of the Layer-2-protocol.
  285.     Parameter:
  286.       driver      = driver-Id.
  287.       command     = ISDN_CMD_GETL2
  288.       arg         = channel-number locally to the driver. (starting with 0)
  289.       parm        = unused.
  290.     Returnvalue:
  291.       current protocol-Id (one of the constants ISDN_L2_PROTO)
  292.   ISDN_CMD_SETL3:
  293.     With this command, the HL-driver is told to select the given Layer-3-
  294.     protocol. This command is issued by the LL prior to ISDN_CMD_DIAL or
  295.     ISDN_CMD_ACCEPTD.
  296.     Parameter:
  297.       driver      = driver-Id.
  298.       command     = ISDN_CMD_SETL3
  299.       arg         = channel-number locally to the driver. (starting with 0)
  300.                     logical or'ed with (protocol-Id << 8)
  301.                     protocol-Id is one of the constants ISDN_PROTO_L3...
  302.       parm.fax    = Pointer to T30_s fax struct. (fax usage only)
  303.   ISDN_CMD_GETL2: (currently unused)
  304.     With this command, the HL-driver is told to return the current
  305.     setting of the Layer-3-protocol.
  306.     Parameter:
  307.       driver      = driver-Id.
  308.       command     = ISDN_CMD_GETL3
  309.       arg         = channel-number locally to the driver. (starting with 0)
  310.       parm        = unused.
  311.     Returnvalue:
  312.       current protocol-Id (one of the constants ISDN_L3_PROTO)
  313.   ISDN_CMD_LOCK:
  314.     With this command the HL-driver is told, that it will be used by the
  315.     LL and therefore may not be unloaded. The HL-driver should use
  316.     MOD_INC_USE_COUNT to tell that to the kernel.
  317.     Parameter:
  318.       driver      = driver-Id.
  319.       command     = ISDN_CMD_LOCK
  320.       arg         = unused.
  321.       parm        = unused.
  322.   ISDN_CMD_UNLOCK:
  323.     With this command the HL-driver is told, that it is no more used by the
  324.     LL and therefore may be unloaded. The HL-driver should use
  325.     DEC_INC_USE_COUNT to tell that to the kernel.
  326.     Parameter:
  327.       driver      = driver-Id.
  328.       command     = ISDN_CMD_UNLOCK
  329.       arg         = unused.
  330.       parm        = unused.
  331.   ISDN_CMD_PROCEED: 
  332.     With this command, the HL-driver is told to proceed with a incoming call.
  333.     Parameter:
  334.       driver      = driver-Id.
  335.       command     = ISDN_CMD_PROCEED
  336.       arg         = channel-number locally to the driver. (starting with 0)
  337.       setup.eazmsn= empty string or string send as uus1 in DSS1 with 
  338.                     PROCEED message
  339.   ISDN_CMD_ALERT: 
  340.     With this command, the HL-driver is told to alert a proceeding call.
  341.     Parameter:
  342.       driver      = driver-Id.
  343.       command     = ISDN_CMD_ALERT
  344.       arg         = channel-number locally to the driver. (starting with 0)
  345.       setup.eazmsn= empty string or string send as uus1 in DSS1 with 
  346.                     ALERT message
  347.   ISDN_CMD_REDIR: 
  348.     With this command, the HL-driver is told to redirect a call in proceeding
  349.     or alerting state.  
  350.     Parameter:
  351.       driver      = driver-Id.
  352.       command     = ISDN_CMD_REDIR
  353.       arg         = channel-number locally to the driver. (starting with 0)
  354.       setup.eazmsn= empty string or string send as uus1 in DSS1 protocol
  355.       setup.screen= screening indicator
  356.       setup.phone = redirected to party number
  357.   ISDN_CMD_PROT_IO:
  358.     With this call, the LL-driver invokes protocol specific features through
  359.     the LL.
  360.     The call is not implicitely bound to a connection.
  361.     Parameter:
  362.       driver      = driver-Id
  363.       command     = ISDN_CMD_PROT_IO
  364.       arg         = The lower 8 Bits define the addressed protocol as defined
  365.                     in ISDN_PTYPE..., the upper bits are used to differentiate
  366.                     the protocol specific CMD.  
  367.       
  368.       para        = protocol and function specific. See isdnif.h for detail.
  369.   ISDN_CMD_FAXCMD:
  370.     With this command the HL-driver receives a fax sub-command.
  371.     For details refer to INTERFACE.fax
  372.     Parameter:
  373.       driver      = driver-Id.
  374.       command     = ISDN_CMD_FAXCMD
  375.       arg         = channel-number locally to the driver. (starting with 0)
  376.       parm        = unused.
  377. 3. Description of the events to be signaled by the HL-driver to the LL.
  378.   All status-changes are signaled via calling the previously described
  379.   function statcallb(). The field command of the struct isdn_cmd has
  380.   to be set by the HL-driver with the appropriate Status-Id (event-number).
  381.   The field arg has to be set to the channel-number (locally to the driver,
  382.   starting with 0) to which this event applies. (Exception: STAVAIL-event)
  383.   Until now, the following Status-Ids are defined:
  384.   ISDN_STAT_AVAIL:
  385.     With this call, the HL-driver signals the availability of new data
  386.     for readstat(). Used only for debugging-purposes, see description
  387.     of readstat().
  388.     Parameter:
  389.       driver      = driver-Id
  390.       command     = ISDN_STAT_STAVAIL
  391.       arg         = length of available data.
  392.       parm        = unused.
  393.   ISDN_STAT_ICALL:
  394.   ISDN_STAT_ICALLW:
  395.     With this call, the HL-driver signals an incoming call to the LL.
  396.     If ICALLW is signalled the incoming call is a waiting call without
  397.     a available B-chan.
  398.     Parameter:
  399.       driver            = driver-Id
  400.       command           = ISDN_STAT_ICALL
  401.       arg               = channel-number, locally to the driver. (starting with 0)
  402.       para.setup.phone  = Callernumber.
  403.       para.setup.eazmsn = CalledNumber.
  404.       para.setup.si1    = Service Indicator.
  405.       para.setup.si2    = Additional Service Indicator.
  406.       para.setup.plan   = octet 3 from Calling party number Information Element.
  407.       para.setup.screen = octet 3a from Calling party number Information Element.
  408.     Return:
  409.       0           = No device matching this call.
  410.       1           = At least one device matching this call (RING on ttyI).
  411.                     HL-driver may send ALERTING on the D-channel in this case.
  412.       2           = Call will be rejected.
  413.       3           = Incoming called party number is currently incomplete.
  414.                     Additional digits are required. 
  415.                     Used for signalling with PtP connections.
  416.       4           = Call will be held in a proceeding state 
  417.                     (HL driver sends PROCEEDING)
  418.                     Used when a user space prog needs time to interpret a call
  419.     para.setup.eazmsn may be filled with an uus1 message of
  420.     30 octets maximum. Empty string if no uus. 
  421.       5           = Call will be actively deflected to another party
  422.                     Only available in DSS1/EURO protocol
  423.     para.setup.phone must be set to destination party number
  424.     para.setup.eazmsn may be filled with an uus1 message of
  425.     30 octets maximum. Empty string if no uus. 
  426.       -1          = An error happened. (Invalid parameters for example.)
  427.   The keypad support now is included in the dial command.         
  428.   ISDN_STAT_RUN:
  429.     With this call, the HL-driver signals availability of the ISDN-card.
  430.     (after initializing, loading firmware)
  431.     Parameter:
  432.       driver      = driver-Id
  433.       command     = ISDN_STAT_RUN
  434.       arg         = unused.
  435.       parm        = unused.
  436.   ISDN_STAT_STOP:
  437.     With this call, the HL-driver signals unavailability of the ISDN-card.
  438.     (before unloading, while resetting/reconfiguring the card)
  439.     Parameter:
  440.       driver      = driver-Id
  441.       command     = ISDN_STAT_STOP
  442.       arg         = unused.
  443.       parm        = unused.
  444.   ISDN_STAT_DCONN:
  445.    With this call, the HL-driver signals the successful establishment of
  446.    a D-Channel-connection. (Response to ISDN_CMD_ACCEPTD or ISDN_CMD_DIAL)
  447.     Parameter:
  448.       driver      = driver-Id
  449.       command     = ISDN_STAT_DCONN
  450.       arg         = channel-number, locally to the driver. (starting with 0)
  451.       parm        = unused.
  452.   ISDN_STAT_BCONN:
  453.    With this call, the HL-driver signals the successful establishment of
  454.    a B-Channel-connection. (Response to ISDN_CMD_ACCEPTB or because the
  455.    remote-station has initiated establishment)
  456.    The HL driver should call this when the logical l2/l3 protocol 
  457.    connection on top of the physical B-channel is established.
  458.     Parameter:
  459.       driver      = driver-Id
  460.       command     = ISDN_STAT_BCONN
  461.       arg         = channel-number, locally to the driver. (starting with 0)
  462.       parm.num    = ASCII-String, containing type of connection (for analog
  463.     modem only). This will be appended to the CONNECT message
  464.     e.g. 14400/V.32bis
  465.   ISDN_STAT_DHUP:
  466.    With this call, the HL-driver signals the shutdown of a
  467.    D-Channel-connection. This could be a response to a prior ISDN_CMD_HANGUP,
  468.    or caused by a remote-hangup or if the remote-station has actively
  469.    rejected a call.
  470.     Parameter:
  471.       driver      = driver-Id
  472.       command     = ISDN_STAT_DHUP
  473.       arg         = channel-number, locally to the driver. (starting with 0)
  474.       parm        = unused.
  475.   ISDN_STAT_BHUP:
  476.    With this call, the HL-driver signals the shutdown of a
  477.    B-Channel-connection. This could be a response to a prior ISDN_CMD_HANGUP,
  478.    or caused by a remote-hangup.
  479.    The HL driver should call this as soon as the logical l2/l3 protocol 
  480.    connection on top of the physical B-channel is released.
  481.     Parameter:
  482.       driver      = driver-Id
  483.       command     = ISDN_STAT_BHUP
  484.       arg         = channel-number, locally to the driver. (starting with 0)
  485.       parm        = unused.
  486.   ISDN_STAT_CINF:
  487.    With this call, the HL-driver delivers charge-unit information to the
  488.    LL.
  489.     Parameter:
  490.       driver      = driver-Id
  491.       command     = ISDN_STAT_CINF
  492.       arg         = channel-number, locally to the driver. (starting with 0)
  493.       parm.num    = ASCII string containing charge-units (digits only).
  494.   ISDN_STAT_LOAD: (currently unused)
  495.   ISDN_STAT_UNLOAD:
  496.    With this call, the HL-driver signals that it will be unloaded now. This
  497.    tells the LL to release all corresponding data-structures.
  498.     Parameter:
  499.       driver      = driver-Id
  500.       command     = ISDN_STAT_UNLOAD
  501.       arg         = unused.
  502.       parm        = unused.
  503.   ISDN_STAT_BSENT:
  504.     With this call the HL-driver signals the delivery of a data-packet.
  505.     This callback is used by the network-interfaces only, tty-Emulation
  506.     does not need this call.
  507.     Parameter:
  508.       driver      = driver-Id
  509.       command     = ISDN_STAT_BSENT
  510.       arg         = channel-number, locally to the driver. (starting with 0)
  511.       parm.length = ***CHANGEI.1.21: New field.
  512.     the driver has to set this to the original length
  513.     of the skb at the time of receiving it from the linklevel.
  514.   ISDN_STAT_NODCH:
  515.     With this call, the driver has to respond to a prior ISDN_CMD_DIAL, if
  516.     no D-Channel is available.
  517.     Parameter:
  518.       driver      = driver-Id
  519.       command     = ISDN_STAT_NODCH
  520.       arg         = channel-number, locally to the driver. (starting with 0)
  521.       parm        = unused.
  522.   ISDN_STAT_ADDCH: 
  523.     This call is for HL-drivers, which are unable to check card-type
  524.     or numbers of supported channels before they have loaded any firmware
  525.     using ioctl. Those HL-driver simply set the channel-parameter to a
  526.     minimum channel-number when registering, and later if they know
  527.     the real amount, perform this call, allocating additional channels.
  528.     Parameter:
  529.       driver      = driver-Id
  530.       command     = ISDN_STAT_ADDCH
  531.       arg         = number of channels to be added.
  532.       parm        = unused.
  533.   ISDN_STAT_CAUSE:
  534.     With this call, the HL-driver delivers CAUSE-messages to the LL.
  535.     Currently the LL does not use this messages. Their contents is simply
  536.     logged via kernel-messages. Therefore, currently the format of the
  537.     messages is completely free. However they should be printable.
  538.     Parameter:
  539.       driver      = driver-Id
  540.       command     = ISDN_STAT_NODCH
  541.       arg         = channel-number, locally to the driver. (starting with 0)
  542.       parm.num    = ASCII string containing CAUSE-message.
  543.   ISDN_STAT_DISPLAY:
  544.     With this call, the HL-driver delivers DISPLAY-messages to the LL.
  545.     Currently the LL does not use this messages. 
  546.     Parameter:
  547.       driver      = driver-Id
  548.       command     = ISDN_STAT_DISPLAY
  549.       arg         = channel-number, locally to the driver. (starting with 0)
  550.       para.display= string containing DISPLAY-message.
  551.   ISDN_STAT_PROT:
  552.     With this call, the HL-driver delivers protocol specific infos to the LL.
  553.     The call is not implicitely bound to a connection.
  554.     Parameter:
  555.       driver      = driver-Id
  556.       command     = ISDN_STAT_PROT
  557.       arg         = The lower 8 Bits define the addressed protocol as defined
  558.                     in ISDN_PTYPE..., the upper bits are used to differenciate
  559.                     the protocol specific STAT.  
  560.       
  561.       para        = protocol and function specific. See isdnif.h for detail.
  562.   ISDN_STAT_DISCH:
  563.     With this call, the HL-driver signals the LL to disable or enable the
  564.     use of supplied channel and driver.
  565.     The call may be used to reduce the available number of B-channels after
  566.     loading the driver. The LL has to ignore a disabled channel when searching
  567.     for free channels. The HL driver itself never delivers STAT callbacks for
  568.     disabled channels.      
  569.     The LL returns a nonzero code if the operation was not successful or the
  570.     selected channel is actually regarded as busy.
  571.     Parameter:
  572.       driver      = driver-Id
  573.       command     = ISDN_STAT_DISCH
  574.       arg         = channel-number, locally to the driver. (starting with 0)
  575.       parm.num[0] = 0 if channel shall be disabled, else enabled.
  576.   ISDN_STAT_L1ERR:
  577.     ***CHANGEI1.21 new status message.
  578.     A signal can be sent to the linklevel if an Layer1-error results in
  579.     packet-loss on receive or send. The field errcode of the cmd.parm
  580.     union describes the error more precisely.
  581.     Parameter:
  582.       driver      = driver-Id
  583.       command     = ISDN_STAT_L1ERR
  584.       arg         = channel-number, locally to the driver. (starting with 0)
  585.       parm.errcode= ISDN_STAT_L1ERR_SEND:     Packet lost while sending.
  586.     ISDN_STAT_L1ERR_RECV:     Packet lost while receiving.
  587.   ISDN_STAT_FAXIND:
  588.     With this call the HL-driver signals a fax sub-command to the LL.
  589.     For details refer to INTERFACE.fax
  590.     Parameter:
  591.       driver      = driver-Id.
  592.       command     = ISDN_STAT_FAXIND
  593.       arg         = channel-number, locally to the driver. (starting with 0)
  594.       parm        = unused.