~ubuntu-branches/ubuntu/trusty/isdnutils/trusty

« back to all changes in this revision

Viewing changes to pcbit/pcbit.h

  • Committer: Package Import Robot
  • Author(s): Steve Langasek
  • Date: 2013-11-15 00:02:58 UTC
  • mfrom: (1.1.8) (31.1.1 trusty-proposed)
  • Revision ID: package-import@ubuntu.com-20131115000258-tt9v3gasgrdml07k
Tags: 1:3.25+dfsg1-3.3ubuntu1
* Merge from Debian unstable:
  - resolves licensing issues with package contents.  LP: #511988.
  - includes proper upstream fix for ipppd on ARM.  LP: #453159.
  - resolves isdnutils-base removal failures.  LP: #813771.
  - fixes capiutils init script to not try to mount obsolete capifs.
    LP: #1064347.
* Remaining changes:
  - Switch libreadline5-dev to libreadline-gplv2-dev since this package
    appears to be GPLv2
  - debian/patches/no-imake.patch: Don't build xisdnload/xmonisdn using
    xmkmf/imake.  This patch was dropped in Debian without explanation;
    it still applies and seems to still be a good idea for eventual
    upstreaming, since imake is quite obsolete.
  - capi.conf: Fix typo for fcdsl2 firmware. LP: #189132.
  - Remove dependencies on /etc/inittab.
    - Disable the installation code to modify /etc/inittab.
    - isdnutils-base: Add ttyI0 example script, which needs to be installed
      in /etc/event.d/ttyI0.
    - isdnvboxserver: Add ttyI1 example script, which needs to be installed
      in /etc/event.d/ttyI1.
    - The two upstart scripts need to be edited.
    - Further improvements and documentation welcome.
* Changes included in Debian:
  - replace calls to ./MAKEDEV with /sbin/MAKEDEV
  - Build-depend on ppp-dev.
  - Switch to newer tcl -dev.
  - update to newer automake
  - debian/rules: use autoreconf to update the autotools in the capi20
    directory
  - debian/{compat,rules,*.files,.dirs}: Convert to Multi-arch.
  - debian/libcapi20-dev.install: Remove .la files (no builds use them).
* Changes included upstream:
  - fix for ARM FTBFS.
  - fix bashisms in vboxplay.
  - debian/patches/{config_libdir,toplevel-make}.patch: add CONFIG_LIBDIR
    override to upstream build system to support Multi-arch.
* Dropped changes:
  - kick dpatch to the curb.
* Handle migrating the blacklist file from
  /etc/modprobe.d/blacklist-capiutils.conf to the path used in Debian,
  /etc/modprobe.d/capiutils.conf.
* Handle rename of /etc/ppp/ip-down.d/99-ipppd and /etc/ppp/ip-up.d/00-ipppd
  to /etc/ppp/ip-down.d/ipppd and /etc/ppp/ip-up.d/ipppd
* Handle rename of /etc/init.d/isdnutils to /etc/init.d/isdnutils-base
* Restore standard.tcl to /usr/share/isdnvboxserver/default; maintainer
  scripts must not depend on contents of /usr/share/doc.
* Apply patches that were preserved in the 3.0 (quilt) migration, but
  were inadvertently not applied:
  - debian/patches/capifax.additional_error_codes.patch
  - debian/patches/capifax.3_1kHz_audio.patch
* Drop debian/isdnutils-base.cron.d, which isn't a cronjob example at all
  but an inittab example gone astray.
* debian/dotconfig*: don't use embedded quotes for paths; this confuses
  vbox's Makefiles something fierce, and causes files to be missed from
  debian/tmp'/usr/share/man/' at install time.
* Fix isdnlog and ipppd to not ship files used in the postinst under
  /usr/share/doc.
* Modernize the upstart examples.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* API only version generated from kernel drivers/isdn/pcbit/pcbit.h */
2
 
 
3
 
