ibmmca.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:96k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  Low Level Linux Driver for the IBM Microchannel SCSI Subsystem for
  3.  Linux Kernel >= 2.4.0.
  4.  Copyright (c) 1995 Strom Systems, Inc. under the terms of the GNU
  5.  General Public License. Written by Martin Kolinek, December 1995.
  6.  Further development by: Chris Beauregard, Klaus Kudielka, Michael Lang
  7.  See the file README.ibmmca for a detailed description of this driver,
  8.  the commandline arguments and the history of its development.
  9.  See the WWW-page: http://www.uni-mainz.de/~langm000/linux.html for latest
  10.  updates, info and ADF-files for adapters supported by this driver.
  11. */
  12. #ifndef LINUX_VERSION_CODE
  13. #include <linux/version.h>
  14. #endif
  15. #if LINUX_VERSION_CODE < KERNEL_VERSION(2,4,0)
  16. #error "This driver works only with kernel 2.4.0 or higher!"
  17. #endif
  18. #include <linux/module.h>
  19. #include <linux/kernel.h>
  20. #include <linux/types.h>
  21. #include <linux/ctype.h>
  22. #include <linux/string.h>
  23. #include <linux/ioport.h>
  24. #include <linux/delay.h>
  25. #include <linux/sched.h>
  26. #include <linux/blk.h>
  27. #include <linux/proc_fs.h>
  28. #include <linux/stat.h>
  29. #include <linux/mca.h>
  30. #include <asm/system.h>
  31. #include <linux/spinlock.h>
  32. #include <asm/io.h>
  33. #include <linux/init.h>
  34. #include "sd.h"
  35. #include "scsi.h"
  36. #include "hosts.h"
  37. #include "ibmmca.h"
  38. #include <linux/config.h>
  39. /* current version of this driver-source: */
  40. #define IBMMCA_SCSI_DRIVER_VERSION "4.0b"
  41. #define IBMLOCK spin_lock_irqsave(&io_request_lock, flags);
  42. #define IBMUNLOCK spin_unlock_irqrestore(&io_request_lock, flags);
  43. /* driver configuration */
  44. #define IM_MAX_HOSTS     8 /* maximum number of host adapters */
  45. #define IM_RESET_DELAY 60 /* seconds allowed for a reset */
  46. /* driver debugging - #undef all for normal operation */
  47. /* if defined: count interrupts and ignore this special one: */
  48. #undef IM_DEBUG_TIMEOUT //50            
  49. #define TIMEOUT_PUN 0
  50. #define TIMEOUT_LUN 0
  51. /* verbose interrupt: */
  52. #undef IM_DEBUG_INT                   
  53. /* verbose queuecommand: */
  54. #undef IM_DEBUG_CMD    
  55. /* verbose queucommand for specific SCSI-device type: */
  56. #undef IM_DEBUG_CMD_SPEC_DEV
  57. /* verbose device probing */
  58. #undef IM_DEBUG_PROBE
  59. /* device type that shall be displayed on syslog (only during debugging): */
  60. #define IM_DEBUG_CMD_DEVICE TYPE_TAPE
  61. /* relative addresses of hardware registers on a subsystem */
  62. #define IM_CMD_REG(hi) (hosts[(hi)]->io_port)   /*Command Interface, (4 bytes long) */
  63. #define IM_ATTN_REG(hi) (hosts[(hi)]->io_port+4) /*Attention (1 byte) */
  64. #define IM_CTR_REG(hi) (hosts[(hi)]->io_port+5) /*Basic Control (1 byte) */
  65. #define IM_INTR_REG(hi) (hosts[(hi)]->io_port+6) /*Interrupt Status (1 byte, r/o) */
  66. #define IM_STAT_REG(hi) (hosts[(hi)]->io_port+7) /*Basic Status (1 byte, read only) */
  67. /* basic I/O-port of first adapter */
  68. #define IM_IO_PORT 0x3540
  69. /* maximum number of hosts that can be found */
  70. #define IM_N_IO_PORT 8
  71. /*requests going into the upper nibble of the Attention register */
  72. /*note: the lower nibble specifies the device(0-14), or subsystem(15) */
  73. #define IM_IMM_CMD 0x10 /*immediate command */
  74. #define IM_SCB 0x30 /*Subsystem Control Block command */
  75. #define IM_LONG_SCB 0x40 /*long Subsystem Control Block command */
  76. #define IM_EOI 0xe0 /*end-of-interrupt request */
  77. /*values for bits 7,1,0 of Basic Control reg. (bits 6-2 reserved) */
  78. #define IM_HW_RESET 0x80 /*hardware reset */
  79. #define IM_ENABLE_DMA 0x02 /*enable subsystem's busmaster DMA */
  80. #define IM_ENABLE_INTR 0x01 /*enable interrupts to the system */
  81. /*to interpret the upper nibble of Interrupt Status register */
  82. /*note: the lower nibble specifies the device(0-14), or subsystem(15) */
  83. #define IM_SCB_CMD_COMPLETED 0x10
  84. #define IM_SCB_CMD_COMPLETED_WITH_RETRIES 0x50
  85. #define IM_LOOP_SCATTER_BUFFER_FULL 0x60
  86. #define IM_ADAPTER_HW_FAILURE 0x70
  87. #define IM_IMMEDIATE_CMD_COMPLETED 0xa0
  88. #define IM_CMD_COMPLETED_WITH_FAILURE 0xc0
  89. #define IM_CMD_ERROR 0xe0
  90. #define IM_SOFTWARE_SEQUENCING_ERROR 0xf0
  91. /*to interpret bits 3-0 of Basic Status register (bits 7-4 reserved) */
  92. #define IM_CMD_REG_FULL 0x08
  93. #define IM_CMD_REG_EMPTY 0x04
  94. #define IM_INTR_REQUEST 0x02
  95. #define IM_BUSY 0x01
  96. /*immediate commands (word written into low 2 bytes of command reg) */
  97. #define IM_RESET_IMM_CMD 0x0400
  98. #define IM_FEATURE_CTR_IMM_CMD 0x040c
  99. #define IM_DMA_PACING_IMM_CMD 0x040d
  100. #define IM_ASSIGN_IMM_CMD 0x040e
  101. #define IM_ABORT_IMM_CMD 0x040f
  102. #define IM_FORMAT_PREP_IMM_CMD 0x0417
  103. /*SCB (Subsystem Control Block) structure */
  104. struct im_scb {
  105.    unsigned short command; /*command word (read, etc.) */
  106.    unsigned short enable; /*enable word, modifies cmd */
  107.    union {
  108.       unsigned long log_blk_adr; /*block address on SCSI device */
  109.       unsigned char scsi_cmd_length; /*6,10,12, for other scsi cmd */
  110.    } u1;
  111.    unsigned long sys_buf_adr; /*physical system memory adr */
  112.    unsigned long sys_buf_length; /*size of sys mem buffer */
  113.    unsigned long tsb_adr; /*Termination Status Block adr */
  114.    unsigned long scb_chain_adr; /*optional SCB chain address */
  115.    union {
  116.       struct {
  117.  unsigned short count; /*block count, on SCSI device */
  118.  unsigned short length; /*block length, on SCSI device */
  119.       } blk;
  120.       unsigned char scsi_command[12]; /*other scsi command */
  121.    } u2;
  122. };
  123. /*structure scatter-gather element (for list of system memory areas) */
  124. struct im_sge {
  125.    void *address;
  126.    unsigned long byte_length;
  127. };
  128. /*structure returned by a get_pos_info command: */
  129. struct im_pos_info {
  130.    unsigned short pos_id;         /* adapter id */
  131.    unsigned char pos_3a;          /* pos 3 (if pos 6 = 0) */
  132.    unsigned char pos_2;           /* pos 2 */
  133.    unsigned char int_level;       /* interrupt level IRQ 11 or 14 */
  134.    unsigned char pos_4a;          /* pos 4 (if pos 6 = 0) */
  135.    unsigned short connector_size; /* MCA connector size: 16 or 32 Bit */
  136.    unsigned char num_luns;        /* number of supported luns per device */
  137.    unsigned char num_puns;        /* number of supported puns */
  138.    unsigned char pacing_factor;   /* pacing factor */
  139.    unsigned char num_ldns;        /* number of ldns available */
  140.    unsigned char eoi_off;         /* time EOI and interrupt inactive */
  141.    unsigned char max_busy;        /* time between reset and busy on */
  142.    unsigned short cache_stat;     /* ldn cachestat. Bit=1 = not cached */
  143.    unsigned short retry_stat;     /* retry status of ldns. Bit=1=disabled */
  144.    unsigned char pos_4b;          /* pos 4 (if pos 6 = 1) */
  145.    unsigned char pos_3b;          /* pos 3 (if pos 6 = 1) */
  146.    unsigned char pos_6;           /* pos 6 */
  147.    unsigned char pos_5;           /* pos 5 */ 
  148.    unsigned short max_overlap;    /* maximum overlapping requests */
  149.    unsigned short num_bus;        /* number of SCSI-busses */
  150. };
  151. /*values for SCB command word */
  152. #define IM_NO_SYNCHRONOUS      0x0040 /*flag for any command */
  153. #define IM_NO_DISCONNECT       0x0080 /*flag for any command */
  154. #define IM_READ_DATA_CMD       0x1c01
  155. #define IM_WRITE_DATA_CMD      0x1c02
  156. #define IM_READ_VERIFY_CMD     0x1c03
  157. #define IM_WRITE_VERIFY_CMD    0x1c04
  158. #define IM_REQUEST_SENSE_CMD   0x1c08
  159. #define IM_READ_CAPACITY_CMD   0x1c09
  160. #define IM_DEVICE_INQUIRY_CMD  0x1c0b
  161. #define IM_READ_LOGICAL_CMD    0x1c2a
  162. #define IM_OTHER_SCSI_CMD_CMD  0x241f
  163. /* unused, but supported, SCB commands */
  164. #define IM_GET_COMMAND_COMPLETE_STATUS_CMD   0x1c07 /* command status */
  165. #define IM_GET_POS_INFO_CMD                  0x1c0a /* returns neat stuff */
  166. #define IM_READ_PREFETCH_CMD                 0x1c31 /* caching controller only */
  167. #define IM_FOMAT_UNIT_CMD                    0x1c16 /* format unit */
  168. #define IM_REASSIGN_BLOCK_CMD                0x1c18 /* in case of error */
  169. /*values to set bits in the enable word of SCB */
  170. #define IM_READ_CONTROL              0x8000
  171. #define IM_REPORT_TSB_ONLY_ON_ERROR  0x4000
  172. #define IM_RETRY_ENABLE              0x2000
  173. #define IM_POINTER_TO_LIST           0x1000
  174. #define IM_SUPRESS_EXCEPTION_SHORT   0x0400
  175. #define IM_BYPASS_BUFFER             0x0200
  176. #define IM_CHAIN_ON_NO_ERROR         0x0001
  177. /*TSB (Termination Status Block) structure */
  178. struct im_tsb {
  179.    unsigned short end_status;
  180.    unsigned short reserved1;
  181.    unsigned long residual_byte_count;
  182.    unsigned long sg_list_element_adr;
  183.    unsigned short status_length;
  184.    unsigned char dev_status;
  185.    unsigned char cmd_status;
  186.    unsigned char dev_error;
  187.    unsigned char cmd_error;
  188.    unsigned short reserved2;
  189.    unsigned short reserved3;
  190.    unsigned short low_of_last_scb_adr;
  191.    unsigned short high_of_last_scb_adr;
  192. };
  193. /*subsystem uses interrupt request level 14 */
  194. #define IM_IRQ     14
  195. /*SCSI-2 F/W may evade to interrupt 11 */
  196. #define IM_IRQ_FW  11
  197. /* Model 95 has an additional alphanumeric display, which can be used
  198.    to display SCSI-activities. 8595 models do not have any disk led, which
  199.    makes this feature quite useful.
  200.    The regular PS/2 disk led is turned on/off by bits 6,7 of system
  201.    control port. */
  202. /* LED display-port (actually, last LED on display) */
  203. #define MOD95_LED_PORT    0x108
  204. /* system-control-register of PS/2s with diskindicator */
  205. #define PS2_SYS_CTR        0x92
  206. /* activity displaying methods */
  207. #define LED_DISP           1
  208. #define LED_ADISP          2
  209. #define LED_ACTIVITY       4
  210. /* failed intr */
  211. #define CMD_FAIL           255
  212. /* The SCSI-ID(!) of the accessed SCSI-device is shown on PS/2-95 machines' LED
  213.    displays. ldn is no longer displayed here, because the ldn mapping is now 
  214.    done dynamically and the ldn <-> pun,lun maps can be looked-up at boottime 
  215.    or during uptime in /proc/scsi/ibmmca/<host_no> in case of trouble, 
  216.    interest, debugging or just for having fun. The left number gives the
  217.    host-adapter number and the right shows the accessed SCSI-ID. */
  218. /* display_mode is set by the ibmmcascsi= command line arg */
  219. static int display_mode = 0;
  220. /* set default adapter timeout */
  221. static unsigned int adapter_timeout = 45;
  222. /* for probing on feature-command: */
  223. static unsigned int global_command_error_excuse = 0;
  224. /* global setting by command line for adapter_speed */
  225. static int global_adapter_speed = 0; /* full speed by default */
  226. /* Panel / LED on, do it right for F/W addressin, too. adisplay will
  227.  * just ignore ids>7, as the panel has only 7 digits available */
  228. #define PS2_DISK_LED_ON(ad,id) { if (display_mode & LED_DISP) { if (id>9) 
  229.     outw((ad+48)|((id+55)<<8), MOD95_LED_PORT ); else 
  230.     outw((ad+48)|((id+48)<<8), MOD95_LED_PORT ); } else 
  231.     if (display_mode & LED_ADISP) { if (id<7) outb((char)(id+48),MOD95_LED_PORT+1+id); 
  232.     outb((char)(ad+48), MOD95_LED_PORT); } 
  233.     if ((display_mode & LED_ACTIVITY)||(!display_mode)) 
  234.     outb(inb(PS2_SYS_CTR) | 0xc0, PS2_SYS_CTR); }
  235. /* Panel / LED off */
  236. /* bug fixed, Dec 15, 1997, where | was replaced by & here */
  237. #define PS2_DISK_LED_OFF() { if (display_mode & LED_DISP) 
  238.     outw(0x2020, MOD95_LED_PORT ); else if (display_mode & LED_ADISP) { 
  239.     outl(0x20202020,MOD95_LED_PORT); outl(0x20202020,MOD95_LED_PORT+4); } 
  240.     if ((display_mode & LED_ACTIVITY)||(!display_mode)) 
  241.     outb(inb(PS2_SYS_CTR) & 0x3f, PS2_SYS_CTR); }
  242. /*list of supported subsystems */
  243. struct subsys_list_struct {
  244.    unsigned short mca_id;
  245.    char *description;
  246. };
  247. /* types of different supported hardware that goes to hostdata special */
  248. #define IBM_SCSI2_FW     0
  249. #define IBM_7568_WCACHE  1
  250. #define IBM_EXP_UNIT     2
  251. #define IBM_SCSI_WCACHE  3
  252. #define IBM_SCSI         4
  253. /* other special flags for hostdata structure */
  254. #define FORCED_DETECTION         100
  255. #define INTEGRATED_SCSI          101
  256. /* List of possible IBM-SCSI-adapters */
  257. struct subsys_list_struct subsys_list[] = {
  258.  {0x8efc,"IBM SCSI-2 F/W Adapter"}, /* special = 0 */
  259.  {0x8efd,"IBM 7568 Industrial Computer SCSI Adapter w/Cache"}, /* special = 1 */
  260.  {0x8ef8,"IBM Expansion Unit SCSI Controller"},/* special = 2 */
  261.  {0x8eff,"IBM SCSI Adapter w/Cache"}, /* special = 3 */
  262.  {0x8efe,"IBM SCSI Adapter"}, /* special = 4 */
  263. };
  264. /* Max number of logical devices (can be up from 0 to 14).  15 is the address
  265. of the adapter itself. */
  266. #define MAX_LOG_DEV  15
  267. /*local data for a logical device */
  268. struct logical_device {
  269.    struct im_scb scb; /* SCSI-subsystem-control-block structure */
  270.    struct im_tsb tsb; /* SCSI command complete status block structure */
  271.    struct im_sge sge[16]; /* scatter gather list structure */
  272.    unsigned char buf[256]; /* SCSI command return data buffer */
  273.    Scsi_Cmnd *cmd;  /* SCSI-command that is currently in progress */
  274.    int device_type; /* type of the SCSI-device. See include/scsi/scsi.h
  275.        for interpretation of the possible values */
  276.    int block_length; /* blocksize of a particular logical SCSI-device */
  277.    int cache_flag; /* 1 if this is uncached, 0 if cache is present for ldn */
  278.    int retry_flag; /* 1 if adapter retry is disabled, 0 if enabled */
  279. };
  280. /* statistics of the driver during operations (for proc_info) */
  281. struct Driver_Statistics {
  282.    /* SCSI statistics on the adapter */
  283.    int ldn_access[MAX_LOG_DEV+1];         /* total accesses on a ldn */
  284.    int ldn_read_access[MAX_LOG_DEV+1];    /* total read-access on a ldn */
  285.    int ldn_write_access[MAX_LOG_DEV+1];   /* total write-access on a ldn */
  286.    int ldn_inquiry_access[MAX_LOG_DEV+1]; /* total inquiries on a ldn */
  287.    int ldn_modeselect_access[MAX_LOG_DEV+1]; /* total mode selects on ldn */
  288.    int scbs;                              /* short SCBs queued */
  289.    int long_scbs;                         /* long SCBs queued */
  290.    int total_accesses;                    /* total accesses on all ldns */
  291.    int total_interrupts;                  /* total interrupts (should be
  292.      same as total_accesses) */
  293.    int total_errors;                      /* command completed with error */
  294.    /* dynamical assignment statistics */
  295.    int total_scsi_devices;                /* number of physical pun,lun */
  296.    int dyn_flag;                          /* flag showing dynamical mode */
  297.    int dynamical_assignments;             /* number of remappings of ldns */
  298.    int ldn_assignments[MAX_LOG_DEV+1];    /* number of remappings of each
  299.      ldn */
  300. };
  301. /* data structure for each host adapter */
  302. struct ibmmca_hostdata {
  303.    /* array of logical devices: */
  304.    struct logical_device _ld[MAX_LOG_DEV+1];   
  305.    /* array to convert (pun, lun) into logical device number: */
  306.    unsigned char _get_ldn[16][8];
  307.    /*array that contains the information about the physical SCSI-devices
  308.     attached to this host adapter: */
  309.    unsigned char _get_scsi[16][8];
  310.    /* used only when checking logical devices: */
  311.    int _local_checking_phase_flag;
  312.    /* report received interrupt: */
  313.    int _got_interrupt;
  314.    /* report termination-status of SCSI-command: */
  315.    int _stat_result;
  316.    /* reset status (used only when doing reset): */
  317.    int _reset_status;
  318.    /* code of the last SCSI command (needed for panic info): */
  319.    int _last_scsi_command[MAX_LOG_DEV+1];
  320.    /* identifier of the last SCSI-command type */
  321.    int _last_scsi_type[MAX_LOG_DEV+1];
  322.    /* last blockcount */
  323.    int _last_scsi_blockcount[MAX_LOG_DEV+1];
  324.    /* last locgical block address */
  325.    unsigned long _last_scsi_logical_block[MAX_LOG_DEV+1];
  326.    /* Counter that points on the next reassignable ldn for dynamical
  327.       remapping. The default value is 7, that is the first reassignable
  328.       number in the list at boottime: */
  329.    int _next_ldn;
  330.    /* Statistics-structure for this IBM-SCSI-host: */
  331.    struct Driver_Statistics _IBM_DS;
  332.    /* This hostadapters pos-registers pos2 until pos6 */
  333.    unsigned int _pos[8];
  334.    /* assign a special variable, that contains dedicated info about the
  335.     adaptertype */
  336.    int _special;
  337.    /* connector size on the MCA bus */
  338.    int _connector_size;
  339.    /* synchronous SCSI transfer rate bitpattern */
  340.    int _adapter_speed;
  341. };
  342. /* macros to access host data structure */
  343. #define subsystem_pun(hi) (hosts[(hi)]->this_id)
  344. #define subsystem_maxid(hi) (hosts[(hi)]->max_id)
  345. #define ld(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_ld)
  346. #define get_ldn(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_get_ldn)
  347. #define get_scsi(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_get_scsi)
  348. #define local_checking_phase_flag(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_local_checking_phase_flag)
  349. #define got_interrupt(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_got_interrupt)
  350. #define stat_result(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_stat_result)
  351. #define reset_status(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_reset_status)
  352. #define last_scsi_command(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_last_scsi_command)
  353. #define last_scsi_type(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_last_scsi_type)
  354. #define last_scsi_blockcount(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_last_scsi_blockcount)
  355. #define last_scsi_logical_block(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_last_scsi_logical_block)
  356. #define last_scsi_type(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_last_scsi_type)
  357. #define next_ldn(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_next_ldn)
  358. #define IBM_DS(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_IBM_DS)
  359. #define special(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_special)
  360. #define subsystem_connector_size(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_connector_size)
  361. #define adapter_speed(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_adapter_speed)
  362. #define pos2(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_pos[2])
  363. #define pos3(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_pos[3])
  364. #define pos4(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_pos[4])
  365. #define pos5(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_pos[5])
  366. #define pos6(hi) (((struct ibmmca_hostdata *) hosts[(hi)]->hostdata)->_pos[6])
  367. /* Define a arbitrary number as subsystem-marker-type. This number is, as
  368.    described in the ANSI-SCSI-standard, not occupied by other device-types. */
  369. #define TYPE_IBM_SCSI_ADAPTER   0x2F
  370. /* Define 0xFF for no device type, because this type is not defined within
  371.    the ANSI-SCSI-standard, therefore, it can be used and should not cause any
  372.    harm. */
  373. #define TYPE_NO_DEVICE          0xFF
  374. /* define medium-changer. If this is not defined previously, e.g. Linux
  375.    2.0.x, define this type here. */
  376. #ifndef TYPE_MEDIUM_CHANGER
  377. #define TYPE_MEDIUM_CHANGER     0x08
  378. #endif
  379. /* define possible operations for the immediate_assign command */
  380. #define SET_LDN        0
  381. #define REMOVE_LDN     1
  382. /* ldn which is used to probe the SCSI devices */
  383. #define PROBE_LDN      0
  384. /* reset status flag contents */
  385. #define IM_RESET_NOT_IN_PROGRESS         0
  386. #define IM_RESET_IN_PROGRESS             1
  387. #define IM_RESET_FINISHED_OK             2
  388. #define IM_RESET_FINISHED_FAIL           3
  389. #define IM_RESET_NOT_IN_PROGRESS_NO_INT  4
  390. #define IM_RESET_FINISHED_OK_NO_INT      5
  391. /* define undefined SCSI-command */
  392. #define NO_SCSI                  0xffff
  393. /*-----------------------------------------------------------------------*/
  394. /* if this is nonzero, ibmmcascsi option has been passed to the kernel */
  395. static int io_port[IM_MAX_HOSTS] = { 0, 0, 0, 0, 0, 0, 0, 0 };
  396. static int scsi_id[IM_MAX_HOSTS] = { 7, 7, 7, 7, 7, 7, 7, 7 };
  397. /* fill module-parameters only, when this define is present.
  398.    (that is kernel version 2.1.x) */
  399. #if defined(MODULE)
  400. static char *boot_options = NULL;
  401. MODULE_PARM(boot_options, "s");
  402. MODULE_PARM(io_port, "1-" __MODULE_STRING(IM_MAX_HOSTS) "i");
  403. MODULE_PARM(scsi_id, "1-" __MODULE_STRING(IM_MAX_HOSTS) "i");
  404. MODULE_PARM(display, "1i");
  405. MODULE_PARM(adisplay, "1i");
  406. MODULE_PARM(normal, "1i");
  407. MODULE_PARM(ansi, "1i");
  408. #endif
  409. /*counter of concurrent disk read/writes, to turn on/off disk led */
  410. static int disk_rw_in_progress = 0;
  411. /* host information */
  412. static int found = 0;
  413. static struct Scsi_Host *hosts[IM_MAX_HOSTS+1] = {
  414.    NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL };
  415. static unsigned int pos[8]; /* whole pos register-line for diagnosis */
  416. /* Taking into account the additions, made by ZP Gu.
  417.  * This selects now the preset value from the configfile and
  418.  * offers the 'normal' commandline option to be accepted */
  419. #ifdef CONFIG_IBMMCA_SCSI_ORDER_STANDARD
  420. static char ibm_ansi_order = 1;
  421. #else
  422. static char ibm_ansi_order = 0;
  423. #endif
  424. static void interrupt_handler (int, void *, struct pt_regs *);
  425. static void issue_cmd (int, unsigned long, unsigned char);
  426. static void internal_done (Scsi_Cmnd * cmd);
  427. static void check_devices (int, int);
  428. static int immediate_assign(int, unsigned int, unsigned int, unsigned int,
  429.                             unsigned int);
  430. static int immediate_feature(int, unsigned int, unsigned int);
  431. #ifdef CONFIG_IBMMCA_SCSI_DEV_RESET
  432. static int immediate_reset(int, unsigned int);
  433. #endif
  434. static int device_inquiry(int, int);
  435. static int read_capacity(int, int);
  436. static int get_pos_info(int);
  437. static char *ti_p(int);
  438. static char *ti_l(int);
  439. static char *ibmrate(unsigned int, int);
  440. static int probe_display(int);
  441. static int probe_bus_mode(int);
  442. static int device_exists (int, int, int *, int *);
  443. static struct Scsi_Host *ibmmca_register(Scsi_Host_Template *,
  444.  int, int, int, char *);
  445. static int option_setup(char *);
  446. /* local functions needed for proc_info */
  447. static int ldn_access_load(int, int);
  448. static int ldn_access_total_read_write(int);
  449. static void interrupt_handler (int irq, void *dev_id, struct pt_regs *regs)
  450. {
  451.    int host_index, ihost_index;
  452.    unsigned int intr_reg;
  453.    unsigned int cmd_result;
  454.    unsigned int ldn;
  455.    unsigned long flags;
  456.    Scsi_Cmnd *cmd;
  457.    int lastSCSI;
  458.    IBMLOCK
  459.    /* search for one adapter-response on shared interrupt */
  460.    for (host_index=0;
  461. hosts[host_index] && !(inb(IM_STAT_REG(host_index)) & IM_INTR_REQUEST);
  462. host_index++);
  463.    /* return if some other device on this IRQ caused the interrupt */
  464.    if (!hosts[host_index]) {
  465.       IBMUNLOCK
  466.       return;
  467.    }
  468.    /* the reset-function already did all the job, even ints got
  469.       renabled on the subsystem, so just return */
  470.    if ((reset_status(host_index) == IM_RESET_NOT_IN_PROGRESS_NO_INT)||
  471.        (reset_status(host_index) == IM_RESET_FINISHED_OK_NO_INT)) {
  472.       reset_status(host_index) = IM_RESET_NOT_IN_PROGRESS;
  473.       IBMUNLOCK
  474.       return;
  475.    }
  476.    /*must wait for attention reg not busy, then send EOI to subsystem */
  477.    while (1) {
  478.       if (!(inb (IM_STAT_REG(host_index)) & IM_BUSY)) break;
  479.       IBMUNLOCK /* cycle interrupt */
  480.       IBMLOCK
  481.    }
  482.    ihost_index=host_index;
  483.    /*get command result and logical device */
  484.    intr_reg = (unsigned char)(inb (IM_INTR_REG(ihost_index)));
  485.    cmd_result = intr_reg & 0xf0;
  486.    ldn = intr_reg & 0x0f;
  487.    /* get the last_scsi_command here */
  488.    lastSCSI = last_scsi_command(ihost_index)[ldn];
  489.    outb (IM_EOI | ldn, IM_ATTN_REG(ihost_index));
  490.    IBMUNLOCK
  491.    /*these should never happen (hw fails, or a local programming bug) */
  492.    if (!global_command_error_excuse) {
  493.       switch (cmd_result) {
  494.  /* Prevent from Ooopsing on error to show the real reason */
  495.        case IM_ADAPTER_HW_FAILURE:
  496.        case IM_SOFTWARE_SEQUENCING_ERROR:
  497.        case IM_CMD_ERROR:
  498.  printk("nIBM MCA SCSI: Fatal Subsystem ERROR!n");
  499.  printk("              Last cmd=0x%x, ena=%x, len=",lastSCSI,
  500. ld(ihost_index)[ldn].scb.enable);
  501.  if (ld(ihost_index)[ldn].cmd)
  502.    printk("%ld/%ld,",(long)(ld(ihost_index)[ldn].cmd->request_bufflen),
  503.   (long)(ld(ihost_index)[ldn].scb.sys_buf_length));
  504.  else
  505.    printk("none,");
  506.  if (ld(ihost_index)[ldn].cmd)
  507.    printk("Blocksize=%d",ld(ihost_index)[ldn].scb.u2.blk.length);
  508.  else
  509.    printk("Blocksize=none");
  510.  printk(", host=0x%x, ldn=0x%xn",ihost_index, ldn);
  511.  if (ld(ihost_index)[ldn].cmd) {
  512.     printk("Blockcount=%d/%dn",last_scsi_blockcount(ihost_index)[ldn],
  513.    ld(ihost_index)[ldn].scb.u2.blk.count);
  514.     printk("Logical block=%lx/%lxn",last_scsi_logical_block(ihost_index)[ldn],
  515.    ld(ihost_index)[ldn].scb.u1.log_blk_adr);
  516.  }
  517.  printk("Reason given: %sn",
  518. (cmd_result==IM_ADAPTER_HW_FAILURE) ? "HARDWARE FAILURE" :
  519. (cmd_result==IM_SOFTWARE_SEQUENCING_ERROR) ? "SOFTWARE SEQUENCING ERROR" :
  520. (cmd_result==IM_CMD_ERROR) ? "COMMAND ERROR" : "UNKNOWN");
  521.  /* if errors appear, enter this section to give detailed info */
  522.  printk("IBM MCA SCSI: Subsystem Error-Status follows:n");
  523.  printk("              Command Type................: %xn",
  524. last_scsi_type(ihost_index)[ldn]);
  525.  printk("              Attention Register..........: %xn",
  526. inb (IM_ATTN_REG(ihost_index)));
  527.  printk("              Basic Control Register......: %xn",
  528. inb (IM_CTR_REG(ihost_index)));
  529.  printk("              Interrupt Status Register...: %xn",
  530. intr_reg);
  531.  printk("              Basic Status Register.......: %xn",
  532. inb (IM_STAT_REG(ihost_index)));
  533.  if ((last_scsi_type(ihost_index)[ldn]==IM_SCB)||
  534.      (last_scsi_type(ihost_index)[ldn]==IM_LONG_SCB)) {
  535.     printk("              SCB-Command.................: %xn",
  536.    ld(ihost_index)[ldn].scb.command);
  537.     printk("              SCB-Enable..................: %xn",
  538.    ld(ihost_index)[ldn].scb.enable);
  539.     printk("              SCB-logical block address...: %lxn",
  540.    ld(ihost_index)[ldn].scb.u1.log_blk_adr);
  541.     printk("              SCB-system buffer address...: %lxn",
  542.    ld(ihost_index)[ldn].scb.sys_buf_adr);
  543.     printk("              SCB-system buffer length....: %lxn",
  544.    ld(ihost_index)[ldn].scb.sys_buf_length);
  545.     printk("              SCB-tsb address.............: %lxn",
  546.    ld(ihost_index)[ldn].scb.tsb_adr);
  547.     printk("              SCB-Chain address...........: %lxn",
  548.    ld(ihost_index)[ldn].scb.scb_chain_adr);
  549.     printk("              SCB-block count.............: %xn",
  550.    ld(ihost_index)[ldn].scb.u2.blk.count);
  551.     printk("              SCB-block length............: %xn",
  552.    ld(ihost_index)[ldn].scb.u2.blk.length);
  553.  }
  554.  printk("              Send this report to the maintainer.n");
  555.  panic("IBM MCA SCSI: Fatal errormessage from the subsystem (0x%X,0x%X)!n",
  556.        lastSCSI,cmd_result);
  557.  break;
  558.       }
  559.    } else {
  560.       /* The command error handling is made silent, but we tell the
  561.        * calling function, that there is a reported error from the
  562.        * adapter. */
  563.       switch (cmd_result) {
  564.        case IM_ADAPTER_HW_FAILURE: case IM_SOFTWARE_SEQUENCING_ERROR:
  565.        case IM_CMD_ERROR: global_command_error_excuse = CMD_FAIL; break;
  566.        default: global_command_error_excuse = 0; break;
  567.       }
  568.    }
  569.    /* if no panic appeared, increase the interrupt-counter */
  570.    IBM_DS(ihost_index).total_interrupts++;
  571.    /*only for local checking phase */
  572.    if (local_checking_phase_flag(ihost_index)) {
  573.       stat_result(ihost_index) = cmd_result;
  574.       got_interrupt(ihost_index) = 1;
  575.       reset_status(ihost_index) = IM_RESET_FINISHED_OK;
  576.       last_scsi_command(ihost_index)[ldn] = NO_SCSI;
  577.       return;
  578.    }
  579.    /* handling of commands coming from upper level of scsi driver */
  580.    if (last_scsi_type(ihost_index)[ldn] == IM_IMM_CMD) {
  581.       /* verify ldn, and may handle rare reset immediate command */
  582.       if ((reset_status(ihost_index) == IM_RESET_IN_PROGRESS)&&
  583.   (last_scsi_command(ihost_index)[ldn] == IM_RESET_IMM_CMD)) {
  584.  if (cmd_result == IM_CMD_COMPLETED_WITH_FAILURE) {
  585.     disk_rw_in_progress = 0;
  586.     PS2_DISK_LED_OFF ();
  587.     reset_status(ihost_index) = IM_RESET_FINISHED_FAIL;
  588.  } else {
  589.     /*reset disk led counter, turn off disk led */
  590.     disk_rw_in_progress = 0;
  591.     PS2_DISK_LED_OFF ();
  592.     reset_status(ihost_index) = IM_RESET_FINISHED_OK;
  593.  }
  594.  stat_result(ihost_index) = cmd_result;
  595.  last_scsi_command(ihost_index)[ldn] = NO_SCSI;
  596.  last_scsi_type(ihost_index)[ldn] = 0;
  597.  return;
  598.       } else if (last_scsi_command(ihost_index)[ldn] == IM_ABORT_IMM_CMD) {
  599.  /* react on SCSI abort command */
  600. #ifdef IM_DEBUG_PROBE
  601.  printk("IBM MCA SCSI: Interrupt from SCSI-abort.n");
  602. #endif
  603.  disk_rw_in_progress = 0;
  604.  PS2_DISK_LED_OFF();
  605.  cmd = ld(ihost_index)[ldn].cmd;
  606.  ld(ihost_index)[ldn].cmd = NULL;
  607.  if (cmd_result == IM_CMD_COMPLETED_WITH_FAILURE)
  608.    cmd->result = DID_NO_CONNECT << 16;
  609.  else
  610.    cmd->result = DID_ABORT << 16;
  611.  stat_result(ihost_index) = cmd_result;
  612.  last_scsi_command(ihost_index)[ldn] = NO_SCSI;
  613.  last_scsi_type(ihost_index)[ldn] = 0;
  614.  if (cmd->scsi_done)
  615.    (cmd->scsi_done)(cmd); /* should be the internal_done */
  616.  return;
  617.       } else {
  618.  disk_rw_in_progress = 0;
  619.  PS2_DISK_LED_OFF ();
  620.  reset_status(ihost_index) = IM_RESET_FINISHED_OK;
  621.  stat_result(ihost_index) = cmd_result;
  622.  last_scsi_command(ihost_index)[ldn] = NO_SCSI;
  623.  return;
  624.       }
  625.    }
  626.    last_scsi_command(ihost_index)[ldn] = NO_SCSI;
  627.    last_scsi_type(ihost_index)[ldn] = 0;
  628.    cmd = ld(ihost_index)[ldn].cmd;
  629.    ld(ihost_index)[ldn].cmd = NULL;
  630. #ifdef IM_DEBUG_TIMEOUT
  631.    if (cmd) {
  632.       if ((cmd->target == TIMEOUT_PUN)&&(cmd->lun == TIMEOUT_LUN)) {
  633.  printk("IBM MCA SCSI: Ignoring interrupt from pun=%x, lun=%x.n",
  634. cmd->target, cmd->lun);
  635.  return;
  636.       }
  637.    }
  638. #endif
  639.    /*if no command structure, just return, else clear cmd */
  640.    if (!cmd) return;
  641. #ifdef IM_DEBUG_INT
  642.    printk("cmd=%02x ireg=%02x ds=%02x cs=%02x de=%02x ce=%02xn",
  643.   cmd->cmnd[0], intr_reg,
  644.   ld(ihost_index)[ldn].tsb.dev_status,
  645.   ld(ihost_index)[ldn].tsb.cmd_status,
  646.   ld(ihost_index)[ldn].tsb.dev_error,
  647.   ld(ihost_index)[ldn].tsb.cmd_error);
  648. #endif
  649.    /*if this is end of media read/write, may turn off PS/2 disk led */
  650.    if ((ld(ihost_index)[ldn].device_type!=TYPE_NO_LUN)&&
  651.        (ld(ihost_index)[ldn].device_type!=TYPE_NO_DEVICE)) {
  652.       /* only access this, if there was a valid device addressed */
  653.       if (--disk_rw_in_progress == 0) PS2_DISK_LED_OFF ();
  654.    }
  655.    /* IBM describes the status-mask to be 0x1e, but this is not conform
  656.     * with SCSI-definition, I suppose, the reason for it is that IBM
  657.     * adapters do not support CMD_TERMINATED, TASK_SET_FULL and
  658.     * ACA_ACTIVE as returning statusbyte information. (ML) */
  659.    if (cmd_result == IM_CMD_COMPLETED_WITH_FAILURE) {
  660.       cmd->result = (unsigned char)(ld(ihost_index)[ldn].tsb.dev_status & 0x1e);
  661.       IBM_DS(ihost_index).total_errors++;
  662.    } else
  663.      cmd->result = 0;
  664.    /* write device status into cmd->result, and call done function */
  665.    if (lastSCSI == NO_SCSI) { /* unexpected interrupt :-( */
  666.       cmd->result |= DID_BAD_INTR << 16;
  667.       printk("IBM MCA SCSI: WARNING - Interrupt from non-pending SCSI-command!n");
  668.    } else /* things went right :-) */
  669.      cmd->result |= DID_OK << 16;
  670.    if (cmd->scsi_done) (cmd->scsi_done)(cmd);
  671.    return;
  672. }
  673. static void issue_cmd (int host_index, unsigned long cmd_reg,
  674.        unsigned char attn_reg)
  675. {
  676.    unsigned long flags;
  677.    /* must wait for attention reg not busy */
  678.    while (1) {
  679.       IBMLOCK
  680.       if (!(inb(IM_STAT_REG(host_index)) & IM_BUSY)) break;
  681.       IBMUNLOCK
  682.    }
  683.    /* write registers and enable system interrupts */
  684.    outl (cmd_reg, IM_CMD_REG(host_index));
  685.    outb (attn_reg, IM_ATTN_REG(host_index));
  686.    IBMUNLOCK
  687.    return;
  688. }
  689. static void internal_done (Scsi_Cmnd * cmd)
  690. {
  691.    cmd->SCp.Status++;
  692.    return;
  693. }
  694. /* SCSI-SCB-command for device_inquiry */
  695. static int device_inquiry(int host_index, int ldn)
  696. {
  697.    int retr;
  698.    struct im_scb *scb;
  699.    struct im_tsb *tsb;
  700.    unsigned char *buf;
  701.    scb = &(ld(host_index)[ldn].scb);
  702.    tsb = &(ld(host_index)[ldn].tsb);
  703.    buf = (unsigned char *)(&(ld(host_index)[ldn].buf));
  704.    ld(host_index)[ldn].tsb.dev_status = 0; /* prepare statusblock */
  705.    for (retr=0; retr<3; retr++) {
  706.       /* fill scb with inquiry command */
  707.       scb->command = IM_DEVICE_INQUIRY_CMD | IM_NO_DISCONNECT;
  708.       scb->enable = IM_REPORT_TSB_ONLY_ON_ERROR | IM_READ_CONTROL | IM_SUPRESS_EXCEPTION_SHORT | IM_RETRY_ENABLE | IM_BYPASS_BUFFER;
  709.       last_scsi_command(host_index)[ldn] = IM_DEVICE_INQUIRY_CMD;
  710.       last_scsi_type(host_index)[ldn] = IM_SCB;
  711.       scb->sys_buf_adr = virt_to_bus(buf);
  712.       scb->sys_buf_length = 255; /* maximum bufferlength gives max info */
  713.       scb->tsb_adr = virt_to_bus(tsb);
  714.       /* issue scb to passed ldn, and busy wait for interrupt */
  715.       got_interrupt(host_index) = 0;
  716.       issue_cmd (host_index, virt_to_bus(scb), IM_SCB | ldn);
  717.       while (!got_interrupt(host_index))
  718. barrier ();
  719.       /*if command succesful, break */
  720.       if ((stat_result(host_index) == IM_SCB_CMD_COMPLETED)||
  721.   (stat_result(host_index) == IM_SCB_CMD_COMPLETED_WITH_RETRIES))
  722. return 1;
  723.    }
  724.    /*if all three retries failed, return "no device at this ldn" */
  725.    if (retr >= 3)
  726.      return 0;
  727.    else
  728.      return 1;
  729. }
  730. static int read_capacity(int host_index, int ldn)
  731. {
  732.    int retr;
  733.    struct im_scb *scb;
  734.    struct im_tsb *tsb;
  735.    unsigned char *buf;
  736.    scb = &(ld(host_index)[ldn].scb);
  737.    tsb = &(ld(host_index)[ldn].tsb);
  738.    buf = (unsigned char *)(&(ld(host_index)[ldn].buf));
  739.    ld(host_index)[ldn].tsb.dev_status = 0;
  740.    for (retr=0; retr<3; retr++) {
  741.       /*fill scb with read capacity command */
  742.       scb->command = IM_READ_CAPACITY_CMD;
  743.       scb->enable = IM_REPORT_TSB_ONLY_ON_ERROR | IM_READ_CONTROL | IM_RETRY_ENABLE | IM_BYPASS_BUFFER;
  744.       last_scsi_command(host_index)[ldn] = IM_READ_CAPACITY_CMD;
  745.       last_scsi_type(host_index)[ldn] = IM_SCB;
  746.       scb->sys_buf_adr = virt_to_bus(buf);
  747.       scb->sys_buf_length = 8;
  748.       scb->tsb_adr = virt_to_bus(tsb);
  749.       /*issue scb to passed ldn, and busy wait for interrupt */
  750.       got_interrupt(host_index) = 0;
  751.       issue_cmd (host_index, virt_to_bus(scb), IM_SCB | ldn);
  752.       while (!got_interrupt(host_index))
  753. barrier ();
  754.       /*if got capacity, get block length and return one device found */
  755.       if ((stat_result(host_index) == IM_SCB_CMD_COMPLETED)||
  756.   (stat_result(host_index) == IM_SCB_CMD_COMPLETED_WITH_RETRIES))
  757. return 1;
  758.    }
  759.    /*if all three retries failed, return "no device at this ldn" */
  760.    if (retr >= 3)
  761.      return 0;
  762.    else
  763.      return 1;
  764. }
  765. static int get_pos_info(int host_index)
  766. {
  767.    int retr;
  768.    struct im_scb *scb;
  769.    struct im_tsb *tsb;
  770.    unsigned char *buf;
  771.    scb = &(ld(host_index)[MAX_LOG_DEV].scb);
  772.    tsb = &(ld(host_index)[MAX_LOG_DEV].tsb);
  773.    buf = (unsigned char *)(&(ld(host_index)[MAX_LOG_DEV].buf));
  774.    ld(host_index)[MAX_LOG_DEV].tsb.dev_status = 0;
  775.    for (retr=0; retr<3; retr++) {
  776.       /*fill scb with get_pos_info command */
  777.       scb->command = IM_GET_POS_INFO_CMD;
  778.       scb->enable = IM_READ_CONTROL | IM_REPORT_TSB_ONLY_ON_ERROR | IM_RETRY_ENABLE | IM_BYPASS_BUFFER;
  779.       last_scsi_command(host_index)[MAX_LOG_DEV] = IM_GET_POS_INFO_CMD;
  780.       last_scsi_type(host_index)[MAX_LOG_DEV] = IM_SCB;
  781.       scb->sys_buf_adr = virt_to_bus(buf);
  782.       if (special(host_index)==IBM_SCSI2_FW)
  783. scb->sys_buf_length = 256; /* get all info from F/W adapter */
  784.       else
  785. scb->sys_buf_length = 18; /* get exactly 18 bytes for other SCSI */
  786.       scb->tsb_adr = virt_to_bus(tsb);
  787.       /*issue scb to ldn=15, and busy wait for interrupt */
  788.       got_interrupt(host_index) = 0;
  789.       issue_cmd (host_index, virt_to_bus(scb), IM_SCB | MAX_LOG_DEV);
  790.       while (!got_interrupt(host_index))
  791. barrier ();
  792.       /*if got POS-stuff, get block length and return one device found */
  793.       if ((stat_result(host_index) == IM_SCB_CMD_COMPLETED)||
  794.   (stat_result(host_index) == IM_SCB_CMD_COMPLETED_WITH_RETRIES))
  795. return 1;
  796.    }
  797.    /* if all three retries failed, return "no device at this ldn" */
  798.    if (retr >= 3)
  799.      return 0;
  800.    else
  801.      return 1;
  802. }
  803. /* SCSI-immediate-command for assign. This functions maps/unmaps specific
  804.  ldn-numbers on SCSI (PUN,LUN). It is needed for presetting of the
  805.  subsystem and for dynamical remapping od ldns. */
  806. static int immediate_assign(int host_index, unsigned int pun,
  807.                             unsigned int lun, unsigned int ldn,
  808.                             unsigned int operation)
  809. {
  810.    int retr;
  811.    unsigned long imm_cmd;
  812.    for (retr=0; retr<3; retr++) {
  813.       /* select mutation level of the SCSI-adapter */
  814.       switch (special(host_index)) {
  815.        case IBM_SCSI2_FW:
  816.  imm_cmd = (unsigned long)(IM_ASSIGN_IMM_CMD);
  817.  imm_cmd |= (unsigned long)((lun & 7) << 24);
  818.  imm_cmd |= (unsigned long)((operation & 1) << 23);
  819.  imm_cmd |= (unsigned long)((pun & 7)<< 20)|((pun & 8)<< 24);
  820.  imm_cmd |= (unsigned long)((ldn & 15) << 16);
  821.  break;
  822.        default:
  823.  imm_cmd = inl(IM_CMD_REG(host_index));
  824.  imm_cmd &= (unsigned long)(0xF8000000); /* keep reserved bits */
  825.  imm_cmd |= (unsigned long)(IM_ASSIGN_IMM_CMD);
  826.  imm_cmd |= (unsigned long)((lun & 7) << 24);
  827.  imm_cmd |= (unsigned long)((operation & 1) << 23);
  828.  imm_cmd |= (unsigned long)((pun & 7) << 20);
  829.  imm_cmd |= (unsigned long)((ldn & 15) << 16);
  830.  break;
  831.       }
  832.       last_scsi_command(host_index)[MAX_LOG_DEV] = IM_ASSIGN_IMM_CMD;
  833.       last_scsi_type(host_index)[MAX_LOG_DEV] = IM_IMM_CMD;
  834.       got_interrupt(host_index) = 0;
  835.       issue_cmd (host_index, (unsigned long)(imm_cmd), IM_IMM_CMD | MAX_LOG_DEV);
  836.       while (!got_interrupt(host_index))
  837. barrier ();
  838.       /*if command succesful, break */
  839.       if (stat_result(host_index) == IM_IMMEDIATE_CMD_COMPLETED)
  840. return 1;
  841.    }
  842.    if (retr >= 3)
  843.      return 0;
  844.    else
  845.      return 1;
  846. }
  847. static int immediate_feature(int host_index, unsigned int speed,
  848.      unsigned int timeout)
  849. {
  850.    int retr;
  851.    unsigned long imm_cmd;
  852.    for (retr=0; retr<3; retr++) {
  853.       /* select mutation level of the SCSI-adapter */
  854.       imm_cmd  = IM_FEATURE_CTR_IMM_CMD;
  855.       imm_cmd |= (unsigned long)((speed & 0x7) << 29);
  856.       imm_cmd |= (unsigned long)((timeout & 0x1fff) << 16);
  857.       last_scsi_command(host_index)[MAX_LOG_DEV] = IM_FEATURE_CTR_IMM_CMD;
  858.       last_scsi_type(host_index)[MAX_LOG_DEV] = IM_IMM_CMD;
  859.       got_interrupt(host_index) = 0;
  860.       /* we need to run into command errors in order to probe for the
  861.        * right speed! */
  862.       global_command_error_excuse = 1;
  863.       issue_cmd (host_index, (unsigned long)(imm_cmd), IM_IMM_CMD | MAX_LOG_DEV);
  864.       while (!got_interrupt(host_index))
  865. barrier ();
  866.       if (global_command_error_excuse == CMD_FAIL) {
  867.  global_command_error_excuse = 0;
  868.  return 2;
  869.       } else
  870. global_command_error_excuse = 0;
  871.       /*if command succesful, break */
  872.       if (stat_result(host_index) == IM_IMMEDIATE_CMD_COMPLETED)
  873. return 1;
  874.    }
  875.    if (retr >= 3)
  876.      return 0;
  877.    else
  878.      return 1;
  879. }
  880. #ifdef CONFIG_IBMMCA_SCSI_DEV_RESET
  881. static int immediate_reset(int host_index, unsigned int ldn)
  882. {
  883.    int retries;
  884.    int ticks;
  885.    unsigned long imm_command;
  886.    for (retries=0; retries<3; retries ++) {
  887.       imm_command = inl(IM_CMD_REG(host_index));
  888.       imm_command &= (unsigned long)(0xFFFF0000); /* keep reserved bits */
  889.       imm_command |= (unsigned long)(IM_RESET_IMM_CMD);
  890.       last_scsi_command(host_index)[ldn] = IM_RESET_IMM_CMD;
  891.       last_scsi_type(host_index)[ldn] = IM_IMM_CMD;
  892.       got_interrupt(host_index) = 0;
  893.       reset_status(host_index) = IM_RESET_IN_PROGRESS;
  894.       issue_cmd (host_index, (unsigned long)(imm_command), IM_IMM_CMD | ldn);
  895.       ticks = IM_RESET_DELAY*HZ;
  896.       while (reset_status(host_index) == IM_RESET_IN_PROGRESS && --ticks) {
  897.  udelay((1+999/HZ)*1000);
  898.  barrier();
  899.       }
  900.       /* if reset did not complete, just complain */
  901.       if (!ticks) {
  902.  printk("IBM MCA SCSI: reset did not complete within %d seconds.n",
  903. IM_RESET_DELAY);
  904.  reset_status(host_index) = IM_RESET_FINISHED_OK;
  905.  /* did not work, finish */
  906.  return 1;
  907.       }
  908.       /*if command succesful, break */
  909.       if (stat_result(host_index) == IM_IMMEDIATE_CMD_COMPLETED)
  910. return 1;
  911.    }
  912.    if (retries >= 3)
  913.      return 0;
  914.    else
  915.      return 1;
  916. }
  917. #endif
  918. /* type-interpreter for physical device numbers */
  919. static char *ti_p(int dev)
  920. {
  921.    switch (dev) {
  922.     case TYPE_IBM_SCSI_ADAPTER: return("A");
  923.     case TYPE_DISK:             return("D");
  924.     case TYPE_TAPE:             return("T");
  925.     case TYPE_PROCESSOR:        return("P");
  926.     case TYPE_WORM:             return("W");
  927.     case TYPE_ROM:              return("R");
  928.     case TYPE_SCANNER:          return("S");
  929.     case TYPE_MOD:              return("M");
  930.     case TYPE_MEDIUM_CHANGER:   return("C");
  931.     case TYPE_NO_LUN:           return("+"); /* show NO_LUN */
  932.    }
  933.    return("-"); /* TYPE_NO_DEVICE and others */
  934. }
  935. /* interpreter for logical device numbers (ldn) */
  936. static char *ti_l(int val)
  937. {
  938.    const char hex[16] = "0123456789abcdef";
  939.    static char answer[2];
  940.    answer[1] = (char)(0x0);
  941.    if (val<=MAX_LOG_DEV) answer[0] = hex[val]; else answer[0] = '-';
  942.    return (char *)&answer;
  943. }
  944. /* transfers bitpattern of the feature command to values in MHz */
  945. static char *ibmrate(unsigned int speed, int i)
  946. {
  947.    switch (speed) {
  948.     case 0: return i ? "5.00" : "10.00";
  949.     case 1: return i ? "4.00" : "8.00";
  950.     case 2: return i ? "3.33" : "6.66";
  951.     case 3: return i ? "2.86" : "5.00";
  952.     case 4: return i ? "2.50" : "4.00";
  953.     case 5: return i ? "2.22" : "3.10";
  954.     case 6: return i ? "2.00" : "2.50";
  955.     case 7: return i ? "1.82" : "2.00";
  956.    }
  957.    return "---";
  958. }
  959. static int probe_display(int what)
  960. {
  961.    static int rotator = 0;
  962.    const char rotor[] = "|/-\";
  963.    if (!(display_mode & LED_DISP))
  964.      return 0;
  965.    if (!what) {
  966.       outl(0x20202020,MOD95_LED_PORT);
  967.       outl(0x20202020,MOD95_LED_PORT+4);
  968.    } else {
  969.       outb('S',MOD95_LED_PORT+7); outb('C',MOD95_LED_PORT+6);
  970.       outb('S',MOD95_LED_PORT+5); outb('I',MOD95_LED_PORT+4);
  971.       outb('i',MOD95_LED_PORT+3); outb('n',MOD95_LED_PORT+2);
  972.       outb('i',MOD95_LED_PORT+1); outb((char)(rotor[rotator]),MOD95_LED_PORT);
  973.       rotator++;
  974.       if (rotator>3) rotator=0;
  975.    }
  976.    return 0;
  977. }
  978. static int probe_bus_mode(int host_index)
  979. {
  980.    struct im_pos_info *info;
  981.    int num_bus = 0;
  982.    int ldn;
  983.    info = (struct im_pos_info *)(&(ld(host_index)[MAX_LOG_DEV].buf));
  984.    if (get_pos_info(host_index)) {
  985.       if (info->connector_size & 0xf000)
  986. subsystem_connector_size(host_index)=16;
  987.       else
  988. subsystem_connector_size(host_index)=32;
  989.       num_bus |= (info->pos_4b & 8) >> 3;
  990.       for (ldn=0; ldn<=MAX_LOG_DEV; ldn++) {
  991.  if ((special(host_index)==IBM_SCSI_WCACHE)||
  992.      (special(host_index)==IBM_7568_WCACHE)) {
  993.     if (!((info->cache_stat >> ldn) & 1))
  994.       ld(host_index)[ldn].cache_flag = 0;
  995.  }
  996.  if (!((info->retry_stat >> ldn) & 1))
  997.    ld(host_index)[ldn].retry_flag = 0;
  998.       }
  999. #ifdef IM_DEBUG_PROBE
  1000.       printk("IBM MCA SCSI: SCSI-Cache bits: ");
  1001.       for (ldn=0; ldn<=MAX_LOG_DEV; ldn++) {
  1002.  printk("%d",ld(host_index)[ldn].cache_flag);
  1003.       }
  1004.       printk("nIBM MCA SCSI: SCSI-Retry bits: ");
  1005.       for (ldn=0; ldn<=MAX_LOG_DEV; ldn++) {
  1006.  printk("%d",ld(host_index)[ldn].retry_flag);
  1007.       }
  1008.       printk("n");
  1009. #endif
  1010.    }
  1011.    return num_bus;
  1012. }
  1013. /* probing scsi devices */
  1014. static void check_devices (int host_index, int adaptertype)
  1015. {
  1016.    int id, lun, ldn, ticks;
  1017.    int count_devices; /* local counter for connected device */
  1018.    int max_pun;
  1019.    int num_bus;
  1020.    int speedrun; /* local adapter_speed check variable */
  1021.    /* assign default values to certain variables */
  1022.    ticks = 0;
  1023.    count_devices = 0;
  1024.    IBM_DS(host_index).dyn_flag = 0; /* normally no need for dynamical ldn management */
  1025.    IBM_DS(host_index).total_errors = 0; /* set errorcounter to 0 */
  1026.    next_ldn(host_index) = 7; /* next ldn to be assigned is 7, because 0-6 is 'hardwired'*/
  1027.    /* initialize the very important driver-informational arrays/structs */
  1028.    memset (ld(host_index), 0, sizeof(ld(host_index)));
  1029.    for (ldn=0; ldn<=MAX_LOG_DEV; ldn++) {
  1030.       last_scsi_command(host_index)[ldn] = NO_SCSI; /* emptify last SCSI-command storage */
  1031.       last_scsi_type(host_index)[ldn] = 0;
  1032.       ld(host_index)[ldn].cache_flag = 1;
  1033.       ld(host_index)[ldn].retry_flag = 1;
  1034.    }
  1035.    memset (get_ldn(host_index), TYPE_NO_DEVICE, sizeof(get_ldn(host_index))); /* this is essential ! */
  1036.    memset (get_scsi(host_index), TYPE_NO_DEVICE, sizeof(get_scsi(host_index))); /* this is essential ! */
  1037.    for (lun=0; lun<8; lun++) {
  1038.       /* mark the adapter at its pun on all luns*/
  1039.       get_scsi(host_index)[subsystem_pun(host_index)][lun] = TYPE_IBM_SCSI_ADAPTER;
  1040.       get_ldn(host_index)[subsystem_pun(host_index)][lun] = MAX_LOG_DEV; /* make sure, the subsystem
  1041.   ldn is active for all
  1042.   luns. */
  1043.    }
  1044.    probe_display(0); /* Supercool display usage during SCSI-probing. */
  1045.                      /* This makes sense, when booting without any */
  1046.                      /* monitor connected on model XX95. */
  1047.    /* STEP 1: */
  1048.    adapter_speed(host_index) = global_adapter_speed;
  1049.    speedrun = adapter_speed(host_index);
  1050.    while (immediate_feature(host_index,speedrun,adapter_timeout)==2) {
  1051.       probe_display(1);
  1052.       if (speedrun==7)
  1053. panic("IBM MCA SCSI: Cannot set Synchronous-Transfer-Rate!n");
  1054.       speedrun++;
  1055.       if (speedrun>7)
  1056. speedrun=7;
  1057.    }
  1058.    adapter_speed(host_index) = speedrun;
  1059.    /* Get detailed information about the current adapter, necessary for
  1060.     * device operations: */
  1061.    num_bus=probe_bus_mode(host_index);
  1062.    /* num_bus contains only valid data for the F/W adapter! */
  1063.    if (adaptertype==IBM_SCSI2_FW) { /* F/W SCSI adapter: */
  1064.       /* F/W adapter PUN-space extension evaluation: */
  1065.       if (num_bus) {
  1066.  printk("IBM MCA SCSI: Seperate bus mode (wide-addressing enabled)n");
  1067.  subsystem_maxid(host_index) = 16;
  1068.       } else {
  1069.  printk("IBM MCA SCSI: Combined bus mode (wide-addressing disabled)n");
  1070.  subsystem_maxid(host_index) = 8;
  1071.       }
  1072.       printk("IBM MCA SCSI: Sync.-Rate (F/W: 20, Int.: 10, Ext.: %s) MBytes/sn",
  1073.      ibmrate(speedrun,adaptertype));
  1074.    } else /* all other IBM SCSI adapters: */
  1075.      printk("IBM MCA SCSI: Synchronous-SCSI-Transfer-Rate: %s MBytes/sn",
  1076.     ibmrate(speedrun,adaptertype));
  1077.    /* assign correct PUN device space */
  1078.    max_pun = subsystem_maxid(host_index);
  1079. #ifdef IM_DEBUG_PROBE
  1080.    printk("IBM MCA SCSI: Current SCSI-host index: %dn",host_index);
  1081.    printk("IBM MCA SCSI: Removing default logical SCSI-device mapping.");
  1082. #else
  1083.    printk("IBM MCA SCSI: Dev. Order: %s, Mapping (takes <2min): ",
  1084.   (ibm_ansi_order) ? "ANSI" : "New");
  1085. #endif
  1086.    for (ldn=0; ldn<MAX_LOG_DEV; ldn++) {
  1087.       probe_display(1);
  1088. #ifdef IM_DEBUG_PROBE
  1089.       printk(".");
  1090. #endif
  1091.       immediate_assign(host_index,0,0,ldn,REMOVE_LDN); /* remove ldn (wherever)*/
  1092.    }
  1093.    lun = 0; /* default lun is 0 */
  1094. #ifndef IM_DEBUG_PROBE
  1095.    printk("cleared,");
  1096. #endif
  1097.    /* STEP 2: */
  1098. #ifdef IM_DEBUG_PROBE
  1099.    printk("nIBM MCA SCSI: Scanning SCSI-devices.");
  1100. #endif
  1101.    for (id=0; id<max_pun ; id++)
  1102. #ifdef CONFIG_SCSI_MULTI_LUN
  1103.      for (lun=0; lun<8; lun++)
  1104. #endif
  1105.      {
  1106. probe_display(1);
  1107. #ifdef IM_DEBUG_PROBE
  1108. printk(".");
  1109. #endif
  1110. if (id != subsystem_pun(host_index)) {
  1111.    /* if pun is not the adapter: */
  1112.    /* set ldn=0 to pun,lun*/
  1113.    immediate_assign(host_index,id,lun,PROBE_LDN,SET_LDN);
  1114.    if (device_inquiry(host_index, PROBE_LDN)) { /* probe device */
  1115.       get_scsi(host_index)[id][lun]=
  1116. (unsigned char)(ld(host_index)[PROBE_LDN].buf[0]);
  1117.       /* entry, even for NO_LUN */
  1118.       if (ld(host_index)[PROBE_LDN].buf[0] != TYPE_NO_LUN)
  1119. count_devices++; /* a existing device is found */
  1120.    }
  1121.    /* remove ldn */
  1122.    immediate_assign(host_index,id,lun,PROBE_LDN,REMOVE_LDN);
  1123. }
  1124.      }
  1125. #ifndef IM_DEBUG_PROBE
  1126.    printk("scanned,");
  1127. #endif
  1128.    /* STEP 3: */
  1129. #ifdef IM_DEBUG_PROBE
  1130.    printk("nIBM MCA SCSI: Mapping SCSI-devices.");
  1131. #endif
  1132.    ldn = 0;
  1133.    lun = 0;
  1134. #ifdef CONFIG_SCSI_MULTI_LUN
  1135.    for (lun=0; lun<8 && ldn<MAX_LOG_DEV; lun++)
  1136. #endif
  1137.      for (id=0; id<max_pun && ldn<MAX_LOG_DEV; id++) {
  1138. probe_display(1);
  1139. #ifdef IM_DEBUG_PROBE
  1140. printk(".");
  1141. #endif
  1142. if (id != subsystem_pun(host_index)) {
  1143.    if (get_scsi(host_index)[id][lun] != TYPE_NO_LUN &&
  1144.        get_scsi(host_index)[id][lun] != TYPE_NO_DEVICE) {
  1145.       /* Only map if accepted type. Always enter for
  1146.        lun == 0 to get no gaps into ldn-mapping for ldn<7. */
  1147.       immediate_assign(host_index,id,lun,ldn,SET_LDN);
  1148.       get_ldn(host_index)[id][lun]=ldn; /* map ldn */
  1149.       if (device_exists (host_index, ldn,
  1150.  &ld(host_index)[ldn].block_length,
  1151.  &ld(host_index)[ldn].device_type)) {
  1152. #ifdef CONFIG_IBMMCA_SCSI_DEV_RESET
  1153.  printk("resetting device at ldn=%x ... ",ldn);
  1154.  immediate_reset(host_index,ldn);
  1155. #endif
  1156.  ldn++;
  1157.       } else {
  1158.  /* device vanished, probably because we don't know how to
  1159.   * handle it or because it has problems */
  1160.  if (lun > 0) {
  1161.     /* remove mapping */
  1162.     get_ldn(host_index)[id][lun]=TYPE_NO_DEVICE;
  1163.     immediate_assign(host_index,0,0,ldn,REMOVE_LDN);
  1164.  } else ldn++;
  1165.       }
  1166.    } else if (lun == 0) {
  1167.       /* map lun == 0, even if no device exists */
  1168.       immediate_assign(host_index,id,lun,ldn,SET_LDN);
  1169.       get_ldn(host_index)[id][lun]=ldn; /* map ldn */
  1170.       ldn++;
  1171.    }
  1172. }
  1173.      }
  1174.    /* STEP 4: */
  1175.    /* map remaining ldns to non-existing devices */
  1176.    for (lun=1; lun<8 && ldn<MAX_LOG_DEV; lun++)
  1177.      for (id=0; id<max_pun && ldn<MAX_LOG_DEV; id++) {
  1178. if (get_scsi(host_index)[id][lun] == TYPE_NO_LUN ||
  1179.     get_scsi(host_index)[id][lun] == TYPE_NO_DEVICE) {
  1180.    probe_display(1);
  1181.    /* Map remaining ldns only to NON-existing pun,lun
  1182.     combinations to make sure an inquiry will fail.
  1183.     For MULTI_LUN, it is needed to avoid adapter autonome
  1184.     SCSI-remapping. */
  1185.    immediate_assign(host_index,id,lun,ldn,SET_LDN);
  1186.    get_ldn(host_index)[id][lun]=ldn;
  1187.    ldn++;
  1188. }
  1189.      }
  1190. #ifndef IM_DEBUG_PROBE
  1191.    printk("mapped.");
  1192. #endif
  1193.    printk("n");
  1194. #ifdef IM_DEBUG_PROBE
  1195.    if (ibm_ansi_order)
  1196.      printk("IBM MCA SCSI: Device order: IBM/ANSI (pun=7 is first).n");
  1197.    else
  1198.      printk("IBM MCA SCSI: Device order: New Industry Standard (pun=0 is first).n");
  1199. #endif
  1200. #ifdef IM_DEBUG_PROBE
  1201.    /* Show the physical and logical mapping during boot. */
  1202.    printk("IBM MCA SCSI: Determined SCSI-device-mapping:n");
  1203.    printk("    Physical SCSI-Device Map               Logical SCSI-Device Mapn");
  1204.    printk("ID\LUN  0  1  2  3  4  5  6  7       ID\LUN  0  1  2  3  4  5  6  7n");
  1205.    for (id=0; id<max_pun; id++) {
  1206.       printk("%2d     ",id);
  1207.       for (lun=0; lun<8; lun++)
  1208. printk("%2s ",ti_p(get_scsi(host_index)[id][lun]));
  1209.       printk("      %2d     ",id);
  1210.       for (lun=0; lun<8; lun++)
  1211. printk("%2s ",ti_l(get_ldn(host_index)[id][lun]));
  1212.       printk("n");
  1213.    }
  1214. #endif
  1215.    /* assign total number of found SCSI-devices to the statistics struct */
  1216.    IBM_DS(host_index).total_scsi_devices = count_devices;
  1217.    /* decide for output in /proc-filesystem, if the configuration of
  1218.       SCSI-devices makes dynamical reassignment of devices necessary */
  1219.    if (count_devices>=MAX_LOG_DEV)
  1220.      IBM_DS(host_index).dyn_flag = 1; /* dynamical assignment is necessary */
  1221.    else
  1222.      IBM_DS(host_index).dyn_flag = 0; /* dynamical assignment is not necessary */
  1223.    /* If no SCSI-devices are assigned, return 1 in order to cause message. */
  1224.    if (ldn == 0)
  1225.      printk("IBM MCA SCSI: Warning: No SCSI-devices found/assigned!n");
  1226.    /* reset the counters for statistics on the current adapter */
  1227.    IBM_DS(host_index).scbs = 0;
  1228.    IBM_DS(host_index).long_scbs = 0;
  1229.    IBM_DS(host_index).total_accesses = 0;
  1230.    IBM_DS(host_index).total_interrupts = 0;
  1231.    IBM_DS(host_index).dynamical_assignments = 0;
  1232.    memset (IBM_DS(host_index).ldn_access, 0x0,
  1233.    sizeof (IBM_DS(host_index).ldn_access));
  1234.    memset (IBM_DS(host_index).ldn_read_access, 0x0,
  1235.    sizeof (IBM_DS(host_index).ldn_read_access));
  1236.    memset (IBM_DS(host_index).ldn_write_access, 0x0,
  1237.    sizeof (IBM_DS(host_index).ldn_write_access));
  1238.    memset (IBM_DS(host_index).ldn_inquiry_access, 0x0,
  1239.    sizeof (IBM_DS(host_index).ldn_inquiry_access));
  1240.    memset (IBM_DS(host_index).ldn_modeselect_access, 0x0,
  1241.    sizeof (IBM_DS(host_index).ldn_modeselect_access));
  1242.    memset (IBM_DS(host_index).ldn_assignments, 0x0,
  1243.    sizeof (IBM_DS(host_index).ldn_assignments));
  1244.    probe_display(0);
  1245.    return;
  1246. }
  1247. static int device_exists (int host_index, int ldn, int *block_length,
  1248.   int *device_type)
  1249. {
  1250.    unsigned char *buf;
  1251.    /* if no valid device found, return immediately with 0 */
  1252.    if (!(device_inquiry(host_index, ldn)))
  1253.      return 0;
  1254.    buf = (unsigned char *)(&(ld(host_index)[ldn].buf));
  1255.    if (*buf == TYPE_ROM) {
  1256.       *device_type = TYPE_ROM;
  1257.       *block_length = 2048; /* (standard blocksize for yellow-/red-book) */
  1258.       return 1;
  1259.    }
  1260.    if (*buf == TYPE_WORM) {
  1261.       *device_type = TYPE_WORM;
  1262.       *block_length = 2048;
  1263.       return 1;
  1264.    }
  1265.    if (*buf == TYPE_DISK) {
  1266.       *device_type = TYPE_DISK;
  1267.       if (read_capacity( host_index, ldn)) {
  1268.  *block_length = *(buf+7) + (*(buf+6) << 8) +
  1269.    (*(buf+5) << 16) + (*(buf+4) << 24);
  1270.  return 1;
  1271.       } else
  1272. return 0;
  1273.    }
  1274.    if (*buf == TYPE_MOD) {
  1275.       *device_type = TYPE_MOD;
  1276.       if (read_capacity( host_index, ldn)) {
  1277.  *block_length = *(buf+7) + (*(buf+6) << 8) +
  1278.    (*(buf+5) << 16) + (*(buf+4) << 24);
  1279.  return 1;
  1280.       } else
  1281. return 0;
  1282.    }
  1283.    if (*buf == TYPE_TAPE) {
  1284.       *device_type = TYPE_TAPE;
  1285.       *block_length = 0; /* not in use (setting by mt and mtst in op.) */
  1286.       return 1;
  1287.    }
  1288.    if (*buf == TYPE_PROCESSOR) {
  1289.       *device_type = TYPE_PROCESSOR;
  1290.       *block_length = 0; /* they set their stuff on drivers */
  1291.       return 1;
  1292.    }
  1293.    if (*buf == TYPE_SCANNER) {
  1294.       *device_type = TYPE_SCANNER;
  1295.       *block_length = 0; /* they set their stuff on drivers */
  1296.       return 1;
  1297.    }
  1298.    if (*buf == TYPE_MEDIUM_CHANGER) {
  1299.       *device_type = TYPE_MEDIUM_CHANGER;
  1300.       *block_length = 0; /* One never knows, what to expect on a medium
  1301.     changer device. */
  1302.       return 1;
  1303.    }
  1304.    return 0;
  1305. }
  1306. void internal_ibmmca_scsi_setup (char *str, int *ints)
  1307. {
  1308.    int i, j, io_base, id_base;
  1309.    char *token;
  1310.    io_base = 0;
  1311.    id_base = 0;
  1312.    if (str) {
  1313.       token = strtok(str,",");
  1314.       j = 0;
  1315.       while (token) {
  1316.  if (!strcmp(token,"activity")) display_mode |= LED_ACTIVITY;
  1317.  if (!strcmp(token,"display")) display_mode |= LED_DISP;
  1318.  if (!strcmp(token,"adisplay")) display_mode |= LED_ADISP;
  1319.  if (!strcmp(token,"normal")) ibm_ansi_order = 0;
  1320.  if (!strcmp(token,"ansi")) ibm_ansi_order = 1;
  1321.  if (!strcmp(token,"fast")) global_adapter_speed = 0;
  1322.  if (!strcmp(token,"medium")) global_adapter_speed = 4;
  1323.  if (!strcmp(token,"slow")) global_adapter_speed = 7;
  1324.  if ((*token == '-') || (isdigit(*token))) {
  1325.     if (!(j%2) && (io_base < IM_MAX_HOSTS))
  1326.       io_port[io_base++] = simple_strtoul(token,NULL,0);
  1327.     if ((j%2) && (id_base < IM_MAX_HOSTS))
  1328.       scsi_id[id_base++] = simple_strtoul(token,NULL,0);
  1329.     j++;
  1330.  }
  1331.  token = strtok(NULL,",");
  1332.       }
  1333.    } else if (ints) {
  1334.       for (i = 0; i < IM_MAX_HOSTS && 2*i+2 < ints[0]; i++) {
  1335.  io_port[i] = ints[2*i+2];
  1336.  scsi_id[i] = ints[2*i+2];
  1337.       }
  1338.    }
  1339.    return;
  1340. }
  1341. static int ibmmca_getinfo (char *buf, int slot, void *dev)
  1342. {
  1343.    struct Scsi_Host *shpnt;
  1344.    int len, speciale, connectore, k;
  1345.    unsigned int pos[8];
  1346.    unsigned long flags;
  1347.    IBMLOCK
  1348.    shpnt = dev; /* assign host-structure to local pointer */
  1349.    len = 0; /* set filled text-buffer index to 0 */
  1350.    /* get the _special contents of the hostdata structure */
  1351.    speciale = ((struct ibmmca_hostdata *)shpnt->hostdata)->_special;
  1352.    connectore = ((struct ibmmca_hostdata *)shpnt->hostdata)->_connector_size;
  1353.    for (k=2;k<4;k++)
  1354.      pos[k] = ((struct ibmmca_hostdata *)shpnt->hostdata)->_pos[k];
  1355.    if (speciale == FORCED_DETECTION) { /* forced detection */
  1356.       len += sprintf (buf+len,
  1357.       "Adapter category: forced detectedn"
  1358.       "***************************************n"
  1359.       "***  Forced detected SCSI Adapter   ***n"
  1360.       "***  No chip-information available  ***n"
  1361.       "***************************************n");
  1362.    } else if (speciale == INTEGRATED_SCSI) {
  1363.       /* if the integrated subsystem has been found automatically: */
  1364.       len += sprintf (buf+len,
  1365.       "Adapter category: integratedn"
  1366.       "Chip revision level: %dn"
  1367.       "Chip status: %sn"
  1368.       "8 kByte NVRAM status: %sn",
  1369.       ((pos[2] & 0xf0) >> 4),
  1370.       (pos[2] & 1) ? "enabled" : "disabled",
  1371.       (pos[2] & 2) ? "locked" : "accessible");
  1372.    } else if ((speciale>=0)&&
  1373.       (speciale<(sizeof(subsys_list)/sizeof(struct subsys_list_struct)))) {
  1374.       /* if the subsystem is a slot adapter */
  1375.       len += sprintf (buf+len,
  1376.       "Adapter category: slot-cardn"
  1377.       "ROM Segment Address: ");
  1378.       if ((pos[2] & 0xf0) == 0xf0)
  1379. len += sprintf (buf+len, "offn");
  1380.       else
  1381. len += sprintf (buf+len, "0x%xn",
  1382. ((pos[2] & 0xf0) << 13) + 0xc0000);
  1383.       len += sprintf (buf + len, "Chip status: %sn",
  1384.       (pos[2] & 1) ? "enabled" : "disabled");
  1385.       len += sprintf (buf + len, "Adapter I/O Offset: 0x%xn",
  1386.       ((pos[2] & 0x0e) << 2));
  1387.    } else {
  1388.       len += sprintf (buf + len, "Adapter category: unknownn");
  1389.    }
  1390.    /* common subsystem information to write to the slotn file */
  1391.    len += sprintf (buf + len, "Subsystem PUN: %dn", shpnt->this_id);
  1392.    len += sprintf (buf + len, "I/O base address range: 0x%x-0x%xn",
  1393.    (unsigned int)(shpnt->io_port),
  1394.    (unsigned int)(shpnt->io_port+7));
  1395.    len += sprintf (buf + len, "MCA-slot size: %d bits",connectore);
  1396.    /* Now make sure, the bufferlength is devidable by 4 to avoid
  1397.     * paging problems of the buffer. */
  1398.    while ( len % sizeof( int ) != ( sizeof ( int ) - 1 ) )
  1399.      len += sprintf (buf+len, " ");
  1400.    len += sprintf (buf+len, "n");
  1401.    IBMUNLOCK
  1402.    return len;
  1403. }
  1404. int ibmmca_detect (Scsi_Host_Template * scsi_template)
  1405. {
  1406.    struct Scsi_Host *shpnt;
  1407.    int port, id, i, j, k, list_size, slot;
  1408.    int devices_on_irq_11 = 0;
  1409.    int devices_on_irq_14 = 0;
  1410.    int IRQ14_registered = 0;
  1411.    int IRQ11_registered = 0;
  1412.    found = 0; /* make absolutely sure, that found is set to 0 */
  1413.    /* First of all, print the version number of the driver. This is
  1414.     * important to allow better user bugreports in case of already
  1415.     * having problems with the MCA_bus probing. */
  1416.    printk("IBM MCA SCSI: Version %sn",IBMMCA_SCSI_DRIVER_VERSION);
  1417.    /* if this is not MCA machine, return "nothing found" */
  1418.    if (!MCA_bus) {
  1419.       printk("IBM MCA SCSI:  No Microchannel-bus present --> Aborting.n"
  1420.      "            This machine does not have any IBM MCA-busn"
  1421.      "          or the MCA-Kernel-support is not enabled!n");
  1422.       return 0;
  1423.    }
  1424. #ifdef MODULE
  1425.    /* If the driver is run as module, read from conf.modules or cmd-line */
  1426.    if (boot_options) option_setup(boot_options);
  1427. #endif
  1428.    /* get interrupt request level */
  1429.    if (request_irq (IM_IRQ, interrupt_handler, SA_SHIRQ, "ibmmcascsi",
  1430.     hosts)) {
  1431.       printk("IBM MCA SCSI: Unable to get shared IRQ %d.n", IM_IRQ);
  1432.       return 0;
  1433.    } else
  1434.      IRQ14_registered++;
  1435.    /* if ibmmcascsi setup option was passed to kernel, return "found" */
  1436.    for (i = 0; i < IM_MAX_HOSTS; i++)
  1437.      if (io_port[i] > 0 && scsi_id[i] >= 0 && scsi_id[i] < 8) {
  1438. printk("IBM MCA SCSI: forced detected SCSI Adapter, io=0x%x, scsi id=%d.n",
  1439.        io_port[i], scsi_id[i]);
  1440. if ((shpnt = ibmmca_register(scsi_template, io_port[i], scsi_id[i],
  1441.      FORCED_DETECTION, "forced detected SCSI Adapter"))) {
  1442.    for (k=2;k<7;k++)
  1443.      ((struct ibmmca_hostdata *)shpnt->hostdata)->_pos[k] = 0;
  1444.    ((struct ibmmca_hostdata *)shpnt->hostdata)->_special = FORCED_DETECTION;
  1445.    mca_set_adapter_name(MCA_INTEGSCSI, "forced detected SCSI Adapter");
  1446.    mca_set_adapter_procfn(MCA_INTEGSCSI, (MCA_ProcFn) ibmmca_getinfo,
  1447.   shpnt);
  1448.    mca_mark_as_used(MCA_INTEGSCSI);
  1449.    devices_on_irq_14++;
  1450. }
  1451.      }
  1452.    if (found) return found;
  1453.    /* The POS2-register of all PS/2 model SCSI-subsystems has the following
  1454.     * interpretation of bits:
  1455.     *                             Bit 7 - 4 : Chip Revision ID (Release)
  1456.     *                             Bit 3 - 2 : Reserved
  1457.     *                             Bit 1     : 8k NVRAM Disabled
  1458.     *                             Bit 0     : Chip Enable (EN-Signal)
  1459.     * The POS3-register is interpreted as follows:
  1460.     *                             Bit 7 - 5 : SCSI ID
  1461.     *                             Bit 4     : Reserved = 0
  1462.     *                             Bit 3 - 0 : Reserved = 0
  1463.     * (taken from "IBM, PS/2 Hardware Interface Technical Reference, Common
  1464.     * Interfaces (1991)").
  1465.     * In short words, this means, that IBM PS/2 machines only support
  1466.     * 1 single subsystem by default. The slot-adapters must have another
  1467.     * configuration on pos2. Here, one has to assume the following
  1468.     * things for POS2-register:
  1469.     *                             Bit 7 - 4 : Chip Revision ID (Release)
  1470.     *                             Bit 3 - 1 : port offset factor
  1471.     *                             Bit 0     : Chip Enable (EN-Signal)
  1472.     * As I found a patch here, setting the IO-registers to 0x3540 forced,
  1473.     * as there was a 0x05 in POS2 on a model 56, I assume, that the
  1474.     * port 0x3540 must be fix for integrated SCSI-controllers.
  1475.     * Ok, this discovery leads to the following implementation: (M.Lang) */
  1476.    /* first look for the IBM SCSI integrated subsystem on the motherboard */
  1477.    for (j=0;j<8;j++) /* read the pos-information */
  1478.      pos[j] = mca_read_stored_pos(MCA_INTEGSCSI,j);
  1479.    /* pos2 = pos3 = 0xff if there is no integrated SCSI-subsystem present, but
  1480.     * if we ignore the settings of all surrounding pos registers, it is not
  1481.     * completely sufficient to only check pos2 and pos3. */
  1482.    /* Therefore, now the following if statement is used to
  1483.     * make sure, we see a real integrated onboard SCSI-interface and no
  1484.     * internal system information, which gets mapped to some pos registers
  1485.     * on models 95xx. */
  1486.    if ((!pos[0] && !pos[1] && pos[2]>0 && pos[3]>0 && !pos[4] && !pos[5] && !pos[6] && !pos[7]) ||
  1487.        (pos[0]==0xff && pos[1]==0xff && pos[2]<0xff && pos[3]<0xff && pos[4]==0xff && pos[5]==0xff && pos[6]==0xff && pos[7]==0xff)) {
  1488.       if ((pos[2] & 1) == 1) /* is the subsystem chip enabled ? */
  1489. port = IM_IO_PORT;
  1490.       else { /* if disabled, no IRQs will be generated, as the chip won't
  1491.       * listen to the incoming commands and will do really nothing,
  1492.       * except for listening to the pos-register settings. If this
  1493.       * happens, I need to hugely think about it, as one has to
  1494.       * write something to the MCA-Bus pos register in order to
  1495.       * enable the chip. Normally, IBM-SCSI won't pass the POST,
  1496.       * when the chip is disabled (see IBM tech. ref.). */
  1497.  port = IM_IO_PORT; /* anyway, set the portnumber and warn */
  1498.  printk("IBM MCA SCSI: WARNING - Your SCSI-subsystem is disabled!n"
  1499. "              SCSI-operations may not work.n");
  1500.       }
  1501.       id = (pos[3] & 0xe0) >> 5; /* this is correct and represents the PUN */
  1502.       /* give detailed information on the subsystem. This helps me
  1503.        * additionally during debugging and analyzing bug-reports. */
  1504.       printk("IBM MCA SCSI: IBM Integrated SCSI Controller found, io=0x%x, scsi id=%d,n"
  1505.      "              chip rev.=%d, 8K NVRAM=%s, subsystem=%sn",
  1506.      port, id,
  1507.      ((pos[2] & 0xf0) >> 4), (pos[2] & 2) ? "locked" : "accessible",
  1508.      (pos[2] & 1) ? "enabled." : "disabled.");
  1509.       /* register the found integrated SCSI-subsystem */
  1510.       if ((shpnt = ibmmca_register(scsi_template, port, id, INTEGRATED_SCSI,
  1511.    "IBM Integrated SCSI Controller"))) {
  1512.  for (k=2;k<7;k++)
  1513.    ((struct ibmmca_hostdata *)shpnt->hostdata)->_pos[k] = pos[k];
  1514.  ((struct ibmmca_hostdata *)shpnt->hostdata)->_special = INTEGRATED_SCSI;
  1515.  mca_set_adapter_name(MCA_INTEGSCSI, "IBM Integrated SCSI Controller");
  1516.  mca_set_adapter_procfn(MCA_INTEGSCSI, (MCA_ProcFn) ibmmca_getinfo,
  1517. shpnt);
  1518.  mca_mark_as_used(MCA_INTEGSCSI);
  1519.  devices_on_irq_14++;
  1520.       }
  1521.    }
  1522.    /* now look for other adapters in MCA slots, */
  1523.    /* determine the number of known IBM-SCSI-subsystem types */
  1524.    /* see the pos[2] dependence to get the adapter port-offset. */
  1525.    list_size = sizeof(subsys_list) / sizeof(struct subsys_list_struct);
  1526.    for (i = 0; i < list_size; i++) {
  1527.       /* scan each slot for a fitting adapter id */
  1528.       slot = 0; /* start at slot 0 */
  1529.       while ((slot = mca_find_adapter(subsys_list[i].mca_id, slot))
  1530.      != MCA_NOTFOUND) { /* scan through all slots */
  1531.  for (j=0;j<8;j++) /* read the pos-information */
  1532.    pos[j] = mca_read_stored_pos(slot, j);
  1533.  if ((pos[2] & 1) == 1) /* is the subsystem chip enabled ? */
  1534.    /* (explanations see above) */
  1535.    port = IM_IO_PORT + ((pos[2] & 0x0e) << 2);
  1536.  else {
  1537.     /* anyway, set the portnumber and warn */
  1538.     port = IM_IO_PORT + ((pos[2] & 0x0e) << 2);
  1539.     printk("IBM MCA SCSI: WARNING - Your SCSI-subsystem is disabled!n"
  1540.    "              SCSI-operations may not work.n");
  1541.  }
  1542.  if ((i==IBM_SCSI2_FW)&&(pos[6]!=0)) {
  1543.     printk("IBM MCA SCSI: ERROR - Wrong POS(6)-register setting!n"
  1544.    "              Impossible to determine adapter PUN!n"
  1545.    "              Guessing adapter PUN = 7.n");
  1546.     id = 7;
  1547.  } else {
  1548.     id = (pos[3] & 0xe0) >> 5; /* get subsystem PUN */
  1549.     if (i==IBM_SCSI2_FW) {
  1550.        id |= (pos[3] & 0x10) >> 1; /* get subsystem PUN high-bit
  1551.     * for F/W adapters */
  1552.     }
  1553.  }
  1554.  if ((i==IBM_SCSI2_FW)&&(pos[4] & 0x01)&&(pos[6]==0)) {
  1555.     /* IRQ11 is used by SCSI-2 F/W Adapter/A */
  1556.     printk("IBM MCA SCSI: SCSI-2 F/W adapter needs IRQ 11.n");
  1557.     /* get interrupt request level */
  1558.     if (request_irq (IM_IRQ_FW, interrupt_handler, SA_SHIRQ,
  1559.      "ibmmcascsi", hosts)) {
  1560.        printk("IBM MCA SCSI: Unable to get shared IRQ %d.n",
  1561.       IM_IRQ_FW);
  1562.     } else
  1563.       IRQ11_registered++;
  1564.  }
  1565.  printk("IBM MCA SCSI: %s found in slot %d, io=0x%x, scsi id=%d,n",
  1566. subsys_list[i].description, slot + 1, port, id);
  1567.  if ((pos[2] & 0xf0) == 0xf0)
  1568.    printk("              ROM Addr.=off,");
  1569.  else
  1570.    printk("              ROM Addr.=0x%x,",
  1571.   ((pos[2] & 0xf0) << 13) + 0xc0000);
  1572.  printk(" port-offset=0x%x, subsystem=%sn",
  1573. ((pos[2] & 0x0e) << 2),
  1574. (pos[2] & 1) ? "enabled." : "disabled.");
  1575.  /* register the hostadapter */
  1576.  if ((shpnt = ibmmca_register(scsi_template, port, id, i,
  1577.       subsys_list[i].description))) {
  1578.     for (k=2;k<8;k++)
  1579.       ((struct ibmmca_hostdata *)shpnt->hostdata)->_pos[k] = pos[k];
  1580.     ((struct ibmmca_hostdata *)shpnt->hostdata)->_special = i;
  1581.     mca_set_adapter_name (slot, subsys_list[i].description);
  1582.     mca_set_adapter_procfn (slot, (MCA_ProcFn) ibmmca_getinfo,
  1583.     shpnt);
  1584.     mca_mark_as_used(slot);
  1585.     if ((i==IBM_SCSI2_FW)&&(pos[4] & 0x01)&&(pos[6]==0))
  1586.       devices_on_irq_11++;
  1587.     else
  1588.       devices_on_irq_14++;
  1589.  }
  1590.  slot++; /* advance to next slot */
  1591.       } /* advance to next adapter id in the list of IBM-SCSI-subsystems*/
  1592.    }
  1593.    /* now check for SCSI-adapters, mapped to the integrated SCSI
  1594.     * area. E.g. a W/Cache in MCA-slot 9(!). Do the check correct here,
  1595.     * as this is a known effect on some models 95xx. */
  1596.    list_size = sizeof(subsys_list) / sizeof(struct subsys_list_struct);
  1597.    for (i = 0; i < list_size; i++) {
  1598.       /* scan each slot for a fitting adapter id */
  1599.       slot = mca_find_adapter(subsys_list[i].mca_id, MCA_INTEGSCSI);
  1600.       if (slot != MCA_NOTFOUND) { /* scan through all slots */
  1601.  for (j=0;j<8;j++) /* read the pos-information */
  1602.    pos[j] = mca_read_stored_pos(slot, j);
  1603.  if ((pos[2] & 1) == 1) { /* is the subsystem chip enabled ? */
  1604.     /* (explanations see above) */
  1605.     port = IM_IO_PORT + ((pos[2] & 0x0e) << 2);
  1606.  } else { /* anyway, set the portnumber and warn */
  1607.     port = IM_IO_PORT + ((pos[2] & 0x0e) << 2);
  1608.     printk("IBM MCA SCSI: WARNING - Your SCSI-subsystem is disabled!n"
  1609.    "              SCSI-operations may not work.n");
  1610.  }
  1611.  if ((i==IBM_SCSI2_FW)&&(pos[6]!=0)) {
  1612.     printk("IBM MCA SCSI: ERROR - Wrong POS(6)-register setting!n"
  1613.    "              Impossible to determine adapter PUN!n"
  1614.    "              Guessing adapter PUN = 7.n");
  1615.     id = 7;
  1616.  } else {
  1617.     id = (pos[3] & 0xe0) >> 5; /* get subsystem PUN */
  1618.     if (i==IBM_SCSI2_FW)
  1619.       id |= (pos[3] & 0x10) >> 1; /* get subsystem PUN high-bit
  1620.    * for F/W adapters */
  1621.  }
  1622.  if ((i==IBM_SCSI2_FW)&&(pos[4] & 0x01)&&(pos[6]==0)) {
  1623.     /* IRQ11 is used by SCSI-2 F/W Adapter/A */
  1624.     printk("IBM MCA SCSI: SCSI-2 F/W adapter needs IRQ 11.n");
  1625.     /* get interrupt request level */
  1626.     if (request_irq (IM_IRQ_FW, interrupt_handler, SA_SHIRQ,
  1627.      "ibmmcascsi", hosts))
  1628.       printk("IBM MCA SCSI: Unable to get shared IRQ %d.n",
  1629.      IM_IRQ_FW);
  1630.     else
  1631.       IRQ11_registered++;
  1632.  }
  1633.  printk("IBM MCA SCSI: %s found in slot %d, io=0x%x, scsi id=%d,n",
  1634. subsys_list[i].description, slot + 1, port, id);
  1635.  if ((pos[2] & 0xf0) == 0xf0)
  1636.    printk("              ROM Addr.=off,");
  1637.  else
  1638.    printk("              ROM Addr.=0x%x,",
  1639.   ((pos[2] & 0xf0) << 13) + 0xc0000);
  1640.  printk(" port-offset=0x%x, subsystem=%sn",
  1641. ((pos[2] & 0x0e) << 2),
  1642. (pos[2] & 1) ? "enabled." : "disabled.");
  1643.  /* register the hostadapter */
  1644.  if ((shpnt = ibmmca_register(scsi_template, port, id, i,
  1645.       subsys_list[i].description))) {
  1646.     for (k=2;k<7;k++)
  1647.       ((struct ibmmca_hostdata *)shpnt->hostdata)->_pos[k] = pos[k];
  1648.     ((struct ibmmca_hostdata *)shpnt->hostdata)->_special = i;
  1649.     mca_set_adapter_name (slot, subsys_list[i].description);
  1650.     mca_set_adapter_procfn (slot, (MCA_ProcFn) ibmmca_getinfo, shpnt);
  1651.     mca_mark_as_used(slot);
  1652.     if ((i==IBM_SCSI2_FW)&&(pos[4] & 0x01)&&(pos[6]==0))
  1653.       devices_on_irq_11++;
  1654.     else
  1655.       devices_on_irq_14++;
  1656.  }
  1657.  slot++; /* advance to next slot */
  1658.       } /* advance to next adapter id in the list of IBM-SCSI-subsystems*/
  1659.    }
  1660.    if ( IRQ11_registered && !devices_on_irq_11 )
  1661.      free_irq(IM_IRQ_FW, hosts); /* no devices on IRQ 11 */
  1662.    if ( IRQ14_registered && !devices_on_irq_14 )
  1663.      free_irq(IM_IRQ, hosts); /* no devices on IRQ 14 */
  1664.    if ( !devices_on_irq_11 && !devices_on_irq_14 )
  1665.      printk("IBM MCA SCSI: No IBM SCSI-subsystem adapter attached.n");
  1666.    return found; /* return the number of found SCSI hosts. Should be 1 or 0. */
  1667. }
  1668. static struct Scsi_Host *
  1669. ibmmca_register(Scsi_Host_Template * scsi_template, int port, int id,
  1670. int adaptertype, char *hostname)
  1671. {
  1672.    struct Scsi_Host *shpnt;
  1673.    int i, j;
  1674.    unsigned int ctrl;
  1675.    /* check I/O region */
  1676.    if (check_region(port, IM_N_IO_PORT)) {
  1677.       printk("IBM MCA SCSI: Unable to get I/O region 0x%x-0x%x (%d ports).n",
  1678.      port, port + IM_N_IO_PORT - 1, IM_N_IO_PORT);
  1679.       return NULL;
  1680.    }
  1681.    /* register host */
  1682.    shpnt = scsi_register(scsi_template, sizeof(struct ibmmca_hostdata));
  1683.    if (!shpnt) {
  1684.       printk("IBM MCA SCSI: Unable to register host.n");
  1685.       return NULL;
  1686.    }
  1687.    /* request I/O region */
  1688.    request_region(port, IM_N_IO_PORT, hostname);
  1689.    hosts[found] = shpnt; /* add new found hostadapter to the list */
  1690.    special(found) = adaptertype; /* important assignment or else crash! */
  1691.    subsystem_connector_size(found) = 0; /* preset slot-size */
  1692.    shpnt->irq = IM_IRQ; /* assign necessary stuff for the adapter */
  1693.    shpnt->io_port = port;
  1694.    shpnt->n_io_port = IM_N_IO_PORT;
  1695.    shpnt->this_id = id;
  1696.    shpnt->max_id = 8; /* 8 PUNs are default */
  1697.    /* now, the SCSI-subsystem is connected to Linux */
  1698.    ctrl = (unsigned int)(inb(IM_CTR_REG(found))); /* get control-register status */
  1699. #ifdef IM_DEBUG_PROBE
  1700.    printk("IBM MCA SCSI: Control Register contents: %x, status: %xn",
  1701.   ctrl,inb(IM_STAT_REG(found)));
  1702.    printk("IBM MCA SCSI: This adapters' POS-registers: ");
  1703.    for (i=0;i<8;i++)
  1704.      printk("%x ",pos[i]);
  1705.    printk("n");
  1706. #endif
  1707.    reset_status(found) = IM_RESET_NOT_IN_PROGRESS;
  1708.    for (i = 0; i < 16; i++) /* reset the tables */
  1709.      for (j = 0; j < 8; j++)
  1710.      get_ldn(found)[i][j] = MAX_LOG_DEV;
  1711.    /* check which logical devices exist */
  1712.    /* after this line, local interrupting is possible: */
  1713.    local_checking_phase_flag(found) = 1;
  1714.    check_devices(found,adaptertype); /* call by value, using the global variable hosts*/
  1715.    local_checking_phase_flag(found) = 0;
  1716.    found++; /* now increase index to be prepared for next found subsystem */
  1717.    /* an ibm mca subsystem has been detected */
  1718.    return shpnt;
  1719. }
  1720. int ibmmca_command (Scsi_Cmnd * cmd)
  1721. {
  1722.   ibmmca_queuecommand (cmd, internal_done);
  1723.   cmd->SCp.Status = 0;
  1724.   while (!cmd->SCp.Status) barrier ();
  1725.   return cmd->result;
  1726. }
  1727. int ibmmca_release(struct Scsi_Host *shpnt)
  1728. {
  1729.   release_region(shpnt->io_port, shpnt->n_io_port);
  1730.   if (!(--found)) free_irq(shpnt->irq, hosts);
  1731.   return 0;
  1732. }
  1733. /* The following routine is the SCSI command queue for the midlevel driver */
  1734. int ibmmca_queuecommand (Scsi_Cmnd * cmd, void (*done) (Scsi_Cmnd *))
  1735. {
  1736.    unsigned int ldn;
  1737.    unsigned int scsi_cmd;
  1738.    struct im_scb *scb;
  1739.    struct Scsi_Host *shpnt;
  1740.    int current_ldn;
  1741.    int id,lun;
  1742.    int target;
  1743.    int host_index;
  1744.    int max_pun;
  1745.    int i;
  1746.    struct scatterlist *sl;
  1747.    shpnt = cmd->host;
  1748.    /* search for the right hostadapter */
  1749.    for (host_index = 0; hosts[host_index] && hosts[host_index]->host_no != shpnt->host_no; host_index++);
  1750.    if (!hosts[host_index]) { /* invalid hostadapter descriptor address */
  1751.       cmd->result = DID_NO_CONNECT << 16;
  1752.       if (done) done (cmd);
  1753.       return 0;
  1754.    }
  1755.    max_pun = subsystem_maxid(host_index);
  1756.    if (ibm_ansi_order) {
  1757.       target = max_pun - 1 - cmd->target;
  1758.       if ((target <= subsystem_pun(host_index))&&(cmd->target <= subsystem_pun(host_index)))
  1759. target--;
  1760.       else if ((target >= subsystem_pun(host_index))&&(cmd->target >= subsystem_pun(host_index)))
  1761. target++;
  1762.    } else
  1763.      target = cmd->target;
  1764.    /* if (target,lun) is NO LUN or not existing at all, return error */
  1765.    if ((get_scsi(host_index)[target][cmd->lun] == TYPE_NO_LUN)||
  1766.        (get_scsi(host_index)[target][cmd->lun] == TYPE_NO_DEVICE)) {
  1767.       cmd->result = DID_NO_CONNECT << 16;
  1768.       if (done) done (cmd);
  1769.       return 0;
  1770.    }
  1771.    /*if (target,lun) unassigned, do further checks... */
  1772.    ldn = get_ldn(host_index)[target][cmd->lun];
  1773.    if (ldn >= MAX_LOG_DEV) { /* on invalid ldn do special stuff */
  1774.       if (ldn > MAX_LOG_DEV) { /* dynamical remapping if ldn unassigned */
  1775.  current_ldn = next_ldn(host_index); /* stop-value for one circle */
  1776.  while (ld(host_index)[next_ldn(host_index)].cmd) { /* search for a occupied, but not in */
  1777.     /* command-processing ldn. */
  1778.     next_ldn(host_index)++;
  1779.     if (next_ldn(host_index)>=MAX_LOG_DEV)
  1780.       next_ldn(host_index) = 7;
  1781.     if (current_ldn == next_ldn(host_index)) { /* One circle done ? */
  1782.        /* no non-processing ldn found */
  1783.        printk("IBM MCA SCSI: Cannot assign SCSI-device dynamically!n" 
  1784.       "              On ldn 7-14 SCSI-commands everywhere in progress.n" 
  1785.       "              Reporting DID_NO_CONNECT for device (%d,%d).n",
  1786.       target, cmd->lun);
  1787.        cmd->result = DID_NO_CONNECT << 16;/* return no connect*/
  1788.        if (done) done (cmd);
  1789.        return 0;
  1790.     }
  1791.  }
  1792.  /* unmap non-processing ldn */
  1793.  for (id=0; id<max_pun; id ++)
  1794.    for (lun=0; lun<8; lun++) {
  1795.       if (get_ldn(host_index)[id][lun] == next_ldn(host_index)) {
  1796.  get_ldn(host_index)[id][lun] = TYPE_NO_DEVICE;
  1797.  get_scsi(host_index)[id][lun] = TYPE_NO_DEVICE;
  1798.  /* unmap entry */
  1799.       }
  1800.    }
  1801.  /* set reduced interrupt_handler-mode for checking */
  1802.  local_checking_phase_flag(host_index) = 1;
  1803.  /* map found ldn to pun,lun */
  1804.  get_ldn(host_index)[target][cmd->lun] = next_ldn(host_index);
  1805.  /* change ldn to the right value, that is now next_ldn */
  1806.  ldn = next_ldn(host_index);
  1807.  /* unassign all ldns (pun,lun,ldn does not matter for remove) */
  1808.  immediate_assign(host_index,0,0,0,REMOVE_LDN);
  1809.  /* set only LDN for remapped device */
  1810.  immediate_assign(host_index,target,cmd->lun,ldn,SET_LDN);
  1811.  /* get device information for ld[ldn] */
  1812.  if (device_exists (host_index, ldn,
  1813.     &ld(host_index)[ldn].block_length,
  1814.     &ld(host_index)[ldn].device_type)) {
  1815.     ld(host_index)[ldn].cmd = NULL; /* To prevent panic set 0, because
  1816.        devices that were not assigned,
  1817.        should have nothing in progress. */
  1818.     get_scsi(host_index)[target][cmd->lun] = ld(host_index)[ldn].device_type;
  1819.     /* increase assignment counters for statistics in /proc */
  1820.     IBM_DS(host_index).dynamical_assignments++;
  1821.     IBM_DS(host_index).ldn_assignments[ldn]++;
  1822.  } else
  1823.    /* panic here, because a device, found at boottime has
  1824.       vanished */
  1825.    panic("IBM MCA SCSI: ldn=0x%x, SCSI-device on (%d,%d) vanished!n",
  1826.  ldn, target, cmd->lun);
  1827.  /* unassign again all ldns (pun,lun,ldn does not matter for remove) */
  1828.  immediate_assign(host_index,0,0,0,REMOVE_LDN);
  1829.  /* remap all ldns, as written in the pun/lun table */
  1830.  lun=0;
  1831. #ifdef CONFIG_SCSI_MULTI_LUN
  1832.  for (lun=0; lun<8; lun++)
  1833. #endif
  1834.    for (id=0; id<max_pun; id ++) {
  1835.       if (get_ldn(host_index)[id][lun] <= MAX_LOG_DEV)
  1836. immediate_assign(host_index,id,lun,
  1837.  get_ldn(host_index)[id][lun],SET_LDN);
  1838.    }
  1839.  /* set back to normal interrupt_handling */
  1840.  local_checking_phase_flag(host_index) = 0;
  1841. #ifdef IM_DEBUG_PROBE
  1842.  /* Information on syslog terminal */
  1843.  printk("IBM MCA SCSI: ldn=0x%x dynamically reassigned to (%d,%d).n",
  1844. ldn, target, cmd->lun);
  1845. #endif
  1846.  /* increase next_ldn for next dynamical assignment */
  1847.  next_ldn(host_index)++;
  1848.  if (next_ldn(host_index)>=MAX_LOG_DEV)
  1849.    next_ldn(host_index) = 7;
  1850.       } else {  /* wall against Linux accesses to the subsystem adapter */
  1851.  cmd->result = DID_BAD_TARGET << 16;
  1852.  if (done) done (cmd);
  1853.  return 0;
  1854.       }
  1855.    }
  1856.    /*verify there is no command already in progress for this log dev */
  1857.    if (ld(host_index)[ldn].cmd)
  1858.      panic ("IBM MCA SCSI: cmd already in progress for this ldn.n");
  1859.    /*save done in cmd, and save cmd for the interrupt handler */
  1860.    cmd->scsi_done = done;
  1861.    ld(host_index)[ldn].cmd = cmd;
  1862.    /*fill scb information independent of the scsi command */
  1863.    scb = &(ld(host_index)[ldn].scb);
  1864.    ld(host_index)[ldn].tsb.dev_status = 0;
  1865.    scb->enable = IM_REPORT_TSB_ONLY_ON_ERROR | IM_RETRY_ENABLE;
  1866.    scb->tsb_adr = virt_to_bus(&(ld(host_index)[ldn].tsb));
  1867.    scsi_cmd = cmd->cmnd[0];
  1868.    if (cmd->use_sg) {
  1869.       i = cmd->use_sg;
  1870.       sl = (struct scatterlist *)(cmd->request_buffer);
  1871.       if (i > 16)
  1872. panic ("IBM MCA SCSI: scatter-gather list too long.n");
  1873.       while (--i >= 0) {
  1874.  ld(host_index)[ldn].sge[i].address = (void *)(virt_to_bus(sl[i].address));
  1875.  ld(host_index)[ldn].sge[i].byte_length = sl[i].length;
  1876.       }
  1877.       scb->enable |= IM_POINTER_TO_LIST;
  1878.       scb->sys_buf_adr = virt_to_bus(&(ld(host_index)[ldn].sge[0]));
  1879.       scb->sys_buf_length = cmd->use_sg * sizeof (struct im_sge);
  1880.    } else {
  1881.       scb->sys_buf_adr = virt_to_bus(cmd->request_buffer);
  1882.       /* recent Linux midlevel SCSI places 1024 byte for inquiry
  1883.        * command. Far too much for old PS/2 hardware. */
  1884.       switch (scsi_cmd) {
  1885.  /* avoid command errors by setting bufferlengths to
  1886.   * ANSI-standard. Beware of forcing it to 255,
  1887.   * this could SEGV the kernel!!! */
  1888.        case INQUIRY:
  1889.        case REQUEST_SENSE:
  1890.        case MODE_SENSE:
  1891.        case MODE_SELECT:
  1892.  if (cmd->request_bufflen > 255) scb->sys_buf_length = 255;
  1893.  else scb->sys_buf_length = cmd->request_bufflen;
  1894.  break;
  1895.        case TEST_UNIT_READY:
  1896.  scb->sys_buf_length = 0;
  1897.  break;
  1898.        default:
  1899.  scb->sys_buf_length = cmd->request_bufflen;
  1900.  break;
  1901.       }
  1902.    }
  1903.    /*fill scb information dependent on scsi command */
  1904. #ifdef IM_DEBUG_CMD
  1905.    printk("issue scsi cmd=%02x to ldn=%dn", scsi_cmd, ldn);
  1906. #endif
  1907.    /* for specific device-type debugging: */
  1908. #ifdef IM_DEBUG_CMD_SPEC_DEV
  1909.    if (ld(host_index)[ldn].device_type==IM_DEBUG_CMD_DEVICE)
  1910.      printk("(SCSI-device-type=0x%x) issue scsi cmd=%02x to ldn=%dn",
  1911.     ld(host_index)[ldn].device_type, scsi_cmd, ldn);
  1912. #endif
  1913.    /* for possible panics store current command */
  1914.    last_scsi_command(host_index)[ldn] = scsi_cmd;
  1915.    last_scsi_type(host_index)[ldn] = IM_SCB;
  1916.    /* update statistical info */
  1917.    IBM_DS(host_index).total_accesses++;
  1918.    IBM_DS(host_index).ldn_access[ldn]++;
  1919.    switch (scsi_cmd) {
  1920.     case READ_6:
  1921.     case WRITE_6:
  1922.     case READ_10:
  1923.     case WRITE_10:
  1924.     case READ_12:
  1925.     case WRITE_12:
  1926.       /* Distinguish between disk and other devices. Only disks (that are the
  1927.  most frequently accessed devices) should be supported by the
  1928.        IBM-SCSI-Subsystem commands. */
  1929.       switch (ld(host_index)[ldn].device_type) {
  1930.        case TYPE_DISK: /* for harddisks enter here ... */
  1931.        case TYPE_MOD:  /* ... try it also for MO-drives (send flames as */
  1932.  /*     you like, if this won't work.) */
  1933.  if (scsi_cmd == READ_6 || scsi_cmd == READ_10 || scsi_cmd == READ_12) {
  1934.     /* read command preparations */
  1935.     scb->enable |= IM_READ_CONTROL;
  1936.     IBM_DS(host_index).ldn_read_access[ldn]++; /* increase READ-access on ldn stat. */
  1937.     scb->command = IM_READ_DATA_CMD | IM_NO_DISCONNECT;
  1938.  } else { /* write command preparations */
  1939.     IBM_DS(host_index).ldn_write_access[ldn]++; /* increase write-count on ldn stat.*/
  1940.     scb->command = IM_WRITE_DATA_CMD | IM_NO_DISCONNECT;
  1941.  }
  1942.  if (scsi_cmd == READ_6 || scsi_cmd == WRITE_6) {
  1943.     scb->u1.log_blk_adr = (((unsigned) cmd->cmnd[3]) << 0) |
  1944.       (((unsigned) cmd->cmnd[2]) << 8) |
  1945.       ((((unsigned) cmd->cmnd[1]) & 0x1f) << 16);
  1946.     scb->u2.blk.count = (unsigned) cmd->cmnd[4];
  1947.  } else {
  1948.     scb->u1.log_blk_adr = (((unsigned) cmd->cmnd[5]) << 0) |
  1949.       (((unsigned) cmd->cmnd[4]) << 8) |
  1950.       (((unsigned) cmd->cmnd[3]) << 16) |
  1951.       (((unsigned) cmd->cmnd[2]) << 24);
  1952.     scb->u2.blk.count = (((unsigned) cmd->cmnd[8]) << 0) |
  1953.       (((unsigned) cmd->cmnd[7]) << 8);
  1954.  }
  1955.  last_scsi_logical_block(host_index)[ldn] = scb->u1.log_blk_adr;
  1956.  last_scsi_blockcount(host_index)[ldn] = scb->u2.blk.count;
  1957.  scb->u2.blk.length = ld(host_index)[ldn].block_length;
  1958.  break;
  1959.  /* for other devices, enter here. Other types are not known by
  1960.     Linux! TYPE_NO_LUN is forbidden as valid device. */
  1961.        case TYPE_ROM:
  1962.        case TYPE_TAPE:
  1963.        case TYPE_PROCESSOR:
  1964.        case TYPE_WORM:
  1965.        case TYPE_SCANNER:
  1966.        case TYPE_MEDIUM_CHANGER:
  1967.  /* If there is a sequential-device, IBM recommends to use
  1968.   IM_OTHER_SCSI_CMD_CMD instead of subsystem READ/WRITE.
  1969.   This includes CD-ROM devices, too, due to the partial sequential
  1970.   read capabilities. */
  1971.  scb->command = IM_OTHER_SCSI_CMD_CMD;
  1972.  if (scsi_cmd == READ_6 || scsi_cmd == READ_10 || scsi_cmd == READ_12)
  1973.    /* enable READ */
  1974.    scb->enable |= IM_READ_CONTROL;
  1975.  scb->enable |= IM_BYPASS_BUFFER;
  1976.  scb->u1.scsi_cmd_length = cmd->cmd_len;
  1977.  memcpy (scb->u2.scsi_command, cmd->cmnd, cmd->cmd_len);
  1978.  last_scsi_type(host_index)[ldn] = IM_LONG_SCB;
  1979.  /* Read/write on this non-disk devices is also displayworthy,
  1980.     so flash-up the LED/display. */
  1981.  break;
  1982.       }
  1983.       break;
  1984.     case INQUIRY:
  1985.       IBM_DS(host_index).ldn_inquiry_access[ldn]++;
  1986.       scb->command = IM_DEVICE_INQUIRY_CMD;
  1987.       scb->enable |= IM_READ_CONTROL | IM_SUPRESS_EXCEPTION_SHORT | IM_BYPASS_BUFFER;
  1988.       scb->u1.log_blk_adr = 0;
  1989.       break;
  1990.     case TEST_UNIT_READY:
  1991.       scb->command = IM_OTHER_SCSI_CMD_CMD;
  1992.       scb->enable |= IM_READ_CONTROL | IM_SUPRESS_EXCEPTION_SHORT | IM_BYPASS_BUFFER;
  1993.       scb->u1.log_blk_adr = 0;
  1994.       scb->u1.scsi_cmd_length = 6;
  1995.       memcpy (scb->u2.scsi_command, cmd->cmnd, 6);
  1996.       last_scsi_type(host_index)[ldn] = IM_LONG_SCB;
  1997.       break;
  1998.     case READ_CAPACITY:
  1999.       /* the length of system memory buffer must be exactly 8 bytes */
  2000.       scb->command = IM_READ_CAPACITY_CMD;
  2001.       scb->enable |= IM_READ_CONTROL | IM_BYPASS_BUFFER;
  2002.       if (scb->sys_buf_length > 8) scb->sys_buf_length = 8;
  2003.       break;
  2004.       /* Commands that need read-only-mode (system <- device): */
  2005.     case REQUEST_SENSE:
  2006.       scb->command = IM_REQUEST_SENSE_CMD;
  2007.       scb->enable |= IM_READ_CONTROL | IM_SUPRESS_EXCEPTION_SHORT | IM_BYPASS_BUFFER;
  2008.       break;
  2009.       /* Commands that need write-only-mode (system -> device): */
  2010.     case MODE_SELECT:
  2011.     case MODE_SELECT_10:
  2012.       IBM_DS(host_index).ldn_modeselect_access[ldn]++;
  2013.       scb->command = IM_OTHER_SCSI_CMD_CMD;
  2014.       scb->enable |= IM_SUPRESS_EXCEPTION_SHORT | IM_BYPASS_BUFFER; /*Select needs WRITE-enabled*/
  2015.       scb->u1.scsi_cmd_length = cmd->cmd_len;
  2016.       memcpy (scb->u2.scsi_command, cmd->cmnd, cmd->cmd_len);
  2017.       last_scsi_type(host_index)[ldn] = IM_LONG_SCB;
  2018.       break;
  2019.       /* For other commands, read-only is useful. Most other commands are
  2020.        running without an input-data-block. */
  2021.     default:
  2022.       scb->command = IM_OTHER_SCSI_CMD_CMD;
  2023.       scb->enable |= IM_READ_CONTROL | IM_SUPRESS_EXCEPTION_SHORT | IM_BYPASS_BUFFER;
  2024.       scb->u1.scsi_cmd_length = cmd->cmd_len;
  2025.       memcpy (scb->u2.scsi_command, cmd->cmnd, cmd->cmd_len);
  2026.       last_scsi_type(host_index)[ldn] = IM_LONG_SCB;
  2027.       break;
  2028.    }
  2029.    /*issue scb command, and return */
  2030.    if (++disk_rw_in_progress == 1)
  2031.      PS2_DISK_LED_ON (shpnt->host_no, target);
  2032.    if (last_scsi_type(host_index)[ldn] == IM_LONG_SCB) {
  2033.       issue_cmd (host_index, virt_to_bus(scb), IM_LONG_SCB | ldn);
  2034.       IBM_DS(host_index).long_scbs++;
  2035.    } else {
  2036.       issue_cmd (host_index, virt_to_bus(scb), IM_SCB | ldn);
  2037.       IBM_DS(host_index).scbs++;
  2038.    }
  2039.    return 0;
  2040. }
  2041. int ibmmca_abort (Scsi_Cmnd * cmd)
  2042. {
  2043.    /* Abort does not work, as the adapter never generates an interrupt on
  2044.     * whatever situation is simulated, even when really pending commands
  2045.     * are running on the adapters' hardware ! */
  2046.    struct Scsi_Host *shpnt;
  2047.    unsigned int ldn;
  2048.    void (*saved_done) (Scsi_Cmnd *);
  2049.    int target;
  2050.    int host_index;
  2051.    int max_pun;
  2052.    static unsigned long flags;
  2053.    unsigned long imm_command;
  2054. #ifdef IM_DEBUG_PROBE
  2055.    printk("IBM MCA SCSI: Abort subroutine called...n");
  2056. #endif
  2057.    IBMLOCK
  2058.    shpnt = cmd->host;
  2059.    /* search for the right hostadapter */
  2060.    for (host_index = 0; hosts[host_index] && hosts[host_index]->host_no != shpnt->host_no; host_index++);
  2061.    if (!hosts[host_index]) { /* invalid hostadapter descriptor address */
  2062.       cmd->result = DID_NO_CONNECT << 16;
  2063.       if (cmd->scsi_done) (cmd->scsi_done) (cmd);
  2064.       shpnt = cmd->host;
  2065.       IBMUNLOCK
  2066. #ifdef IM_DEBUG_PROBE
  2067.       printk("IBM MCA SCSI: Abort adapter selection failed!n");
  2068. #endif
  2069.       return SCSI_ABORT_SNOOZE;
  2070.    }
  2071.    max_pun = subsystem_maxid(host_index);
  2072.    if (ibm_ansi_order) {
  2073.       target = max_pun - 1 - cmd->target;
  2074.       if ((target <= subsystem_pun(host_index))&&(cmd->target <= subsystem_pun(host_index)))
  2075. target--;
  2076.       else if ((target >= subsystem_pun(host_index))&&(cmd->target >= subsystem_pun(host_index)))
  2077. target++;
  2078.    } else
  2079.      target = cmd->target;
  2080.    /* get logical device number, and disable system interrupts */
  2081.    printk ("IBM MCA SCSI: Sending abort to device pun=%d, lun=%d.n",
  2082.    target, cmd->lun);
  2083.    ldn = get_ldn(host_index)[target][cmd->lun];
  2084.    /*if cmd for this ldn has already finished, no need to abort */
  2085.    if (!ld(host_index)[ldn].cmd) {
  2086.       IBMUNLOCK
  2087.       return SCSI_ABORT_NOT_RUNNING;
  2088.    }
  2089.    /* Clear ld.cmd, save done function, install internal done,
  2090.     * send abort immediate command (this enables sys. interrupts),
  2091.     * and wait until the interrupt arrives.
  2092.     */
  2093.    saved_done = cmd->scsi_done;
  2094.    cmd->scsi_done = internal_done;
  2095.    cmd->SCp.Status = 0;
  2096.    last_scsi_command(host_index)[ldn] = IM_ABORT_IMM_CMD;
  2097.    last_scsi_type(host_index)[ldn] = IM_IMM_CMD;
  2098.    imm_command = inl(IM_CMD_REG(host_index));
  2099.    imm_command &= (unsigned long)(0xffff0000); /* mask reserved stuff */
  2100.    imm_command |= (unsigned long)(IM_ABORT_IMM_CMD);
  2101.    /* must wait for attention reg not busy */
  2102.    while (1) {
  2103.       if (!(inb (IM_STAT_REG(host_index)) & IM_BUSY))
  2104. break;
  2105.       IBMUNLOCK
  2106.       IBMLOCK
  2107.    }
  2108.    /* write registers and enable system interrupts */
  2109.    outl (imm_command, IM_CMD_REG(host_index));
  2110.    outb (IM_IMM_CMD | ldn, IM_ATTN_REG(host_index));
  2111.    IBMUNLOCK
  2112. #ifdef IM_DEBUG_PROBE
  2113.    printk("IBM MCA SCSI: Abort queued to adapter...n");
  2114. #endif
  2115.    while (!cmd->SCp.Status) barrier ();
  2116.    cmd->scsi_done = saved_done;
  2117. #ifdef IM_DEBUG_PROBE
  2118.    printk("IBM MCA SCSI: Abort returned with adapter response...n");
  2119. #endif
  2120.    /*if abort went well, call saved done, then return success or error */
  2121.    if (cmd->result == (DID_ABORT << 16)) {
  2122.       IBMLOCK
  2123.       cmd->result |= DID_ABORT << 16;
  2124.       if (cmd->scsi_done) (cmd->scsi_done) (cmd);
  2125.       ld(host_index)[ldn].cmd = NULL;
  2126.       IBMUNLOCK
  2127. #ifdef IM_DEBUG_PROBE
  2128.       printk("IBM MCA SCSI: Abort finished with success.n");
  2129. #endif
  2130.       return SCSI_ABORT_SUCCESS;
  2131.    } else {
  2132.       IBMLOCK
  2133.       cmd->result |= DID_NO_CONNECT << 16;
  2134.       if (cmd->scsi_done) (cmd->scsi_done) (cmd);
  2135.       ld(host_index)[ldn].cmd = NULL;
  2136.       IBMUNLOCK
  2137. #ifdef IM_DEBUG_PROBE
  2138.       printk("IBM MCA SCSI: Abort failed.n");
  2139. #endif
  2140.       return SCSI_ABORT_ERROR;
  2141.    }
  2142. }
  2143. int ibmmca_reset (Scsi_Cmnd * cmd, unsigned int reset_flags)
  2144. {
  2145.    struct Scsi_Host *shpnt;
  2146.    Scsi_Cmnd *cmd_aid;
  2147.    int ticks,i;
  2148.    int host_index;
  2149.    static unsigned long flags;
  2150.    unsigned long imm_command;
  2151.    if (cmd == NULL) {
  2152.       printk("IBM MCA SCSI: Reset called with NULL-command!n");
  2153.       return(SCSI_RESET_SNOOZE);
  2154.    }
  2155.    IBMLOCK
  2156.    ticks = IM_RESET_DELAY*HZ;
  2157.    shpnt = cmd->host;
  2158.    /* search for the right hostadapter */
  2159.    for (host_index = 0; hosts[host_index] && hosts[host_index]->host_no != shpnt->host_no; host_index++);
  2160.    if (!hosts[host_index]) /* invalid hostadapter descriptor address */
  2161.      return SCSI_ABORT_SNOOZE;
  2162.    if (local_checking_phase_flag(host_index)) {
  2163.       printk("IBM MCA SCSI: unable to reset while checking devices.n");
  2164.       IBMUNLOCK
  2165.       return SCSI_RESET_SNOOZE;
  2166.    }
  2167.    /* issue reset immediate command to subsystem, and wait for interrupt */
  2168.    printk("IBM MCA SCSI: resetting all devices.n");
  2169.    reset_status(host_index) = IM_RESET_IN_PROGRESS;
  2170.    last_scsi_command(host_index)[0xf] = IM_RESET_IMM_CMD;
  2171.    last_scsi_type(host_index)[0xf] = IM_IMM_CMD;
  2172.    imm_command = inl(IM_CMD_REG(host_index));
  2173.    imm_command &= (unsigned long)(0xffff0000); /* mask reserved stuff */
  2174.    imm_command |= (unsigned long)(IM_RESET_IMM_CMD);
  2175.    /* must wait for attention reg not busy */
  2176.    while (1) {
  2177.       if (!(inb (IM_STAT_REG(host_index)) & IM_BUSY))
  2178. break;
  2179.       IBMUNLOCK
  2180.       IBMLOCK
  2181.    }
  2182.    /*write registers and enable system interrupts */
  2183.    outl (imm_command, IM_CMD_REG(host_index));
  2184.    outb (IM_IMM_CMD | 0xf, IM_ATTN_REG(host_index));
  2185.    /* wait for interrupt finished or intr_stat register to be set, as the
  2186.     * interrupt will not be executed, while we are in here! */
  2187.    while (reset_status(host_index) == IM_RESET_IN_PROGRESS && --ticks
  2188.   && ((inb(IM_INTR_REG(host_index)) & 0x8f)!=0x8f)) {
  2189.       udelay((1+999/HZ)*1000);
  2190.       barrier();
  2191.    }
  2192.    /* if reset did not complete, just return an error*/
  2193.    if (!ticks) {
  2194.       printk("IBM MCA SCSI: reset did not complete within %d seconds.n",
  2195.      IM_RESET_DELAY);
  2196.       reset_status(host_index) = IM_RESET_FINISHED_FAIL;
  2197.       IBMUNLOCK
  2198.       return SCSI_RESET_ERROR;
  2199.    }
  2200.    if ((inb(IM_INTR_REG(host_index)) & 0x8f)==0x8f) {
  2201.       /* analysis done by this routine and not by the intr-routine */
  2202.       if (inb(IM_INTR_REG(host_index))==0xaf)
  2203. reset_status(host_index) = IM_RESET_FINISHED_OK_NO_INT;
  2204.       else if (inb(IM_INTR_REG(host_index))==0xcf)
  2205. reset_status(host_index) = IM_RESET_FINISHED_FAIL;
  2206.       else /* failed, 4get it */
  2207. reset_status(host_index) = IM_RESET_NOT_IN_PROGRESS_NO_INT;
  2208.       outb (IM_EOI | 0xf, IM_ATTN_REG(host_index));
  2209.    }
  2210.    /* if reset failed, just return an error */
  2211.    if (reset_status(host_index) == IM_RESET_FINISHED_FAIL) {
  2212.       printk("IBM MCA SCSI: reset failed.n");
  2213.       IBMUNLOCK
  2214.       return SCSI_RESET_ERROR;
  2215.    }
  2216.    /* so reset finished ok - call outstanding done's, and return success */
  2217.    printk ("IBM MCA SCSI: Reset successfully completed.n");
  2218.    IBMUNLOCK
  2219.    for (i = 0; i < MAX_LOG_DEV; i++) {
  2220.       cmd_aid = ld(host_index)[i].cmd;
  2221.       if (cmd_aid && cmd_aid->scsi_done) {
  2222.  ld(host_index)[i].cmd = NULL;
  2223.  cmd_aid->result = DID_RESET << 16;
  2224.       }
  2225.    }
  2226.    if (reset_flags & SCSI_RESET_SUGGEST_HOST_RESET)
  2227.      return (SCSI_RESET_SUCCESS | SCSI_RESET_HOST_RESET);
  2228.    else if (reset_flags & SCSI_RESET_SUGGEST_BUS_RESET)
  2229.      return (SCSI_RESET_SUCCESS | SCSI_RESET_BUS_RESET);
  2230.    else
  2231.      return SCSI_RESET_SUCCESS;
  2232. }
  2233. int ibmmca_biosparam (Disk * disk, kdev_t dev, int *info)
  2234. {
  2235.    info[0] = 64;
  2236.    info[1] = 32;
  2237.    info[2] = disk->capacity / (info[0] * info[1]);
  2238.    if (info[2] >= 1024) {
  2239.       info[0] = 128;
  2240.       info[1] = 63;
  2241.       info[2] = disk->capacity / (info[0] * info[1]);
  2242.       if (info[2] >= 1024) {
  2243.  info[0] = 255;
  2244.  info[1] = 63;
  2245.  info[2] = disk->capacity / (info[0] * info[1]);
  2246.  if (info[2] >= 1024)
  2247.    info[2] = 1023;
  2248.       }
  2249.    }
  2250.    return 0;
  2251. }
  2252. /* calculate percentage of total accesses on a ldn */
  2253. static int ldn_access_load(int host_index, int ldn)
  2254. {
  2255.    if (IBM_DS(host_index).total_accesses == 0) return (0);
  2256.    if (IBM_DS(host_index).ldn_access[ldn] == 0) return (0);
  2257.    return (IBM_DS(host_index).ldn_access[ldn] * 100) / IBM_DS(host_index).total_accesses;
  2258. }
  2259. /* calculate total amount of r/w-accesses */
  2260. static int ldn_access_total_read_write(int host_index)
  2261. {
  2262.    int a;
  2263.    int i;
  2264.    a = 0;
  2265.    for (i=0; i<=MAX_LOG_DEV; i++)
  2266.      a+=IBM_DS(host_index).ldn_read_access[i]+IBM_DS(host_index).ldn_write_access[i];
  2267.    return(a);
  2268. }
  2269. static int ldn_access_total_inquiry(int host_index)
  2270. {
  2271.    int a;
  2272.    int i;
  2273.    a = 0;
  2274.    for (i=0; i<=MAX_LOG_DEV; i++)
  2275.      a+=IBM_DS(host_index).ldn_inquiry_access[i];
  2276.    return(a);
  2277. }
  2278. static int ldn_access_total_modeselect(int host_index)
  2279. {
  2280.    int a;
  2281.    int i;
  2282.    a = 0;
  2283.    for (i=0; i<=MAX_LOG_DEV; i++)
  2284.      a+=IBM_DS(host_index).ldn_modeselect_access[i];
  2285.    return(a);
  2286. }
  2287. /* routine to display info in the proc-fs-structure (a deluxe feature) */
  2288. int ibmmca_proc_info (char *buffer, char **start, off_t offset, int length,
  2289.       int hostno, int inout)
  2290. {
  2291.    int len=0;
  2292.    int i,id,lun,host_index;
  2293.    struct Scsi_Host *shpnt;
  2294.    unsigned long flags;
  2295.    int max_pun;
  2296.    IBMLOCK
  2297.    for (i = 0; hosts[i] && hosts[i]->host_no != hostno; i++);
  2298.    shpnt = hosts[i];
  2299.    host_index = i;
  2300.    if (!shpnt) {
  2301.       len += sprintf(buffer+len, "nIBM MCA SCSI: Can't find adapter for host number %dn", hostno);
  2302.       return len;
  2303.    }
  2304.    max_pun = subsystem_maxid(host_index);
  2305.    len += sprintf(buffer+len, "n             IBM-SCSI-Subsystem-Linux-Driver, Version %snnn",
  2306.   IBMMCA_SCSI_DRIVER_VERSION);
  2307.    len += sprintf(buffer+len, " SCSI Access-Statistics:n");
  2308.    len += sprintf(buffer+len, "               Device Scanning Order....: %sn",
  2309.   (ibm_ansi_order) ? "IBM/ANSI" : "New Industry Standard");
  2310. #ifdef CONFIG_SCSI_MULTI_LUN
  2311.    len += sprintf(buffer+len, "               Multiple LUN probing.....: Yesn");
  2312. #else
  2313.    len += sprintf(buffer+len, "               Multiple LUN probing.....: Non");
  2314. #endif
  2315.    len += sprintf(buffer+len, "               This Hostnumber..........: %dn",
  2316.   hostno);
  2317.    len += sprintf(buffer+len, "               Base I/O-Port............: 0x%xn",
  2318.   (unsigned int)(IM_CMD_REG(host_index)));
  2319.    len += sprintf(buffer+len, "               (Shared) IRQ.............: %dn",
  2320.   IM_IRQ);
  2321.    len += sprintf(buffer+len, "               Total Interrupts.........: %dn",
  2322.   IBM_DS(host_index).total_interrupts);
  2323.    len += sprintf(buffer+len, "               Total SCSI Accesses......: %dn",
  2324.   IBM_DS(host_index).total_accesses);
  2325.    len += sprintf(buffer+len, "               Total short SCBs.........: %dn",
  2326.   IBM_DS(host_index).scbs);
  2327.    len += sprintf(buffer+len, "               Total long SCBs..........: %dn",
  2328.   IBM_DS(host_index).long_scbs);
  2329.    len += sprintf(buffer+len, "                 Total SCSI READ/WRITE..: %dn",
  2330.   ldn_access_total_read_write(host_index));
  2331.    len += sprintf(buffer+len, "                 Total SCSI Inquiries...: %dn",
  2332.   ldn_access_total_inquiry(host_index));
  2333.    len += sprintf(buffer+len, "                 Total SCSI Modeselects.: %dn",
  2334.   ldn_access_total_modeselect(host_index));
  2335.    len += sprintf(buffer+len, "                 Total SCSI other cmds..: %dn",
  2336.   IBM_DS(host_index).total_accesses - ldn_access_total_read_write(host_index)
  2337.   - ldn_access_total_modeselect(host_index)
  2338.   - ldn_access_total_inquiry(host_index));
  2339.    len += sprintf(buffer+len, "               Total SCSI command fails.: %dnn",
  2340.   IBM_DS(host_index).total_errors);
  2341.    len += sprintf(buffer+len, " Logical-Device-Number (LDN) Access-Statistics:n");
  2342.    len += sprintf(buffer+len, "         LDN | Accesses [%%] |   READ    |   WRITE   | ASSIGNMENTSn");
  2343.    len += sprintf(buffer+len, "        -----|--------------|-----------|-----------|--------------n");
  2344.    for (i=0; i<=MAX_LOG_DEV; i++)
  2345.      len += sprintf(buffer+len, "         %2X  |    %3d       |  %8d |  %8d | %8dn",
  2346.     i, ldn_access_load(host_index, i), IBM_DS(host_index).ldn_read_access[i],
  2347.     IBM_DS(host_index).ldn_write_access[i], IBM_DS(host_index).ldn_assignments[i]);
  2348.    len += sprintf(buffer+len, "        -----------------------------------------------------------nn");
  2349.    len += sprintf(buffer+len, " Dynamical-LDN-Assignment-Statistics:n");
  2350.    len += sprintf(buffer+len, "               Number of physical SCSI-devices..: %d (+ Adapter)n",
  2351.   IBM_DS(host_index).total_scsi_devices);
  2352.    len += sprintf(buffer+len, "               Dynamical Assignment necessary...: %sn",
  2353.   IBM_DS(host_index).dyn_flag ? "Yes" : "No ");
  2354.    len += sprintf(buffer+len, "               Next LDN to be assigned..........: 0x%xn",
  2355.   next_ldn(host_index));
  2356.    len += sprintf(buffer+len, "               Dynamical assignments done yet...: %dn",
  2357.   IBM_DS(host_index).dynamical_assignments);
  2358.    len += sprintf(buffer+len, "n Current SCSI-Device-Mapping:n");
  2359.    len += sprintf(buffer+len, "        Physical SCSI-Device Map               Logical SCSI-Device Mapn");
  2360.    len += sprintf(buffer+len, "    ID\LUN  0  1  2  3  4  5  6  7       ID\LUN  0  1  2  3  4  5  6  7n");
  2361.    for (id=0; id<max_pun; id++) {
  2362.       len += sprintf(buffer+len, "    %2d     ",id);
  2363.       for (lun=0; lun<8; lun++)
  2364. len += sprintf(buffer+len,"%2s ",ti_p(get_scsi(host_index)[id][lun]));
  2365.       len += sprintf(buffer+len, "      %2d     ",id);
  2366.       for (lun=0; lun<8; lun++)
  2367. len += sprintf(buffer+len,"%2s ",ti_l(get_ldn(host_index)[id][lun]));
  2368.       len += sprintf(buffer+len,"n");
  2369.    }
  2370.    len += sprintf(buffer+len, "(A = IBM-Subsystem, D = Harddisk, T = Tapedrive, P = Processor, W = WORM,n");
  2371.    len += sprintf(buffer+len, " R = CD-ROM, S = Scanner, M = MO-Drive, C = Medium-Changer, + = unprovided LUN,n");
  2372.    len += sprintf(buffer+len, " - = nothing found, nothing assigned or unprobed LUN)nn");
  2373.    *start = buffer + offset;
  2374.    len -= offset;
  2375.    if (len > length) len = length;
  2376.    IBMUNLOCK
  2377.    return len;
  2378. }
  2379. void ibmmca_scsi_setup (char *str, int *ints)
  2380. {
  2381.    internal_ibmmca_scsi_setup (str, ints);
  2382. }
  2383. static int option_setup(char *str)
  2384. {
  2385.    int ints[IM_MAX_HOSTS];
  2386.    char *cur = str;
  2387.    int i = 1;
  2388.    while (cur && isdigit(*cur) && i <= IM_MAX_HOSTS) {
  2389.       ints[i++] = simple_strtoul(cur, NULL, 0);
  2390.       if ((cur = strchr(cur,',')) != NULL) cur++;
  2391.    }
  2392.    ints[0] = i - 1;
  2393.    internal_ibmmca_scsi_setup(cur, ints);
  2394.    return 0;
  2395. }
  2396. __setup("ibmmcascsi=", option_setup);
  2397. static Scsi_Host_Template driver_template = IBMMCA;
  2398. #include "scsi_module.c"