home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708B.ISO / DRIVER / DEC / DE450260 / PKTDRV / README.TXT < prev   
Text File  |  1996-12-13  |  4KB  |  129 lines

  1. a:\pktdrv\readme.txt                            27-SEP-1996
  2.  
  3. This README file is for the installation of Digital Equipment
  4. Corporation's EtherWORKS Turbo PCI 10 adapter using a Packet
  5. Driver.
  6.  
  7. Supported adapters:
  8.     DE450
  9.  
  10. Device driver: DE450.COM
  11.  
  12. This document contains the following sections:
  13.  
  14.     1. Invoking the Packet Driver
  15.     2. Command Line Parameters
  16.  
  17.  
  18. ******************************
  19. * INVOKING THE PACKET DRIVER *
  20. ******************************
  21.  
  22. The driver can be invoked using the following command:
  23.  
  24.   DE450.COM i:[0x]<Software Interrupt> [p:<PCI Adapter No>] 
  25.        [m:<Medium Mode>] 
  26.        [t:<Medium Type>]
  27.        [u:[[0x]<Unloaded Software Interrupt>]]
  28.  
  29.   Example:      de450 i:0x60 p:1 m:10H t:T
  30.         de450 u:0x60
  31.  
  32.   After this command is invoked the Packet Driver will search for 
  33.   the specified adapter and, if successful, load itself as a TSR.
  34.   A Packet Driver application can then be invoked.  
  35.  
  36.   If problems occur, please make sure: 
  37.     
  38.     o The Software Interrupt vector does not match one that is 
  39.       already loaded.
  40.  
  41.     o In systems that have user-configurable PCI parameters,
  42.       the PCI slot must be enabled and bus master DMA must be
  43.       enabled. Also, an acceptable IRQ number must be assigned.
  44.  
  45.     o Make certain the software interrupt vector is not in use
  46.       by another program.  The following should be avoided:
  47.  
  48.         * 0x67 can be used by EMS memory manager functions
  49.         * 0x70 - 0x77 can be used to access IRQs 8 - 15
  50.                 
  51.  
  52. ***************************
  53. * COMMAND LINE PARAMETERS *
  54. ***************************
  55.  
  56. Software Interrupt (required)
  57.   i:[0x]<Software Interrupt> is a necessary parameter to invoke 
  58.   this driver. <Software Interrupt> is a hex number from 60 to 80 
  59.   (inclusive).  Software interrupt vector 60, which is the usual 
  60.   choice, can be used. 
  61.   
  62.   Examples:     de450 i:60
  63.         de450 i:0x60
  64.  
  65.   *NOTE*: Be careful when choosing a software interrupt vector as 
  66.       not to use one that is in use by another program. The 
  67.       following should be avoided:
  68.  
  69.         o 0x67 can be used by EMS Memory manager functions
  70.         o 0x70 - 0x77 can be used to access IRQ's 8 - 15
  71.  
  72. PCI Adapter Number (optional)
  73.   p:<PCI Adapter No> can be any one of 0-4 (inclusive).  It is used 
  74.   to choose the adapter that you want to run this driver on if 
  75.   there are two or more supported adapters on your system at the 
  76.   same time. 
  77.   
  78.   If this parameter is not included on the command line, the driver
  79.   will auto-scan the PCI slots to search for a supported adapter,
  80.   and will use the first supported adapter found.
  81.  
  82.   If this parameter is set to zero, will auto-scan exactly as if 
  83.   the parameter were not present.
  84.  
  85.   Examples:     de450 i:60 p:0
  86.         de450 i:60 p:2
  87.  
  88. Medium Mode (optional)
  89.   m:<Medium Mode> can have the value 10H or 10F.
  90.   
  91.   10H   10Mbps half-duplex
  92.   10F   10Mbps full-duplex
  93.  
  94.   If this parameter is not assigned, the driver will auto-detect 
  95.   the network medium which this adapter is attaching to and match 
  96.   it.
  97.  
  98.   If this parameter is specified, the medium type will be assumed 
  99.   to be Twisted Pair unless the <Medium Type> parameter is 
  100.   specified.
  101.  
  102.   Example:      de450 i:60 m:10H
  103.  
  104. Medium Type (optional)
  105.   t:<Medium Type> can be any one of T, A, and B. 
  106.   
  107.   T     Twisted-Pair
  108.   A     AUI
  109.   B     BNC
  110.   
  111.   If this parameter is not assigned, the driver will auto-sense 
  112.   this adapter to decide a proper medium type to connect to the
  113.   network.  
  114.  
  115.   Examples:     de450 i:60 t:T
  116.         de450 i:60 t:B
  117.  
  118. Unloaded Software Interrupt (optional)
  119.   u:<Unloaded Software Interrupt> can be a hexadecimal number from 
  120.   60 to 80 (inclusive).  It should be the software interrupt number
  121.   of the driver you want to unload.  If a number is not specified,
  122.   the first Packet Driver found from interrupt 0x60 to 0x80 will be
  123.   unloaded.
  124.  
  125.   Examples:     de450 u:
  126.         de450 u:0x60
  127.         de450 u:60
  128.  
  129.