home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 14 Text / 14-Text.zip / pcmcia.txt < prev    next >
Text File  |  1995-01-01  |  5KB  |  125 lines

  1. The following information comes from the on-line IBM Thinkpad 755CE and is being uploaded for Warp users who take advantage of the included PCMCIA utilities.  
  2.  
  3. This upload is courtesy of IBM and has been approved by the IBM representative on the Thinkpad forum.
  4.  
  5. John Smith
  6. 12/19/94
  7.  
  8.  
  9. _____________________________________________________
  10.  
  11.  
  12.  
  13.  When installing an operating system, install the PCMCIA device driver that is on PCMCIA 
  14.  Features Diskette to use the Auto Configurator. 
  15.  
  16.  The computer provides the Auto Configurator, a program for some PC Cards, so that you do 
  17.  not have to install the device driver supplied with the card to use it. 
  18.  
  19.  (See Installing for Windows.) 
  20.  
  21.  When the Auto Configurator is installed, the following line is added to the CONFIG.SYS file: 
  22.  
  23.   o For OS/2: 
  24.  
  25.     DEVICE=[DRIVE][PATH]AUTODRV2.SYS [DRIVE][PATH]AUTODRV2.INI
  26.     
  27.   o For DOS or Windows: 
  28.  
  29.     DEVICE=[DRIVE][PATH]AUTODRV.SYS [DRIVE][PATH]AUTODRV.INI
  30.     
  31.   
  32.   The basic structure of the data file for the Auto Configurator, AUTODRV2.INI for OS/2 or 
  33.   AUTODRV.INI for DOS or Windows, is as follows: 
  34.  
  35.   [Card name] 
  36.   CardID=card name 
  37.   Keyword1=data1,Keyword2=data2,... 
  38.   Keyword1=data1,Keyword2=data2,... 
  39.   Keyword1=data1,Keyword2=data2,... 
  40.   Keyword1=data1,Keyword2=data2,... 
  41.  
  42.   Subtopics: 
  43.  
  44.  
  45.  When a modem card is installed in the PC Card slot, the Auto Configurator assigns interrupt 
  46.  request levels and I/O window from the information in the following data file and tuple data 
  47.  of the modem card. 
  48.  
  49.  [MODEM]
  50.  CardID=MODEM,MD24X
  51.  Port1=3F8,IRQ=4
  52.  Port1=2F8,IRQ=3
  53.  Port1=3E8,IRQ=4     <----  Note correction, originally said IRQ=3
  54.  Port1=2E8,IRQ=3
  55.  
  56.  Starting from the first "Port1" line, the Auto Configurator tries to assign the resources from 
  57.  I/O window 3F8H and interrupt request level 4 for the modem.  If the Auto Configurator finds 
  58.  resources that are not occupied by the system, it assigns them to the modem.  Suppose I/O 
  59.  port address 3F8H is already occupied by the system serial port, Auto Configurator will not 
  60.  be able to assign the first "Port1" line ([Port1=3F8,IRQ=4]) to the modem.  It would then 
  61.  try to assign the next "Port1" line ([Port1=2F8,IRQ=3]) to the modem. 
  62.  
  63.  The CardID parameter is used to identify the modem card which does not contain enough 
  64.  tuple data.  If the Auto Configurator cannot recognize the modem card installed into the PC 
  65.  Card slot, you must add the modem card identification which is indicated in the level 1 
  66.  version/product information tuple.  The identification must be written using up to five 
  67.  uppercase ASCII characters.  If you want to display this character string, use the DOS PC 
  68.  Card Utility (EZPLAY.EXE), Windows PC Card Utility (EZPLAY.EXE), or OS/2 PC Card Utility 
  69.  (EZPLAY2.EXE).  The above example identifies the modem card as "MD24X."  Make sure that 
  70.  you include the character strings, following "MODEM." When you use OS/2, you can include 
  71.  up to five character strings, following "MODEM."  The Windows PC Card Utility allows you 
  72.  to automatically register the character string by selecting the Register button on the Card 
  73.  Information screen. 
  74.  
  75.  
  76.  When you do not need to use the Auto Configurator, add the following line after the "CardID" 
  77.  parameter. 
  78.  
  79.  Option=Ignore
  80.  
  81.  The Auto Configurator will not assign resources to the PC Card when this line is added. 
  82.  
  83.  
  84.  Notes: 
  85.  
  86.    1. The Auto Configurator for OS/2 supports modem and 
  87.       data/fax modem PC Cards. 
  88.    2. The Auto Configurator for DOS and Windows supports 
  89.       modem, data/fax modem, and 3270 emulation PC Cards. 
  90.   
  91.   The following is an example of the memory area specified 
  92.   by the Card Services memory area and 3270 data file. 
  93.  
  94.   o A Resource Map Utility statement 
  95.  
  96.     DEVICE=C:\EZPLAY\DICRMU01.SYS /MA=D000-D7FF
  97.     
  98.  
  99.   o Lines from the 3270 data file 
  100.  
  101.     [3270]
  102.     CardID=3270
  103.     Port1=2D0,IRQ=9,Memory1=CE00
  104.     Port1=6D0,IRQ=9,Memory1=D000
  105.     
  106.   
  107.   The keywords, "Memory1" is specified by the base address 
  108.   of the memory window given as a hexadecimal segment 
  109.   address.  Memory window 1 must be within the range of the 
  110.   memory area reserved for Card Services.  The Card Services 
  111.   memory area is specified using the Resource Map Utility. 
  112.  
  113.   In the above example, the memory area for Card Services is 
  114.   from D000H to D7FFH and the 3270 memory area is 
  115.   specified by "Memory1" of the data file.  The memory area 
  116.   (CE00H) for "Memory1" in the first "Port1" line is not 
  117.   within the area ("MA=" parameter) specified for the Card 
  118.   Services memory.  As a result, the Auto Configurator will 
  119.   not be able to assign the 3270.  It will attempt to assign 
  120.   the 3270 from details of the second "Port1" line. 
  121.  
  122.   Carefully check each application program you use so that the 
  123.   memory area is specified by the "MA=" parameter. 
  124.  
  125.