/*
4
 
 * PCBIT-D device driver definitions
5
 
 *
6
 
 * Copyright (C) 1996 Universidade de Lisboa
7
 
 * 
8
 
 * Written by Pedro Roque Marques (roque@di.fc.ul.pt)
9
 
 *
10
 
 * This software may be used and distributed according to the terms of 
11
 
 * the GNU General Public License, incorporated herein by reference.
12
 
 */
13
 
 
14
 
#ifndef PCBIT_H
15
 
#define PCBIT_H
16
 
 
17
 
#define MAX_PCBIT_CARDS 4
18
 
#define BLOCK_TIMER
19
 
 
20
 
 
21
 
/* isdn_ctrl only allows a long sized argument */
22
 
 
23
 
struct pcbit_ioctl {
24
 
        union {
25
 
                struct byte_op {
26
 
                        ushort addr;
27
 
                        ushort value;
28
 
                } rdp_byte;
29
 
                unsigned long l2_status;
30
 
        } info;
31
 
};
32
 
 
33
 
 
34
 
 
35
 
#define PCBIT_IOCTL_GETSTAT  0x01    /* layer2 status */
36
 
#define PCBIT_IOCTL_LWMODE   0x02    /* linear write mode */
37
 
#define PCBIT_IOCTL_STRLOAD  0x03    /* start load mode */
38
 
#define PCBIT_IOCTL_ENDLOAD  0x04    /* end load mode */
39
 
#define PCBIT_IOCTL_SETBYTE  0x05    /* set byte */
40
 
#define PCBIT_IOCTL_GETBYTE  0x06    /* get byte */
41
 
#define PCBIT_IOCTL_RUNNING  0x07    /* set protocol running */
42
 
#define PCBIT_IOCTL_WATCH188 0x08    /* set watch 188 */
43
 
#define PCBIT_IOCTL_PING188  0x09    /* ping 188 */
44
 
#define PCBIT_IOCTL_FWMODE   0x0A    /* firmware write mode */
45
 
#define PCBIT_IOCTL_STOP     0x0B    /* stop protocol */
46
 
#define PCBIT_IOCTL_APION    0x0C    /* issue API_ON  */
47
 
 
48
 
#define PCBIT_GETSTAT  (PCBIT_IOCTL_GETSTAT  + IIOCDRVCTL)
49
 
#define PCBIT_LWMODE   (PCBIT_IOCTL_LWMODE   + IIOCDRVCTL)
50
 
#define PCBIT_STRLOAD  (PCBIT_IOCTL_STRLOAD  + IIOCDRVCTL)
51
 
#define PCBIT_ENDLOAD  (PCBIT_IOCTL_ENDLOAD  + IIOCDRVCTL)
52
 
#define PCBIT_SETBYTE  (PCBIT_IOCTL_SETBYTE  + IIOCDRVCTL)
53
 
#define PCBIT_GETBYTE  (PCBIT_IOCTL_GETBYTE  + IIOCDRVCTL)
54
 
#define PCBIT_RUNNING  (PCBIT_IOCTL_RUNNING  + IIOCDRVCTL)
55
 
#define PCBIT_WATCH188 (PCBIT_IOCTL_WATCH188 + IIOCDRVCTL)
56
 
#define PCBIT_PING188  (PCBIT_IOCTL_PING188  + IIOCDRVCTL)
57
 
#define PCBIT_FWMODE   (PCBIT_IOCTL_FWMODE   + IIOCDRVCTL)
58
 
#define PCBIT_STOP     (PCBIT_IOCTL_STOP     + IIOCDRVCTL)
59
 
#define PCBIT_APION    (PCBIT_IOCTL_APION    + IIOCDRVCTL)
60
 
 
61
 
#define MAXSUPERLINE 3000
62
 
 
63
 
#define L2_DOWN     0
64
 
#define L2_LOADING  1
65
 
#define L2_LWMODE   2
66
 
#define L2_FWMODE   3
67
 
#define L2_STARTING 4
68
 
#define L2_RUNNING  5
69
 
#define L2_ERROR    6
70
 
 
71
 
#endif