README.act2000 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. $Id: README.act2000,v 1.3 2000/08/06 09:22:51 armin Exp $
  2. This document describes the ACT2000 driver for the
  3. IBM Active 2000 ISDN card.
  4. There are 3 Types of this card available. A ISA-, MCA-, and PCMCIA-Bus
  5. Version. Currently, only the ISA-Bus version of the card is supported.
  6. However MCA and PCMCIA will follow soon.
  7. The ISA-Bus Version uses 8 IO-ports. The base port address has to be set
  8. manually using the DIP switches.
  9. Setting up the DIP switches for the IBM Active 2000 ISDN card:
  10. Note: S5 and S6 always set off!
  11. S1 S2 S3 S4 Base-port
  12. on on on on 0x0200 (Factory default)
  13. off on on on 0x0240
  14. on off on on 0x0280
  15. off off on on 0x02c0
  16. on on off on 0x0300
  17. off on off on 0x0340
  18. on off off on 0x0380
  19. on on on off 0xcfe0
  20. off on on off 0xcfa0
  21. on off on off 0xcf60
  22. off off on off 0xcf20
  23. on on off off 0xcee0
  24. off on off off 0xcea0
  25. on off off off 0xce60
  26. off off off off Card disabled
  27. IRQ is configured by software. Possible values are:
  28. 3, 5, 7, 10, 11, 12, 15 and none (polled mode)
  29. The ACT2000 driver may either be built into the kernel or as a module.
  30. Initialization depends on how the driver is built:
  31. Driver built into the kernel:
  32. The ACT2000 driver can be configured using the commandline-feature while
  33. loading the kernel with LILO or LOADLIN. It accepts the following syntax:
  34. act2000=b,p,i[,idstring]
  35. where
  36. b = Bus-Type (1=ISA, 2=MCA, 3=PCMCIA)
  37. p = portbase (-1 means autoprobe)
  38. i = Interrupt (-1 means use next free IRQ, 0 means polled mode)
  39. The idstring is an arbitrary string used for referencing the card
  40. by the actctrl tool later.
  41. Defaults used, when no parameters given at all:
  42. 1,-1,-1,""
  43. which means: Autoprobe for an ISA card, use next free IRQ, let the
  44. ISDN linklevel fill the IdString (usually "line0" for the first card).
  45. If you like to use more than one card, you can use the program
  46. "actctrl" from the utility-package to configure additional cards.
  47. Using the "actctrl"-utility, portbase and irq can also be changed
  48. during runtime. The D-channel protocol is configured by the "dproto"
  49. option of the "actctrl"-utility after loading the firmware into the
  50. card's memory using the "actctrl"-utility.
  51. Driver built as module:
  52. The module act2000.o can be configured during modprobe (insmod) by
  53. appending its parameters to the modprobe resp. insmod commandline.
  54. The following syntax is accepted:
  55. act_bus=b act_port=p act_irq=i act_id=idstring
  56. where b, p, i and idstring have the same meanings as the parameters
  57. described for the builtin version above.
  58. Using the "actctrl"-utility, the same features apply to the modularized
  59. version as to the kernel-builtin one. (i.e. loading of firmware and
  60. configuring the D-channel protocol)
  61. Loading the firmware into the card:
  62. The firmware is supplied together with the isdn4k-utils package. It
  63. can be found in the subdirectory act2000/firmware/
  64. Assuming you have installed the utility-package correctly, the firmware
  65. will be downloaded into the card using the following command:
  66. actctrl -d idstring load /etc/isdn/bip11.btl
  67. where idstring is the Name of the card, given during insmod-time or
  68. (for kernel-builtin driver) on the kernel commandline. If only one
  69. ISDN card is used, the -d isdstrin may be omitted.
  70. For further documentation (adding more IBM Active 2000 cards), refer to
  71. the manpage actctrl.8 which is included in the isdn4k-utils package.