eata.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:80k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *      eata.c - Low-level driver for EATA/DMA SCSI host adapters.
  3.  *
  4.  *      25 Jun 2002 Rev. 6.70 for linux 2.4.19
  5.  *        + This release is the first one tested on a Big Endian platform:
  6.  *          fixed endian-ness problem due to bitfields;
  7.  *          fixed endian-ness problem in read_pio.
  8.  *        + Added new options for selectively probing ISA, EISA and PCI bus:
  9.  *
  10.  *          Boot option   Parameter name    Default according to
  11.  *
  12.  *          ip:[y|n]      isa_probe=[1|0]   CONFIG_ISA  defined
  13.  *          ep:[y|n]      eisa_probe=[1|0]  CONFIG_EISA defined
  14.  *          pp:[y|n]      pci_probe=[1|0]   CONFIG_PCI  defined
  15.  *
  16.  *          The default action is to perform probing if the corrisponding
  17.  *          bus is configured and to skip probing otherwise.
  18.  *
  19.  *        + If pci_probe is in effect and a list of I/O  ports is specified
  20.  *          as parameter or boot option, pci_enable_device() is performed
  21.  *          on all pci devices matching PCI_CLASS_STORAGE_SCSI.
  22.  *
  23.  *      21 Feb 2002 Rev. 6.52 for linux 2.4.18
  24.  *        + Backport from rev. 7.22 (use io_request_lock).
  25.  *
  26.  *      20 Feb 2002 Rev. 7.22 for linux 2.5.5
  27.  *        + Remove any reference to virt_to_bus().
  28.  *        + Fix pio hang while detecting multiple HBAs.
  29.  *        + Fixed a board detection bug: in a system with
  30.  *          multiple ISA/EISA boards, all but the first one
  31.  *          were erroneously detected as PCI.
  32.  *
  33.  *      01 Jan 2002 Rev. 7.20 for linux 2.5.1
  34.  *        + Use the dynamic DMA mapping API.
  35.  *
  36.  *      19 Dec 2001 Rev. 7.02 for linux 2.5.1
  37.  *        + Use SCpnt->sc_data_direction if set.
  38.  *        + Use sglist.page instead of sglist.address.
  39.  *
  40.  *      11 Dec 2001 Rev. 7.00 for linux 2.5.1
  41.  *        + Use host->host_lock instead of io_request_lock.
  42.  *
  43.  *       1 May 2001 Rev. 6.05 for linux 2.4.4
  44.  *        + Clean up all pci related routines.
  45.  *        + Fix data transfer direction for opcode SEND_CUE_SHEET (0x5d)
  46.  *
  47.  *      30 Jan 2001 Rev. 6.04 for linux 2.4.1
  48.  *        + Call pci_resource_start after pci_enable_device.
  49.  *
  50.  *      25 Jan 2001 Rev. 6.03 for linux 2.4.0
  51.  *        + "check_region" call replaced by "request_region".
  52.  *
  53.  *      22 Nov 2000 Rev. 6.02 for linux 2.4.0-test11
  54.  *        + Return code checked when calling pci_enable_device.
  55.  *        + Removed old scsi error handling support.
  56.  *        + The obsolete boot option flag eh:n is silently ignored.
  57.  *        + Removed error messages while a disk drive is powered up at
  58.  *          boot time.
  59.  *        + Improved boot messages: all tagged capable device are
  60.  *          indicated as "tagged" or "soft-tagged" :
  61.  *          - "soft-tagged"  means that the driver is trying to do its
  62.  *            own tagging (i.e. the tc:y option is in effect);
  63.  *          - "tagged" means that the device supports tagged commands,
  64.  *            but the driver lets the HBA be responsible for tagging
  65.  *            support.
  66.  *
  67.  *      16 Sep 1999 Rev. 5.11 for linux 2.2.12 and 2.3.18
  68.  *        + Updated to the new __setup interface for boot command line options.
  69.  *        + When loaded as a module, accepts the new parameter boot_options
  70.  *          which value is a string with the same format of the kernel boot
  71.  *          command line options. A valid example is:
  72.  *          modprobe eata 'boot_options="0x7410,0x230,lc:y,tc:n,mq:4"'
  73.  *
  74.  *       9 Sep 1999 Rev. 5.10 for linux 2.2.12 and 2.3.17
  75.  *        + 64bit cleanup for Linux/Alpha platform support
  76.  *          (contribution from H.J. Lu).
  77.  *
  78.  *      22 Jul 1999 Rev. 5.00 for linux 2.2.10 and 2.3.11
  79.  *        + Removed pre-2.2 source code compatibility.
  80.  *        + Added call to pci_set_master.
  81.  *
  82.  *      26 Jul 1998 Rev. 4.33 for linux 2.0.35 and 2.1.111
  83.  *        + Added command line option (rs:[y|n]) to reverse the scan order
  84.  *          of PCI boards. The default is rs:y, which reverses the BIOS order
  85.  *          while registering PCI boards. The default value rs:y generates
  86.  *          the same order of all previous revisions of this driver.
  87.  *          Pls. note that "BIOS order" might have been reversed itself
  88.  *          after the 2.1.9x PCI modifications in the linux kernel.
  89.  *          The rs value is ignored when the explicit list of addresses
  90.  *          is used by the "eata=port0,port1,..." command line option.
  91.  *        + Added command line option (et:[y|n]) to force use of extended
  92.  *          translation (255 heads, 63 sectors) as disk geometry.
  93.  *          The default is et:n, which uses the disk geometry returned
  94.  *          by scsicam_bios_param. The default value et:n is compatible with
  95.  *          all previous revisions of this driver.
  96.  *
  97.  *      28 May 1998 Rev. 4.32 for linux 2.0.33 and 2.1.104
  98.  *          Increased busy timeout from 10 msec. to 200 msec. while
  99.  *          processing interrupts.
  100.  *
  101.  *      16 May 1998 Rev. 4.31 for linux 2.0.33 and 2.1.102
  102.  *          Improved abort handling during the eh recovery process.
  103.  *
  104.  *      13 May 1998 Rev. 4.30 for linux 2.0.33 and 2.1.101
  105.  *          The driver is now fully SMP safe, including the
  106.  *          abort and reset routines.
  107.  *          Added command line options (eh:[y|n]) to choose between
  108.  *          new_eh_code and the old scsi code.
  109.  *          If linux version >= 2.1.101 the default is eh:y, while the eh
  110.  *          option is ignored for previous releases and the old scsi code
  111.  *          is used.
  112.  *
  113.  *      18 Apr 1998 Rev. 4.20 for linux 2.0.33 and 2.1.97
  114.  *          Reworked interrupt handler.
  115.  *
  116.  *      11 Apr 1998 rev. 4.05 for linux 2.0.33 and 2.1.95
  117.  *          Major reliability improvement: when a batch with overlapping
  118.  *          requests is detected, requests are queued one at a time
  119.  *          eliminating any possible board or drive reordering.
  120.  *
  121.  *      10 Apr 1998 rev. 4.04 for linux 2.0.33 and 2.1.95
  122.  *          Improved SMP support (if linux version >= 2.1.95).
  123.  *
  124.  *       9 Apr 1998 rev. 4.03 for linux 2.0.33 and 2.1.94
  125.  *          Added support for new PCI code and IO-APIC remapping of irqs.
  126.  *          Performance improvement: when sequential i/o is detected,
  127.  *          always use direct sort instead of reverse sort.
  128.  *
  129.  *       4 Apr 1998 rev. 4.02 for linux 2.0.33 and 2.1.92
  130.  *          io_port is now unsigned long.
  131.  *
  132.  *      17 Mar 1998 rev. 4.01 for linux 2.0.33 and 2.1.88
  133.  *          Use new scsi error handling code (if linux version >= 2.1.88).
  134.  *          Use new interrupt code.
  135.  *
  136.  *      12 Sep 1997 rev. 3.11 for linux 2.0.30 and 2.1.55
  137.  *          Use of udelay inside the wait loops to avoid timeout
  138.  *          problems with fast cpus.
  139.  *          Removed check about useless calls to the interrupt service
  140.  *          routine (reported on SMP systems only).
  141.  *          At initialization time "sorted/unsorted" is displayed instead
  142.  *          of "linked/unlinked" to reinforce the fact that "linking" is
  143.  *          nothing but "elevator sorting" in the actual implementation.
  144.  *
  145.  *      17 May 1997 rev. 3.10 for linux 2.0.30 and 2.1.38
  146.  *          Use of serial_number_at_timeout in abort and reset processing.
  147.  *          Use of the __initfunc and __initdata macro in setup code.
  148.  *          Minor cleanups in the list_statistics code.
  149.  *          Increased controller busy timeout in order to better support
  150.  *          slow SCSI devices.
  151.  *
  152.  *      24 Feb 1997 rev. 3.00 for linux 2.0.29 and 2.1.26
  153.  *          When loading as a module, parameter passing is now supported
  154.  *          both in 2.0 and in 2.1 style.
  155.  *          Fixed data transfer direction for some SCSI opcodes.
  156.  *          Immediate acknowledge to request sense commands.
  157.  *          Linked commands to each disk device are now reordered by elevator
  158.  *          sorting. Rare cases in which reordering of write requests could
  159.  *          cause wrong results are managed.
  160.  *          Fixed spurious timeouts caused by long simple queue tag sequences.
  161.  *          New command line option (tm:[0-3]) to choose the type of tags:
  162.  *          0 -> mixed (default); 1 -> simple; 2 -> head; 3 -> ordered.
  163.  *
  164.  *      18 Jan 1997 rev. 2.60 for linux 2.1.21 and 2.0.28
  165.  *          Added command line options to enable/disable linked commands
  166.  *          (lc:[y|n]), tagged commands (tc:[y|n]) and to set the max queue
  167.  *          depth (mq:xx). Default is "eata=lc:n,tc:n,mq:16".
  168.  *          Improved command linking.
  169.  *          Documented how to setup RAID-0 with DPT SmartRAID boards.
  170.  *
  171.  *       8 Jan 1997 rev. 2.50 for linux 2.1.20 and 2.0.27
  172.  *          Added linked command support.
  173.  *          Improved detection of PCI boards using ISA base addresses.
  174.  *
  175.  *       3 Dec 1996 rev. 2.40 for linux 2.1.14 and 2.0.27
  176.  *          Added support for tagged commands and queue depth adjustment.
  177.  *
  178.  *      22 Nov 1996 rev. 2.30 for linux 2.1.12 and 2.0.26
  179.  *          When CONFIG_PCI is defined, BIOS32 is used to include in the
  180.  *          list of i/o ports to be probed all the PCI SCSI controllers.
  181.  *          The list of i/o ports to be probed can be overwritten by the
  182.  *          "eata=port0,port1,...." boot command line option.
  183.  *          Scatter/gather lists are now allocated by a number of kmalloc
  184.  *          calls, in order to avoid the previous size limit of 64Kb.
  185.  *
  186.  *      16 Nov 1996 rev. 2.20 for linux 2.1.10 and 2.0.25
  187.  *          Added support for EATA 2.0C, PCI, multichannel and wide SCSI.
  188.  *
  189.  *      27 Sep 1996 rev. 2.12 for linux 2.1.0
  190.  *          Portability cleanups (virtual/bus addressing, little/big endian
  191.  *          support).
  192.  *
  193.  *      09 Jul 1996 rev. 2.11 for linux 2.0.4
  194.  *          Number of internal retries is now limited.
  195.  *
  196.  *      16 Apr 1996 rev. 2.10 for linux 1.3.90
  197.  *          New argument "reset_flags" to the reset routine.
  198.  *
  199.  *       6 Jul 1995 rev. 2.01 for linux 1.3.7
  200.  *          Update required by the new /proc/scsi support.
  201.  *
  202.  *      11 Mar 1995 rev. 2.00 for linux 1.2.0
  203.  *          Fixed a bug which prevented media change detection for removable
  204.  *          disk drives.
  205.  *
  206.  *      23 Feb 1995 rev. 1.18 for linux 1.1.94
  207.  *          Added a check for scsi_register returning NULL.
  208.  *
  209.  *      11 Feb 1995 rev. 1.17 for linux 1.1.91
  210.  *          Now DEBUG_RESET is disabled by default.
  211.  *          Register a board even if it does not assert DMA protocol support
  212.  *          (DPT SK2011B does not report correctly the dmasup bit).
  213.  *
  214.  *       9 Feb 1995 rev. 1.16 for linux 1.1.90
  215.  *          Use host->wish_block instead of host->block.
  216.  *          New list of Data Out SCSI commands.
  217.  *
  218.  *       8 Feb 1995 rev. 1.15 for linux 1.1.89
  219.  *          Cleared target_time_out counter while performing a reset.
  220.  *          All external symbols renamed to avoid possible name conflicts.
  221.  *
  222.  *      28 Jan 1995 rev. 1.14 for linux 1.1.86
  223.  *          Added module support.
  224.  *          Log and do a retry when a disk drive returns a target status
  225.  *          different from zero on a recovered error.
  226.  *
  227.  *      24 Jan 1995 rev. 1.13 for linux 1.1.85
  228.  *          Use optimized board configuration, with a measured performance
  229.  *          increase in the range 10%-20% on i/o throughput.
  230.  *
  231.  *      16 Jan 1995 rev. 1.12 for linux 1.1.81
  232.  *          Fix mscp structure comments (no functional change).
  233.  *          Display a message if check_region detects a port address
  234.  *          already in use.
  235.  *
  236.  *      17 Dec 1994 rev. 1.11 for linux 1.1.74
  237.  *          Use the scsicam_bios_param routine. This allows an easy
  238.  *          migration path from disk partition tables created using
  239.  *          different SCSI drivers and non optimal disk geometry.
  240.  *
  241.  *      15 Dec 1994 rev. 1.10 for linux 1.1.74
  242.  *          Added support for ISA EATA boards (DPT PM2011, DPT PM2021).
  243.  *          The host->block flag is set for all the detected ISA boards.
  244.  *          The detect routine no longer enforces LEVEL triggering
  245.  *          for EISA boards, it just prints a warning message.
  246.  *
  247.  *      30 Nov 1994 rev. 1.09 for linux 1.1.68
  248.  *          Redo i/o on target status CHECK_CONDITION for TYPE_DISK only.
  249.  *          Added optional support for using a single board at a time.
  250.  *
  251.  *      18 Nov 1994 rev. 1.08 for linux 1.1.64
  252.  *          Forces sg_tablesize = 64 and can_queue = 64 if these
  253.  *          values are not correctly detected (DPT PM2012).
  254.  *
  255.  *      14 Nov 1994 rev. 1.07 for linux 1.1.63  Final BETA release.
  256.  *      04 Aug 1994 rev. 1.00 for linux 1.1.39  First BETA release.
  257.  *
  258.  *
  259.  *          This driver is based on the CAM (Common Access Method Committee)
  260.  *          EATA (Enhanced AT Bus Attachment) rev. 2.0A, using DMA protocol.
  261.  *
  262.  *  Copyright (C) 1994-2002 Dario Ballabio (ballabio_dario@emc.com)
  263.  *
  264.  *  Alternate email: dario.ballabio@inwind.it, dario.ballabio@tiscalinet.it
  265.  *
  266.  *  Redistribution and use in source and binary forms, with or without
  267.  *  modification, are permitted provided that redistributions of source
  268.  *  code retain the above copyright notice and this comment without
  269.  *  modification.
  270.  *
  271.  */
  272. /*
  273.  *
  274.  *  Here is a brief description of the DPT SCSI host adapters.
  275.  *  All these boards provide an EATA/DMA compatible programming interface
  276.  *  and are fully supported by this driver in any configuration, including
  277.  *  multiple SCSI channels:
  278.  *
  279.  *  PM2011B/9X -  Entry Level ISA
  280.  *  PM2021A/9X -  High Performance ISA
  281.  *  PM2012A       Old EISA
  282.  *  PM2012B       Old EISA
  283.  *  PM2022A/9X -  Entry Level EISA
  284.  *  PM2122A/9X -  High Performance EISA
  285.  *  PM2322A/9X -  Extra High Performance EISA
  286.  *  PM3021     -  SmartRAID Adapter for ISA
  287.  *  PM3222     -  SmartRAID Adapter for EISA (PM3222W is 16-bit wide SCSI)
  288.  *  PM3224     -  SmartRAID Adapter for PCI  (PM3224W is 16-bit wide SCSI)
  289.  *  PM33340UW  -  SmartRAID Adapter for PCI  ultra wide multichannel
  290.  *
  291.  *  The above list is just an indication: as a matter of fact all DPT
  292.  *  boards using the EATA/DMA protocol are supported by this driver,
  293.  *  since they use exactely the same programming interface.
  294.  *
  295.  *  The DPT PM2001 provides only the EATA/PIO interface and hence is not
  296.  *  supported by this driver.
  297.  *
  298.  *  This code has been tested with up to 3 Distributed Processing Technology
  299.  *  PM2122A/9X (DPT SCSI BIOS v002.D1, firmware v05E.0) EISA controllers,
  300.  *  in any combination of private and shared IRQ.
  301.  *  PCI support has been tested using up to 2 DPT PM3224W (DPT SCSI BIOS
  302.  *  v003.D0, firmware v07G.0).
  303.  *
  304.  *  DPT SmartRAID boards support "Hardware Array" - a group of disk drives
  305.  *  which are all members of the same RAID-0, RAID-1 or RAID-5 array implemented
  306.  *  in host adapter hardware. Hardware Arrays are fully compatible with this
  307.  *  driver, since they look to it as a single disk drive.
  308.  *
  309.  *  WARNING: to create a RAID-0 "Hardware Array" you must select "Other Unix"
  310.  *  as the current OS in the DPTMGR "Initial System Installation" menu.
  311.  *  Otherwise RAID-0 is generated as an "Array Group" (i.e. software RAID-0),
  312.  *  which is not supported by the actual SCSI subsystem.
  313.  *  To get the "Array Group" functionality, the Linux MD driver must be used
  314.  *  instead of the DPT "Array Group" feature.
  315.  *
  316.  *  Multiple ISA, EISA and PCI boards can be configured in the same system.
  317.  *  It is suggested to put all the EISA boards on the same IRQ level, all
  318.  *  the PCI  boards on another IRQ level, while ISA boards cannot share
  319.  *  interrupts.
  320.  *
  321.  *  If you configure multiple boards on the same IRQ, the interrupt must
  322.  *  be _level_ triggered (not _edge_ triggered).
  323.  *
  324.  *  This driver detects EATA boards by probes at fixed port addresses,
  325.  *  so no BIOS32 or PCI BIOS support is required.
  326.  *  The suggested way to detect a generic EATA PCI board is to force on it
  327.  *  any unused EISA address, even if there are other controllers on the EISA
  328.  *  bus, or even if you system has no EISA bus at all.
  329.  *  Do not force any ISA address on EATA PCI boards.
  330.  *
  331.  *  If PCI bios support is configured into the kernel, BIOS32 is used to
  332.  *  include in the list of i/o ports to be probed all the PCI SCSI controllers.
  333.  *
  334.  *  Due to a DPT BIOS "feature", it might not be possible to force an EISA
  335.  *  address on more than a single DPT PCI board, so in this case you have to
  336.  *  let the PCI BIOS assign the addresses.
  337.  *
  338.  *  The sequence of detection probes is:
  339.  *
  340.  *  - ISA 0x1F0;
  341.  *  - PCI SCSI controllers (only if BIOS32 is available);
  342.  *  - EISA/PCI 0x1C88 through 0xFC88 (corresponding to EISA slots 1 to 15);
  343.  *  - ISA  0x170, 0x230, 0x330.
  344.  *
  345.  *  The above list of detection probes can be totally replaced by the
  346.  *  boot command line option: "eata=port0,port1,port2,...", where the
  347.  *  port0, port1... arguments are ISA/EISA/PCI addresses to be probed.
  348.  *  For example using "eata=0x7410,0x7450,0x230", the driver probes
  349.  *  only the two PCI addresses 0x7410 and 0x7450 and the ISA address 0x230,
  350.  *  in this order; "eata=0" totally disables this driver.
  351.  *
  352.  *  After the optional list of detection probes, other possible command line
  353.  *  options are:
  354.  *
  355.  *  et:y  force use of extended translation (255 heads, 63 sectors);
  356.  *  et:n  use disk geometry detected by scsicam_bios_param;
  357.  *  rs:y  reverse scan order while detecting PCI boards;
  358.  *  rs:n  use BIOS order while detecting PCI boards;
  359.  *  lc:y  enables linked commands;
  360.  *  lc:n  disables linked commands;
  361.  *  tc:y  enables tagged commands;
  362.  *  tc:n  disables tagged commands;
  363.  *  tm:0  use head/simple/ordered queue tag sequences;
  364.  *  tm:1  use only simple queue tags;
  365.  *  tm:2  use only head of queue tags;
  366.  *  tm:3  use only ordered queue tags;
  367.  *  mq:xx set the max queue depth to the value xx (2 <= xx <= 32).
  368.  *
  369.  *  The default value is: "eata=lc:n,tc:n,mq:16,tm:0,et:n,rs:n".
  370.  *  An example using the list of detection probes could be:
  371.  *  "eata=0x7410,0x230,lc:y,tc:n,mq:4,et:n".
  372.  *
  373.  *  When loading as a module, parameters can be specified as well.
  374.  *  The above example would be (use 1 in place of y and 0 in place of n):
  375.  *
  376.  *  modprobe eata io_port=0x7410,0x230 linked_comm=1 tagged_comm=0 
  377.  *                max_queue_depth=4 tag_mode=0 
  378.  *                ext_tran=0 rev_scan=1
  379.  *
  380.  *  ----------------------------------------------------------------------------
  381.  *  In this implementation, linked commands are designed to work with any DISK
  382.  *  or CD-ROM, since this linking has only the intent of clustering (time-wise)
  383.  *  and reordering by elevator sorting commands directed to each device,
  384.  *  without any relation with the actual SCSI protocol between the controller
  385.  *  and the device.
  386.  *  If Q is the queue depth reported at boot time for each device (also named
  387.  *  cmds/lun) and Q > 2, whenever there is already an active command to the
  388.  *  device all other commands to the same device  (up to Q-1) are kept waiting
  389.  *  in the elevator sorting queue. When the active command completes, the
  390.  *  commands in this queue are sorted by sector address. The sort is chosen
  391.  *  between increasing or decreasing by minimizing the seek distance between
  392.  *  the sector of the commands just completed and the sector of the first
  393.  *  command in the list to be sorted.
  394.  *  Trivial math assures that the unsorted average seek distance when doing
  395.  *  random seeks over S sectors is S/3.
  396.  *  When (Q-1) requests are uniformly distributed over S sectors, the average
  397.  *  distance between two adjacent requests is S/((Q-1) + 1), so the sorted
  398.  *  average seek distance for (Q-1) random requests over S sectors is S/Q.
  399.  *  The elevator sorting hence divides the seek distance by a factor Q/3.
  400.  *  The above pure geometric remarks are valid in all cases and the
  401.  *  driver effectively reduces the seek distance by the predicted factor
  402.  *  when there are Q concurrent read i/o operations on the device, but this
  403.  *  does not necessarily results in a noticeable performance improvement:
  404.  *  your mileage may vary....
  405.  *
  406.  *  Note: command reordering inside a batch of queued commands could cause
  407.  *        wrong results only if there is at least one write request and the
  408.  *        intersection (sector-wise) of all requests is not empty.
  409.  *        When the driver detects a batch including overlapping requests
  410.  *        (a really rare event) strict serial (pid) order is enforced.
  411.  *  ----------------------------------------------------------------------------
  412.  *  The extended translation option (et:y) is useful when using large physical
  413.  *  disks/arrays. It could also be useful when switching between Adaptec boards
  414.  *  and DPT boards without reformatting the disk.
  415.  *  When a boot disk is partitioned with extended translation, in order to
  416.  *  be able to boot it with a DPT board is could be necessary to add to
  417.  *  lilo.conf additional commands as in the following example:
  418.  *
  419.  *  fix-table
  420.  *  disk=/dev/sda bios=0x80 sectors=63 heads=128 cylindres=546
  421.  *
  422.  *  where the above geometry should be replaced with the one reported at
  423.  *  power up by the DPT controller.
  424.  *  ----------------------------------------------------------------------------
  425.  *
  426.  *  The boards are named EATA0, EATA1,... according to the detection order.
  427.  *
  428.  *  In order to support multiple ISA boards in a reliable way,
  429.  *  the driver sets host->wish_block = TRUE for all ISA boards.
  430.  */
  431. #include <linux/version.h>
  432. #ifndef LinuxVersionCode
  433. #define LinuxVersionCode(v, p, s) (((v)<<16)+((p)<<8)+(s))
  434. #endif
  435. #define MAX_INT_PARAM 10
  436. #if defined(MODULE)
  437. #include <linux/module.h>
  438. MODULE_PARM(boot_options, "s");
  439. MODULE_PARM(io_port, "1-" __MODULE_STRING(MAX_INT_PARAM) "i");
  440. MODULE_PARM(linked_comm, "i");
  441. MODULE_PARM(tagged_comm, "i");
  442. MODULE_PARM(link_statistics, "i");
  443. MODULE_PARM(max_queue_depth, "i");
  444. MODULE_PARM(tag_mode, "i");
  445. MODULE_PARM(ext_tran, "i");
  446. MODULE_PARM(rev_scan, "i");
  447. MODULE_PARM(isa_probe, "i");
  448. MODULE_PARM(eisa_probe, "i");
  449. MODULE_PARM(pci_probe, "i");
  450. MODULE_AUTHOR("Dario Ballabio");
  451. #endif
  452. #include <linux/string.h>
  453. #include <linux/sched.h>
  454. #include <linux/kernel.h>
  455. #include <linux/ioport.h>
  456. #include <linux/delay.h>
  457. #include <asm/io.h>
  458. #include <asm/system.h>
  459. #include <asm/byteorder.h>
  460. #include <linux/proc_fs.h>
  461. #include <linux/blk.h>
  462. #include "scsi.h"
  463. #include "hosts.h"
  464. #include "sd.h"
  465. #include <asm/dma.h>
  466. #include <asm/irq.h>
  467. #include "eata.h"
  468. #include <linux/stat.h>
  469. #include <linux/config.h>
  470. #include <linux/pci.h>
  471. #include <linux/init.h>
  472. #include <linux/ctype.h>
  473. #include <linux/spinlock.h>
  474. #if !defined(__BIG_ENDIAN_BITFIELD) && !defined(__LITTLE_ENDIAN_BITFIELD)
  475. #error "Adjust your <asm/byteorder.h> defines"
  476. #endif
  477. /* Subversion values */
  478. #define ISA  0
  479. #define ESA 1
  480. #undef  FORCE_CONFIG
  481. #undef  DEBUG_LINKED_COMMANDS
  482. #undef  DEBUG_DETECT
  483. #undef  DEBUG_PCI_DETECT
  484. #undef  DEBUG_INTERRUPT
  485. #undef  DEBUG_RESET
  486. #undef  DEBUG_GENERATE_ERRORS
  487. #undef  DEBUG_GENERATE_ABORTS
  488. #undef  DEBUG_GEOMETRY
  489. #define MAX_ISA 4
  490. #define MAX_VESA 0
  491. #define MAX_EISA 15
  492. #define MAX_PCI 16
  493. #define MAX_BOARDS (MAX_ISA + MAX_VESA + MAX_EISA + MAX_PCI)
  494. #define MAX_CHANNEL 4
  495. #define MAX_LUN 32
  496. #define MAX_TARGET 32
  497. #define MAX_MAILBOXES 64
  498. #define MAX_SGLIST 64
  499. #define MAX_LARGE_SGLIST 122
  500. #define MAX_INTERNAL_RETRIES 64
  501. #define MAX_CMD_PER_LUN 2
  502. #define MAX_TAGGED_CMD_PER_LUN (MAX_MAILBOXES - MAX_CMD_PER_LUN)
  503. #define SKIP ULONG_MAX
  504. #define FALSE 0
  505. #define TRUE 1
  506. #define FREE 0
  507. #define IN_USE   1
  508. #define LOCKED   2
  509. #define IN_RESET 3
  510. #define IGNORE   4
  511. #define READY    5
  512. #define ABORTING 6
  513. #define NO_DMA  0xff
  514. #define MAXLOOP  10000
  515. #define TAG_MIXED    0
  516. #define TAG_SIMPLE   1
  517. #define TAG_HEAD     2
  518. #define TAG_ORDERED  3
  519. #define REG_CMD         7
  520. #define REG_STATUS      7
  521. #define REG_AUX_STATUS  8
  522. #define REG_DATA        0
  523. #define REG_DATA2       1
  524. #define REG_SEE         6
  525. #define REG_LOW         2
  526. #define REG_LM          3
  527. #define REG_MID         4
  528. #define REG_MSB         5
  529. #define REGION_SIZE     9UL
  530. #define MAX_ISA_ADDR    0x03ff
  531. #define MIN_EISA_ADDR   0x1c88
  532. #define MAX_EISA_ADDR   0xfc88
  533. #define BSY_ASSERTED      0x80
  534. #define DRQ_ASSERTED      0x08
  535. #define ABSY_ASSERTED     0x01
  536. #define IRQ_ASSERTED      0x02
  537. #define READ_CONFIG_PIO   0xf0
  538. #define SET_CONFIG_PIO    0xf1
  539. #define SEND_CP_PIO       0xf2
  540. #define RECEIVE_SP_PIO    0xf3
  541. #define TRUNCATE_XFR_PIO  0xf4
  542. #define RESET_PIO         0xf9
  543. #define READ_CONFIG_DMA   0xfd
  544. #define SET_CONFIG_DMA    0xfe
  545. #define SEND_CP_DMA       0xff
  546. #define ASOK              0x00
  547. #define ASST              0x01
  548. #define YESNO(a) ((a) ? 'y' : 'n')
  549. #define TLDEV(type) ((type) == TYPE_DISK || (type) == TYPE_ROM)
  550. /* "EATA", in Big Endian format */
  551. #define EATA_SIG_BE 0x45415441
  552. /* Number of valid bytes in the board config structure for EATA 2.0x */
  553. #define EATA_2_0A_SIZE 28
  554. #define EATA_2_0B_SIZE 30
  555. #define EATA_2_0C_SIZE 34
  556. /* Board info structure */
  557. struct eata_info {
  558.    u_int32_t data_len;  /* Number of valid bytes after this field */
  559.    u_int32_t sign;      /* ASCII "EATA" signature */
  560. #if defined(__BIG_ENDIAN_BITFIELD)
  561.    unchar version:4, :4;
  562.    unchar  haaval:1, ata:1, drqvld:1, dmasup:1, morsup:1, trnxfr:1, tarsup:1,
  563.            ocsena:1;
  564. #else
  565.    unchar        :4,    /* unused low nibble */
  566.           version:4;    /* EATA version, should be 0x1 */
  567.    unchar  ocsena:1,    /* Overlap Command Support Enabled */
  568.            tarsup:1,    /* Target Mode Supported */
  569.            trnxfr:1,    /* Truncate Transfer Cmd NOT Necessary */
  570.            morsup:1,    /* More Supported */
  571.            dmasup:1,    /* DMA Supported */
  572.            drqvld:1,    /* DRQ Index (DRQX) is valid */
  573.               ata:1,    /* This is an ATA device */
  574.            haaval:1;    /* Host Adapter Address Valid */
  575. #endif
  576.    ushort cp_pad_len;   /* Number of pad bytes after cp_len */
  577.    unchar host_addr[4]; /* Host Adapter SCSI ID for channels 3, 2, 1, 0 */
  578.    u_int32_t cp_len;    /* Number of valid bytes in cp */
  579.    u_int32_t sp_len;    /* Number of valid bytes in sp */
  580.    ushort queue_size;   /* Max number of cp that can be queued */
  581.    ushort unused;
  582.    ushort scatt_size;   /* Max number of entries in scatter/gather table */
  583. #if defined(__BIG_ENDIAN_BITFIELD)
  584.    unchar    drqx:2, second:1, irq_tr:1, irq:4;
  585.    unchar  sync;
  586.    unchar         :4, res1:1, large_sg:1, forcaddr:1, isaena:1;
  587.    unchar max_chan:3, max_id:5;
  588.    unchar   max_lun;
  589.    unchar     eisa:1, pci:1, idquest:1, m1:1, :4;
  590. #else
  591.    unchar     irq:4,    /* Interrupt Request assigned to this controller */
  592.            irq_tr:1,    /* 0 for edge triggered, 1 for level triggered */
  593.            second:1,    /* 1 if this is a secondary (not primary) controller */
  594.              drqx:2;    /* DRQ Index (0=DMA0, 1=DMA7, 2=DMA6, 3=DMA5) */
  595.    unchar  sync;        /* 1 if scsi target id 7...0 is running sync scsi */
  596.    /* Structure extension defined in EATA 2.0B */
  597.    unchar  isaena:1,    /* ISA i/o addressing is disabled/enabled */
  598.          forcaddr:1,    /* Port address has been forced */
  599.          large_sg:1,    /* 1 if large SG lists are supported */
  600.              res1:1,
  601.                  :4;
  602.    unchar  max_id:5,    /* Max SCSI target ID number */
  603.          max_chan:3;    /* Max SCSI channel number on this board */
  604.    /* Structure extension defined in EATA 2.0C */
  605.    unchar   max_lun;    /* Max SCSI LUN number */
  606.    unchar        :4,
  607.                m1:1,    /* This is a PCI with an M1 chip installed */
  608.           idquest:1,    /* RAIDNUM returned is questionable */
  609.               pci:1,    /* This board is PCI */
  610.              eisa:1;    /* This board is EISA */
  611. #endif
  612.    unchar   raidnum;    /* Uniquely identifies this HBA in a system */
  613.    unchar   notused;
  614.    ushort ipad[247];
  615.    };
  616. /* Board config structure */
  617. struct eata_config {
  618.    ushort len;          /* Number of bytes following this field */
  619. #if defined(__BIG_ENDIAN_BITFIELD)
  620.    unchar     :4, tarena:1, mdpena:1, ocena:1, edis:1;
  621. #else
  622.    unchar edis:1,       /* Disable EATA interface after config command */
  623.          ocena:1,       /* Overlapped Commands Enabled */
  624.         mdpena:1,       /* Transfer all Modified Data Pointer Messages */
  625.         tarena:1,       /* Target Mode Enabled for this controller */
  626.               :4;
  627. #endif
  628.    unchar cpad[511];
  629.    };
  630. /* Returned status packet structure */
  631. struct mssp {
  632. #if defined(__BIG_ENDIAN_BITFIELD)
  633.    unchar            eoc:1, adapter_status:7;
  634. #else
  635.    unchar adapter_status:7,    /* State related to current command */
  636.                      eoc:1;    /* End Of Command (1 = command completed) */
  637. #endif
  638.    unchar target_status;       /* SCSI status received after data transfer */
  639.    unchar unused[2];
  640.    u_int32_t inv_res_len;      /* Number of bytes not transferred */
  641.    u_int32_t cpp_index;        /* Index of address set in cp */
  642.    char mess[12];
  643.    };
  644. struct sg_list {
  645.    unsigned int address;                /* Segment Address */
  646.    unsigned int num_bytes;              /* Segment Length */
  647.    };
  648. /* MailBox SCSI Command Packet */
  649. struct mscp {
  650. #if defined(__BIG_ENDIAN_BITFIELD)
  651.    unchar     din:1, dout:1, interp:1, :1, sg:1, reqsen:1, init:1, sreset:1;
  652.    unchar sense_len;
  653.    unchar unused[3];
  654.    unchar        :7, fwnest:1;
  655.    unchar        :5, hbaci:1, iat:1, phsunit:1;
  656.    unchar channel:3, target:5;
  657.    unchar     one:1, dispri:1, luntar:1, lun:5;
  658. #else
  659.    unchar  sreset:1,     /* SCSI Bus Reset Signal should be asserted */
  660.              init:1,     /* Re-initialize controller and self test */
  661.            reqsen:1,     /* Transfer Request Sense Data to addr using DMA */
  662.                sg:1,     /* Use Scatter/Gather */
  663.                  :1,
  664.            interp:1,     /* The controller interprets cp, not the target */
  665.              dout:1,     /* Direction of Transfer is Out (Host to Target) */
  666.               din:1;     /* Direction of Transfer is In (Target to Host) */
  667.    unchar sense_len;     /* Request Sense Length */
  668.    unchar unused[3];
  669.    unchar  fwnest:1,     /* Send command to a component of an Array Group */
  670.                  :7;
  671.    unchar phsunit:1,     /* Send to Target Physical Unit (bypass RAID) */
  672.               iat:1,     /* Inhibit Address Translation */
  673.             hbaci:1,     /* Inhibit HBA Caching for this command */
  674.                  :5;
  675.    unchar  target:5,     /* SCSI target ID */
  676.           channel:3;     /* SCSI channel number */
  677.    unchar     lun:5,     /* SCSI logical unit number */
  678.            luntar:1,     /* This cp is for Target (not LUN) */
  679.            dispri:1,     /* Disconnect Privilege granted */
  680.               one:1;     /* 1 */
  681. #endif
  682.    unchar mess[3];       /* Massage to/from Target */
  683.    unchar cdb[12];       /* Command Descriptor Block */
  684.    u_int32_t data_len;   /* If sg=0 Data Length, if sg=1 sglist length */
  685.    u_int32_t cpp_index;  /* Index of address to be returned in sp */
  686.    u_int32_t data_address; /* If sg=0 Data Address, if sg=1 sglist address */
  687.    u_int32_t sp_dma_addr;  /* Address where sp is DMA'ed when cp completes */
  688.    u_int32_t sense_addr; /* Address where Sense Data is DMA'ed on error */
  689.    /* Additional fields begin here. */
  690.    Scsi_Cmnd *SCpnt;
  691.    /* All the cp structure is zero filled by queuecommand except the
  692.       following CP_TAIL_SIZE bytes, initialized by detect */
  693.    dma_addr_t cp_dma_addr; /* dma handle for this cp structure */
  694.    struct sg_list *sglist; /* pointer to the allocated SG list */
  695.    };
  696. #define CP_TAIL_SIZE (sizeof(struct sglist *) + sizeof(dma_addr_t))
  697. struct hostdata {
  698.    struct mscp cp[MAX_MAILBOXES];       /* Mailboxes for this board */
  699.    unsigned int cp_stat[MAX_MAILBOXES]; /* FREE, IN_USE, LOCKED, IN_RESET */
  700.    unsigned int last_cp_used;           /* Index of last mailbox used */
  701.    unsigned int iocount;                /* Total i/o done for this board */
  702.    int board_number;                    /* Number of this board */
  703.    char board_name[16];                 /* Name of this board */
  704.    int in_reset;                        /* True if board is doing a reset */
  705.    int target_to[MAX_TARGET][MAX_CHANNEL]; /* N. of timeout errors on target */
  706.    int target_redo[MAX_TARGET][MAX_CHANNEL]; /* If TRUE redo i/o on target */
  707.    unsigned int retries;                /* Number of internal retries */
  708.    unsigned long last_retried_pid;      /* Pid of last retried command */
  709.    unsigned char subversion;            /* Bus type, either ISA or EISA/PCI */
  710.    unsigned char protocol_rev;          /* EATA 2.0 rev., 'A' or 'B' or 'C' */
  711.    unsigned char is_pci;                /* TRUE is bus type is PCI */
  712.    struct pci_dev *pdev;                /* pdev for PCI bus, NULL otherwise */
  713.    struct mssp *sp_cpu_addr;            /* cpu addr for DMA buffer sp */
  714.    dma_addr_t sp_dma_addr;              /* dma handle for DMA buffer sp */
  715.    struct mssp sp;                      /* Local copy of sp buffer */
  716.    };
  717. static struct Scsi_Host *sh[MAX_BOARDS + 1];
  718. static const char *driver_name = "EATA";
  719. static char sha[MAX_BOARDS];
  720. /* Initialize num_boards so that ihdlr can work while detect is in progress */
  721. static unsigned int num_boards = MAX_BOARDS;
  722. static unsigned long io_port[] = {
  723.    /* Space for MAX_INT_PARAM ports usable while loading as a module */
  724.    SKIP,    SKIP,   SKIP,   SKIP,   SKIP,   SKIP,   SKIP,   SKIP,
  725.    SKIP,    SKIP,
  726.    /* First ISA */
  727.    0x1f0,
  728.    /* Space for MAX_PCI ports possibly reported by PCI_BIOS */
  729.    SKIP,    SKIP,   SKIP,   SKIP,   SKIP,   SKIP,   SKIP,   SKIP,
  730.    SKIP,    SKIP,   SKIP,   SKIP,   SKIP,   SKIP,   SKIP,   SKIP,
  731.    /* MAX_EISA ports */
  732.    0x1c88, 0x2c88, 0x3c88, 0x4c88, 0x5c88, 0x6c88, 0x7c88, 0x8c88,
  733.    0x9c88, 0xac88, 0xbc88, 0xcc88, 0xdc88, 0xec88, 0xfc88,
  734.    /* Other (MAX_ISA - 1) ports */
  735.    0x170,  0x230,  0x330,
  736.    /* End of list */
  737.    0x0
  738.    };
  739. #define HD(board) ((struct hostdata *) &sh[board]->hostdata)
  740. #define BN(board) (HD(board)->board_name)
  741. /* Device is Big Endian */
  742. #define H2DEV(x)   cpu_to_be32(x)
  743. #define DEV2H(x)   be32_to_cpu(x)
  744. #define H2DEV16(x) cpu_to_be16(x)
  745. #define DEV2H16(x) be16_to_cpu(x)
  746. /* But transfer orientation from the 16 bit data register is Little Endian */
  747. #define REG2H(x)   le16_to_cpu(x)
  748. static void do_interrupt_handler(int, void *, struct pt_regs *);
  749. static void flush_dev(Scsi_Device *, unsigned long, unsigned int, unsigned int);
  750. static int do_trace = FALSE;
  751. static int setup_done = FALSE;
  752. static int link_statistics;
  753. static int tag_mode = TAG_MIXED;
  754. static int ext_tran = FALSE;
  755. static int rev_scan = TRUE;
  756. static char *boot_options;
  757. #if defined(CONFIG_SCSI_EATA_TAGGED_QUEUE)
  758. static int tagged_comm = TRUE;
  759. #else
  760. static int tagged_comm = FALSE;
  761. #endif
  762. #if defined(CONFIG_SCSI_EATA_LINKED_COMMANDS)
  763. static int linked_comm = TRUE;
  764. #else
  765. static int linked_comm = FALSE;
  766. #endif
  767. #if defined(CONFIG_SCSI_EATA_MAX_TAGS)
  768. static int max_queue_depth = CONFIG_SCSI_EATA_MAX_TAGS;
  769. #else
  770. static int max_queue_depth = MAX_CMD_PER_LUN;
  771. #endif
  772. #if defined(CONFIG_ISA)
  773. static int isa_probe = TRUE;
  774. #else
  775. static int isa_probe = FALSE;
  776. #endif
  777. #if defined(CONFIG_EISA)
  778. static int eisa_probe = TRUE;
  779. #else
  780. static int eisa_probe = FALSE;
  781. #endif
  782. #if defined(CONFIG_PCI)
  783. static int pci_probe = TRUE;
  784. #else
  785. static int pci_probe = FALSE;
  786. #endif
  787. static void select_queue_depths(struct Scsi_Host *host, Scsi_Device *devlist) {
  788.    Scsi_Device *dev;
  789.    int j, ntag = 0, nuntag = 0, tqd, utqd;
  790.    j = ((struct hostdata *) host->hostdata)->board_number;
  791.    for(dev = devlist; dev; dev = dev->next) {
  792.       if (dev->host != host) continue;
  793.       if (TLDEV(dev->type) && (dev->tagged_supported || linked_comm))
  794.          ntag++;
  795.       else
  796.          nuntag++;
  797.       }
  798.    utqd = MAX_CMD_PER_LUN;
  799.    tqd = (host->can_queue - utqd * nuntag) / (ntag ? ntag : 1);
  800.    if (tqd > max_queue_depth) tqd = max_queue_depth;
  801.    if (tqd < MAX_CMD_PER_LUN) tqd = MAX_CMD_PER_LUN;
  802.    for(dev = devlist; dev; dev = dev->next) {
  803.       char *tag_suffix = "", *link_suffix = "";
  804.       if (dev->host != host) continue;
  805.       if (TLDEV(dev->type) && (dev->tagged_supported || linked_comm))
  806.          dev->queue_depth = tqd;
  807.       else
  808.          dev->queue_depth = utqd;
  809.       if (TLDEV(dev->type)) {
  810.          if (linked_comm && dev->queue_depth > 2)
  811.             link_suffix = ", sorted";
  812.          else
  813.             link_suffix = ", unsorted";
  814.          }
  815.       if (tagged_comm && dev->tagged_supported && TLDEV(dev->type)) {
  816.          dev->tagged_queue = 1;
  817.          dev->current_tag = 1;
  818.          }
  819.       if (dev->tagged_supported && TLDEV(dev->type) && dev->tagged_queue)
  820.          tag_suffix = ", soft-tagged";
  821.       else if (dev->tagged_supported && TLDEV(dev->type))
  822.          tag_suffix = ", tagged";
  823.       printk("%s: scsi%d, channel %d, id %d, lun %d, cmds/lun %d%s%s.n",
  824.              BN(j), host->host_no, dev->channel, dev->id, dev->lun,
  825.              dev->queue_depth, link_suffix, tag_suffix);
  826.       }
  827.    return;
  828. }
  829. static inline int wait_on_busy(unsigned long iobase, unsigned int loop) {
  830.    while (inb(iobase + REG_AUX_STATUS) & ABSY_ASSERTED) {
  831.       udelay(1L);
  832.       if (--loop == 0) return TRUE;
  833.       }
  834.    return FALSE;
  835. }
  836. static inline int do_dma(unsigned long iobase, unsigned long addr, unchar cmd) {
  837.    unsigned char *byaddr;
  838.    unsigned long devaddr;
  839.    if (wait_on_busy(iobase, (addr ? MAXLOOP * 100 : MAXLOOP))) return TRUE;
  840.    if (addr) {
  841.       devaddr = H2DEV(addr);
  842.       byaddr = (unsigned char *) &devaddr;
  843.       outb(byaddr[3], iobase + REG_LOW);
  844.       outb(byaddr[2], iobase + REG_LM);
  845.       outb(byaddr[1], iobase + REG_MID);
  846.       outb(byaddr[0], iobase + REG_MSB);
  847.       }
  848.    outb(cmd, iobase + REG_CMD);
  849.    return FALSE;
  850. }
  851. static inline int read_pio(unsigned long iobase, ushort *start, ushort *end) {
  852.    unsigned int loop = MAXLOOP;
  853.    ushort *p;
  854.    for (p = start; p <= end; p++) {
  855.       while (!(inb(iobase + REG_STATUS) & DRQ_ASSERTED)) {
  856.          udelay(1L);
  857.          if (--loop == 0) return TRUE;
  858.          }
  859.       loop = MAXLOOP;
  860.       *p = REG2H(inw(iobase));
  861.       }
  862.    return FALSE;
  863. }
  864. static inline struct pci_dev *get_pci_dev(unsigned long port_base) {
  865. #if defined(CONFIG_PCI)
  866.    unsigned int addr;
  867.    struct pci_dev *dev = NULL;
  868.    if (!pci_present()) return NULL;
  869.    while((dev = pci_find_class(PCI_CLASS_STORAGE_SCSI << 8, dev))) {
  870.       addr = pci_resource_start (dev, 0);
  871. #if defined(DEBUG_PCI_DETECT)
  872.       printk("%s: get_pci_dev, bus %d, devfn 0x%x, addr 0x%x.n",
  873.              driver_name, dev->bus->number, dev->devfn, addr);
  874. #endif
  875.       if (addr + PCI_BASE_ADDRESS_0 == port_base) return dev;
  876.       }
  877. #endif /* end CONFIG_PCI */
  878.    return NULL;
  879. }
  880. static void enable_pci_ports(void) {
  881. #if defined(CONFIG_PCI)
  882.    struct pci_dev *dev = NULL;
  883.    if (!pci_present()) return;
  884.    while((dev = pci_find_class(PCI_CLASS_STORAGE_SCSI << 8, dev))) {
  885. #if defined(DEBUG_PCI_DETECT)
  886.       printk("%s: enable_pci_ports, bus %d, devfn 0x%x.n",
  887.              driver_name, dev->bus->number, dev->devfn);
  888. #endif
  889.       if (pci_enable_device (dev))
  890.          printk("%s: warning, pci_enable_device failed, bus %d devfn 0x%x.n",
  891.                 driver_name, dev->bus->number, dev->devfn);
  892.       }
  893. #endif /* end CONFIG_PCI */
  894. }
  895. static inline int port_detect 
  896.       (unsigned long port_base, unsigned int j, Scsi_Host_Template *tpnt) {
  897.    unsigned char irq, dma_channel, subversion, i, is_pci = FALSE;
  898.    unsigned char protocol_rev;
  899.    struct eata_info info;
  900.    char *bus_type, dma_name[16], tag_type;
  901.    struct pci_dev *pdev;
  902.    /* Allowed DMA channels for ISA (0 indicates reserved) */
  903.    unsigned char dma_channel_table[4] = { 5, 6, 7, 0 };
  904.    char name[16];
  905.    sprintf(name, "%s%d", driver_name, j);
  906.    if(!request_region(port_base, REGION_SIZE, driver_name)) {
  907. #if defined(DEBUG_DETECT)
  908.       printk("%s: address 0x%03lx in use, skipping probe.n", name, port_base);
  909. #endif
  910.       return FALSE;
  911.       }
  912.    if (do_dma(port_base, 0, READ_CONFIG_PIO)) {
  913. #if defined(DEBUG_DETECT)
  914.       printk("%s: detect, do_dma failed at 0x%03lx.n", name, port_base);
  915. #endif
  916.       release_region(port_base, REGION_SIZE);
  917.       return FALSE;
  918.       }
  919.    /* Read the info structure */
  920.    if (read_pio(port_base, (ushort *)&info, (ushort *)&info.ipad[0])) {
  921. #if defined(DEBUG_DETECT)
  922.       printk("%s: detect, read_pio failed at 0x%03lx.n", name, port_base);
  923. #endif
  924.       release_region(port_base, REGION_SIZE);
  925.       return FALSE;
  926.       }
  927.    info.data_len = DEV2H(info.data_len);
  928.    info.sign = DEV2H(info.sign);
  929.    info.cp_pad_len = DEV2H16(info.cp_pad_len);
  930.    info.cp_len = DEV2H(info.cp_len);
  931.    info.sp_len = DEV2H(info.sp_len);
  932.    info.scatt_size = DEV2H16(info.scatt_size);
  933.    info.queue_size = DEV2H16(info.queue_size);
  934.    /* Check the controller "EATA" signature */
  935.    if (info.sign != EATA_SIG_BE) {
  936. #if defined(DEBUG_DETECT)
  937.       printk("%s: signature 0x%04x discarded.n", name, info.sign);
  938. #endif
  939.       release_region(port_base, REGION_SIZE);
  940.       return FALSE;
  941.       }
  942.    if (info.data_len < EATA_2_0A_SIZE) {
  943.       printk("%s: config structure size (%d bytes) too short, detaching.n",
  944.              name, info.data_len);
  945.       release_region(port_base, REGION_SIZE);
  946.       return FALSE;
  947.       }
  948.    else if (info.data_len == EATA_2_0A_SIZE)
  949.       protocol_rev = 'A';
  950.    else if (info.data_len == EATA_2_0B_SIZE)
  951.       protocol_rev = 'B';
  952.    else
  953.       protocol_rev = 'C';
  954.    if (protocol_rev != 'A' && info.forcaddr) {
  955.       printk("%s: warning, port address has been forced.n", name);
  956.       bus_type = "PCI";
  957.       is_pci = TRUE;
  958.       subversion = ESA;
  959.       }
  960.    else if (port_base > MAX_EISA_ADDR || (protocol_rev == 'C' && info.pci)) {
  961.       bus_type = "PCI";
  962.       is_pci = TRUE;
  963.       subversion = ESA;
  964.       }
  965.    else if (port_base >= MIN_EISA_ADDR || (protocol_rev == 'C' && info.eisa)) {
  966.       bus_type = "EISA";
  967.       subversion = ESA;
  968.       }
  969.    else if (protocol_rev == 'C' && !info.eisa && !info.pci) {
  970.       bus_type = "ISA";
  971.       subversion = ISA;
  972.       }
  973.    else if (port_base > MAX_ISA_ADDR) {
  974.       bus_type = "PCI";
  975.       is_pci = TRUE;
  976.       subversion = ESA;
  977.       }
  978.    else {
  979.       bus_type = "ISA";
  980.       subversion = ISA;
  981.       }
  982.    if (!info.haaval || info.ata) {
  983.       printk("%s: address 0x%03lx, unusable %s board (%d%d), detaching.n",
  984.              name, port_base, bus_type, info.haaval, info.ata);
  985.       release_region(port_base, REGION_SIZE);
  986.       return FALSE;
  987.       }
  988.    if (info.drqvld) {
  989.       if (subversion ==  ESA)
  990.          printk("%s: warning, weird %s board using DMA.n", name, bus_type);
  991.       subversion = ISA;
  992.       dma_channel = dma_channel_table[3 - info.drqx];
  993.       }
  994.    else {
  995.       if (subversion ==  ISA)
  996.          printk("%s: warning, weird %s board not using DMA.n", name, bus_type);
  997.       subversion = ESA;
  998.       dma_channel = NO_DMA;
  999.       }
  1000.    if (!info.dmasup)
  1001.       printk("%s: warning, DMA protocol support not asserted.n", name);
  1002.    irq = info.irq;
  1003.    if (subversion == ESA && !info.irq_tr)
  1004.       printk("%s: warning, LEVEL triggering is suggested for IRQ %u.n",
  1005.              name, irq);
  1006.    if (is_pci) {
  1007.       pdev = get_pci_dev(port_base);
  1008.       if (!pdev)
  1009.          printk("%s: warning, failed to get pci_dev structure.n", name);
  1010.       }
  1011.    else
  1012.       pdev = NULL;
  1013.    if (pdev && (irq != pdev->irq)) {
  1014.       printk("%s: IRQ %u mapped to IO-APIC IRQ %u.n", name, irq, pdev->irq);
  1015.       irq = pdev->irq;
  1016.       }
  1017.    /* Board detected, allocate its IRQ */
  1018.    if (request_irq(irq, do_interrupt_handler,
  1019.              SA_INTERRUPT | ((subversion == ESA) ? SA_SHIRQ : 0),
  1020.              driver_name, (void *) &sha[j])) {
  1021.       printk("%s: unable to allocate IRQ %u, detaching.n", name, irq);
  1022.       release_region(port_base, REGION_SIZE);
  1023.       return FALSE;
  1024.       }
  1025.    if (subversion == ISA && request_dma(dma_channel, driver_name)) {
  1026.       printk("%s: unable to allocate DMA channel %u, detaching.n",
  1027.              name, dma_channel);
  1028.       free_irq(irq, &sha[j]);
  1029.       release_region(port_base, REGION_SIZE);
  1030.       return FALSE;
  1031.       }
  1032. #if defined(FORCE_CONFIG)
  1033.    {
  1034.    struct eata_config *cf;
  1035.    dma_addr_t cf_dma_addr;
  1036.    cf = pci_alloc_consistent(pdev, sizeof(struct eata_config), &cf_dma_addr);
  1037.    if (!cf) {
  1038.       printk("%s: config, pci_alloc_consistent failed, detaching.n", name);
  1039.       release_region(port_base, REGION_SIZE);
  1040.       return FALSE;
  1041.       }
  1042.    /* Set board configuration */
  1043.    memset((char *)cf, 0, sizeof(struct eata_config));
  1044.    cf->len = (ushort) H2DEV16((ushort)510);
  1045.    cf->ocena = TRUE;
  1046.    if (do_dma(port_base, cf_dma_addr, SET_CONFIG_DMA)) {
  1047.       printk("%s: busy timeout sending configuration, detaching.n", name);
  1048.       pci_free_consistent(pdev, sizeof(struct eata_config), cf, cf_dma_addr);
  1049.       release_region(port_base, REGION_SIZE);
  1050.       return FALSE;
  1051.       }
  1052.    }
  1053. #endif
  1054.    sh[j] = scsi_register(tpnt, sizeof(struct hostdata));
  1055.    if (sh[j] == NULL) {
  1056.       printk("%s: unable to register host, detaching.n", name);
  1057.       free_irq(irq, &sha[j]);
  1058.       if (subversion == ISA) free_dma(dma_channel);
  1059.       release_region(port_base, REGION_SIZE);
  1060.       return FALSE;
  1061.       }
  1062.    sh[j]->io_port = port_base;
  1063.    sh[j]->unique_id = port_base;
  1064.    sh[j]->n_io_port = REGION_SIZE;
  1065.    sh[j]->dma_channel = dma_channel;
  1066.    sh[j]->irq = irq;
  1067.    sh[j]->sg_tablesize = (ushort) info.scatt_size;
  1068.    sh[j]->this_id = (ushort) info.host_addr[3];
  1069.    sh[j]->can_queue = (ushort) info.queue_size;
  1070.    sh[j]->cmd_per_lun = MAX_CMD_PER_LUN;
  1071.    sh[j]->select_queue_depths = select_queue_depths;
  1072.    memset(HD(j), 0, sizeof(struct hostdata));
  1073.    HD(j)->subversion = subversion;
  1074.    HD(j)->protocol_rev = protocol_rev;
  1075.    HD(j)->is_pci = is_pci;
  1076.    HD(j)->pdev = pdev;
  1077.    HD(j)->board_number = j;
  1078.    if (HD(j)->subversion == ESA)
  1079.       sh[j]->unchecked_isa_dma = FALSE;
  1080.    else {
  1081.       unsigned long flags;
  1082.       scsi_register_blocked_host(sh[j]);
  1083.       sh[j]->unchecked_isa_dma = TRUE;
  1084.       flags=claim_dma_lock();
  1085.       disable_dma(dma_channel);
  1086.       clear_dma_ff(dma_channel);
  1087.       set_dma_mode(dma_channel, DMA_MODE_CASCADE);
  1088.       enable_dma(dma_channel);
  1089.       release_dma_lock(flags);
  1090.       }
  1091.    strcpy(BN(j), name);
  1092.    /* DPT PM2012 does not allow to detect sg_tablesize correctly */
  1093.    if (sh[j]->sg_tablesize > MAX_SGLIST || sh[j]->sg_tablesize < 2) {
  1094.       printk("%s: detect, wrong n. of SG lists %d, fixed.n",
  1095.              BN(j), sh[j]->sg_tablesize);
  1096.       sh[j]->sg_tablesize = MAX_SGLIST;
  1097.       }
  1098.    /* DPT PM2012 does not allow to detect can_queue correctly */
  1099.    if (sh[j]->can_queue > MAX_MAILBOXES || sh[j]->can_queue  < 2) {
  1100.       printk("%s: detect, wrong n. of mbox %d, fixed.n",
  1101.              BN(j), sh[j]->can_queue);
  1102.       sh[j]->can_queue = MAX_MAILBOXES;
  1103.       }
  1104.    if (protocol_rev != 'A') {
  1105.       if (info.max_chan > 0 && info.max_chan < MAX_CHANNEL)
  1106.          sh[j]->max_channel = info.max_chan;
  1107.       if (info.max_id > 7 && info.max_id < MAX_TARGET)
  1108.          sh[j]->max_id = info.max_id + 1;
  1109.       if (info.large_sg && sh[j]->sg_tablesize == MAX_SGLIST)
  1110.          sh[j]->sg_tablesize = MAX_LARGE_SGLIST;
  1111.       }
  1112.    if (protocol_rev == 'C') {
  1113.       if (info.max_lun > 7 && info.max_lun < MAX_LUN)
  1114.          sh[j]->max_lun = info.max_lun + 1;
  1115.       }
  1116.    if (dma_channel == NO_DMA) sprintf(dma_name, "%s", "BMST");
  1117.    else                       sprintf(dma_name, "DMA %u", dma_channel);
  1118.    for (i = 0; i < sh[j]->can_queue; i++)
  1119.       HD(j)->cp[i].cp_dma_addr = pci_map_single(HD(j)->pdev,
  1120.             &HD(j)->cp[i], sizeof(struct mscp), PCI_DMA_BIDIRECTIONAL);
  1121.    for (i = 0; i < sh[j]->can_queue; i++)
  1122.       if (! ((&HD(j)->cp[i])->sglist = kmalloc(
  1123.             sh[j]->sg_tablesize * sizeof(struct sg_list),
  1124.             (sh[j]->unchecked_isa_dma ? GFP_DMA : 0) | GFP_ATOMIC))) {
  1125.          printk("%s: kmalloc SGlist failed, mbox %d, detaching.n", BN(j), i);
  1126.          eata2x_release(sh[j]);
  1127.          return FALSE;
  1128.          }
  1129.    if (! (HD(j)->sp_cpu_addr = pci_alloc_consistent(HD(j)->pdev,
  1130.          sizeof(struct mssp), &HD(j)->sp_dma_addr))) {
  1131.       printk("%s: pci_alloc_consistent failed, detaching.n", BN(j));
  1132.       eata2x_release(sh[j]);
  1133.       return FALSE;
  1134.       }
  1135.    if (max_queue_depth > MAX_TAGGED_CMD_PER_LUN)
  1136.        max_queue_depth = MAX_TAGGED_CMD_PER_LUN;
  1137.    if (max_queue_depth < MAX_CMD_PER_LUN) max_queue_depth = MAX_CMD_PER_LUN;
  1138.    if (tagged_comm) {
  1139.       if      (tag_mode == TAG_SIMPLE)  tag_type = '1';
  1140.       else if (tag_mode == TAG_HEAD)    tag_type = '2';
  1141.       else if (tag_mode == TAG_ORDERED) tag_type = '3';
  1142.       else                              tag_type = 'y';
  1143.       }
  1144.    else                                 tag_type = 'n';
  1145.    if (j == 0) {
  1146.       printk("EATA/DMA 2.0x: Copyright (C) 1994-2002 Dario Ballabio.n");
  1147.       printk("%s config options -> tc:%c, lc:%c, mq:%d, rs:%c, et:%c, "
  1148.              "ip:%c, ep:%c, pp:%c.n", driver_name, tag_type,
  1149.              YESNO(linked_comm), max_queue_depth, YESNO(rev_scan),
  1150.              YESNO(ext_tran), YESNO(isa_probe), YESNO(eisa_probe),
  1151.              YESNO(pci_probe));
  1152.       }
  1153.    printk("%s: 2.0%c, %s 0x%03lx, IRQ %u, %s, SG %d, MB %d.n",
  1154.           BN(j), HD(j)->protocol_rev, bus_type, (unsigned long)sh[j]->io_port,
  1155.           sh[j]->irq, dma_name, sh[j]->sg_tablesize, sh[j]->can_queue);
  1156.    if (sh[j]->max_id > 8 || sh[j]->max_lun > 8)
  1157.       printk("%s: wide SCSI support enabled, max_id %u, max_lun %u.n",
  1158.              BN(j), sh[j]->max_id, sh[j]->max_lun);
  1159.    for (i = 0; i <= sh[j]->max_channel; i++)
  1160.       printk("%s: SCSI channel %u enabled, host target ID %d.n",
  1161.              BN(j), i, info.host_addr[3 - i]);
  1162. #if defined(DEBUG_DETECT)
  1163.    printk("%s: Vers. 0x%x, ocs %u, tar %u, trnxfr %u, more %u, SYNC 0x%x, "
  1164.           "sec. %u, infol %d, cpl %d spl %d.n", name, info.version,
  1165.           info.ocsena, info.tarsup, info.trnxfr, info.morsup, info.sync,
  1166.           info.second, info.data_len, info.cp_len,
  1167.           info.sp_len);
  1168.    if (protocol_rev == 'B' || protocol_rev == 'C')
  1169.       printk("%s: isaena %u, forcaddr %u, max_id %u, max_chan %u, "
  1170.              "large_sg %u, res1 %u.n", name, info.isaena, info.forcaddr,
  1171.              info.max_id, info.max_chan, info.large_sg, info.res1);
  1172.    if (protocol_rev == 'C')
  1173.       printk("%s: max_lun %u, m1 %u, idquest %u, pci %u, eisa %u, "
  1174.              "raidnum %u.n", name, info.max_lun, info.m1, info.idquest,
  1175.              info.pci, info.eisa, info.raidnum);
  1176. #endif
  1177.    if (HD(j)->pdev) {
  1178.       pci_set_master(HD(j)->pdev);
  1179.       if (pci_set_dma_mask(HD(j)->pdev, 0xffffffff))
  1180.          printk("%s: warning, pci_set_dma_mask failed.n", BN(j));
  1181.       }
  1182.    return TRUE;
  1183. }
  1184. static void internal_setup(char *str, int *ints) {
  1185.    int i, argc = ints[0];
  1186.    char *cur = str, *pc;
  1187.    if (argc > 0) {
  1188.       if (argc > MAX_INT_PARAM) argc = MAX_INT_PARAM;
  1189.       for (i = 0; i < argc; i++) io_port[i] = ints[i + 1];
  1190.       io_port[i] = 0;
  1191.       setup_done = TRUE;
  1192.       }
  1193.    while (cur && (pc = strchr(cur, ':'))) {
  1194.       int val = 0, c = *++pc;
  1195.       if (c == 'n' || c == 'N') val = FALSE;
  1196.       else if (c == 'y' || c == 'Y') val = TRUE;
  1197.       else val = (int) simple_strtoul(pc, NULL, 0);
  1198.       if (!strncmp(cur, "lc:", 3)) linked_comm = val;
  1199.       else if (!strncmp(cur, "tc:", 3)) tagged_comm = val;
  1200.       else if (!strncmp(cur, "tm:", 3)) tag_mode = val;
  1201.       else if (!strncmp(cur, "mq:", 3))  max_queue_depth = val;
  1202.       else if (!strncmp(cur, "ls:", 3))  link_statistics = val;
  1203.       else if (!strncmp(cur, "et:", 3))  ext_tran = val;
  1204.       else if (!strncmp(cur, "rs:", 3))  rev_scan = val;
  1205.       else if (!strncmp(cur, "ip:", 3))  isa_probe = val;
  1206.       else if (!strncmp(cur, "ep:", 3))  eisa_probe = val;
  1207.       else if (!strncmp(cur, "pp:", 3))  pci_probe = val;
  1208.       if ((cur = strchr(cur, ','))) ++cur;
  1209.       }
  1210.    return;
  1211. }
  1212. static int option_setup(char *str) {
  1213.    int ints[MAX_INT_PARAM];
  1214.    char *cur = str;
  1215.    int i = 1;
  1216.    while (cur && isdigit(*cur) && i <= MAX_INT_PARAM) {
  1217.       ints[i++] = simple_strtoul(cur, NULL, 0);
  1218.       if ((cur = strchr(cur, ',')) != NULL) cur++;
  1219.    }
  1220.    ints[0] = i - 1;
  1221.    internal_setup(cur, ints);
  1222.    return 1;
  1223. }
  1224. static void add_pci_ports(void) {
  1225. #if defined(CONFIG_PCI)
  1226.    unsigned int addr, k;
  1227.    struct pci_dev *dev = NULL;
  1228.    if (!pci_present()) return;
  1229.    for (k = 0; k < MAX_PCI; k++) {
  1230.       if (!(dev = pci_find_class(PCI_CLASS_STORAGE_SCSI << 8, dev))) break;
  1231.       if (pci_enable_device (dev)) {
  1232. #if defined(DEBUG_PCI_DETECT)
  1233.          printk("%s: detect, bus %d, devfn 0x%x, pci_enable_device failed.n",
  1234.                 driver_name, dev->bus->number, dev->devfn);
  1235. #endif
  1236.          continue;
  1237.          }
  1238.       addr = pci_resource_start (dev, 0);
  1239. #if defined(DEBUG_PCI_DETECT)
  1240.       printk("%s: detect, seq. %d, bus %d, devfn 0x%x, addr 0x%x.n",
  1241.              driver_name, k, dev->bus->number, dev->devfn, addr);
  1242. #endif
  1243.       /* Order addresses according to rev_scan value */
  1244.       io_port[MAX_INT_PARAM + (rev_scan ? (MAX_PCI - k) : (1 + k))] =
  1245.              addr + PCI_BASE_ADDRESS_0;
  1246.       }
  1247. #endif /* end CONFIG_PCI */
  1248.    return;
  1249. }
  1250. int eata2x_detect(Scsi_Host_Template *tpnt) {
  1251.    unsigned int j = 0, k;
  1252.    tpnt->proc_name = "eata2x";
  1253.    if(boot_options) option_setup(boot_options);
  1254. #if defined(MODULE)
  1255.    /* io_port could have been modified when loading as a module */
  1256.    if(io_port[0] != SKIP) {
  1257.       setup_done = TRUE;
  1258.       io_port[MAX_INT_PARAM] = 0;
  1259.       }
  1260. #endif
  1261.    for (k = 0; k < MAX_BOARDS + 1; k++) sh[k] = NULL;
  1262.    for (k = MAX_INT_PARAM; io_port[k]; k++)
  1263.       if (io_port[k] == SKIP) continue;
  1264.       else if (io_port[k] <= MAX_ISA_ADDR) {
  1265.          if (!isa_probe) io_port[k] = SKIP;
  1266.          }
  1267.       else if (io_port[k] >= MIN_EISA_ADDR && io_port[k] <= MAX_EISA_ADDR) {
  1268.          if (!eisa_probe) io_port[k] = SKIP;
  1269.          }
  1270.    if (pci_probe) {
  1271.       if (!setup_done) add_pci_ports();
  1272.       else          enable_pci_ports();
  1273.       }
  1274.    for (k = 0; io_port[k]; k++) {
  1275.       if (io_port[k] == SKIP) continue;
  1276.       if (j < MAX_BOARDS && port_detect(io_port[k], j, tpnt)) j++;
  1277.       }
  1278.    num_boards = j;
  1279.    return j;
  1280. }
  1281. static inline void map_dma(unsigned int i, unsigned int j) {
  1282.    unsigned int k, count, pci_dir;
  1283.    struct scatterlist *sgpnt;
  1284.    struct mscp *cpp;
  1285.    Scsi_Cmnd *SCpnt;
  1286.    cpp = &HD(j)->cp[i]; SCpnt = cpp->SCpnt;
  1287.    pci_dir = scsi_to_pci_dma_dir(SCpnt->sc_data_direction);
  1288.    if (SCpnt->sense_buffer)
  1289.       cpp->sense_addr = H2DEV(pci_map_single(HD(j)->pdev, SCpnt->sense_buffer,
  1290.                            sizeof SCpnt->sense_buffer, PCI_DMA_FROMDEVICE));
  1291.    cpp->sense_len = sizeof SCpnt->sense_buffer;
  1292.    if (!SCpnt->use_sg) {
  1293.       /* If we get here with PCI_DMA_NONE, pci_map_single triggers a BUG() */
  1294.       if (!SCpnt->request_bufflen) pci_dir = PCI_DMA_BIDIRECTIONAL;
  1295.       if (SCpnt->request_buffer)
  1296.          cpp->data_address = H2DEV(pci_map_single(HD(j)->pdev,
  1297.                   SCpnt->request_buffer, SCpnt->request_bufflen, pci_dir));
  1298.       cpp->data_len = H2DEV(SCpnt->request_bufflen);
  1299.       return;
  1300.       }
  1301.    sgpnt = (struct scatterlist *) SCpnt->request_buffer;
  1302.    count = pci_map_sg(HD(j)->pdev, sgpnt, SCpnt->use_sg, pci_dir);
  1303.    for (k = 0; k < count; k++) {
  1304.       cpp->sglist[k].address = H2DEV(sg_dma_address(&sgpnt[k]));
  1305.       cpp->sglist[k].num_bytes = H2DEV(sg_dma_len(&sgpnt[k]));
  1306.       }
  1307.    cpp->sg = TRUE;
  1308.    cpp->data_address = H2DEV(pci_map_single(HD(j)->pdev, cpp->sglist,
  1309.                              SCpnt->use_sg * sizeof(struct sg_list), pci_dir));
  1310.    cpp->data_len = H2DEV((SCpnt->use_sg * sizeof(struct sg_list)));
  1311. }
  1312. static void unmap_dma(unsigned int i, unsigned int j) {
  1313.    unsigned int pci_dir;
  1314.    struct mscp *cpp;
  1315.    Scsi_Cmnd *SCpnt;
  1316.    cpp = &HD(j)->cp[i]; SCpnt = cpp->SCpnt;
  1317.    pci_dir = scsi_to_pci_dma_dir(SCpnt->sc_data_direction);
  1318.    if (DEV2H(cpp->sense_addr))
  1319.       pci_unmap_single(HD(j)->pdev, DEV2H(cpp->sense_addr),
  1320.                        DEV2H(cpp->sense_len), PCI_DMA_FROMDEVICE);
  1321.    if (SCpnt->use_sg)
  1322.       pci_unmap_sg(HD(j)->pdev, SCpnt->request_buffer, SCpnt->use_sg, pci_dir);
  1323.    if (!DEV2H(cpp->data_len)) pci_dir = PCI_DMA_BIDIRECTIONAL;
  1324.    if (DEV2H(cpp->data_address))
  1325.       pci_unmap_single(HD(j)->pdev, DEV2H(cpp->data_address),
  1326.                        DEV2H(cpp->data_len), pci_dir);
  1327. }
  1328. static void sync_dma(unsigned int i, unsigned int j) {
  1329.    unsigned int pci_dir;
  1330.    struct mscp *cpp;
  1331.    Scsi_Cmnd *SCpnt;
  1332.    cpp = &HD(j)->cp[i]; SCpnt = cpp->SCpnt;
  1333.    pci_dir = scsi_to_pci_dma_dir(SCpnt->sc_data_direction);
  1334.    if (DEV2H(cpp->sense_addr))
  1335.       pci_dma_sync_single(HD(j)->pdev, DEV2H(cpp->sense_addr),
  1336.                           DEV2H(cpp->sense_len), PCI_DMA_FROMDEVICE);
  1337.    if (SCpnt->use_sg)
  1338.       pci_dma_sync_sg(HD(j)->pdev, SCpnt->request_buffer,
  1339.                          SCpnt->use_sg, pci_dir);
  1340.    if (!DEV2H(cpp->data_len)) pci_dir = PCI_DMA_BIDIRECTIONAL;
  1341.    if (DEV2H(cpp->data_address))
  1342.       pci_dma_sync_single(HD(j)->pdev, DEV2H(cpp->data_address),
  1343.                        DEV2H(cpp->data_len), pci_dir);
  1344. }
  1345. static inline void scsi_to_dev_dir(unsigned int i, unsigned int j) {
  1346.    unsigned int k;
  1347.    static const unsigned char data_out_cmds[] = {
  1348.       0x0a, 0x2a, 0x15, 0x55, 0x04, 0x07, 0x18, 0x1d, 0x24, 0x2e,
  1349.       0x30, 0x31, 0x32, 0x38, 0x39, 0x3a, 0x3b, 0x3d, 0x3f, 0x40,
  1350.       0x41, 0x4c, 0xaa, 0xae, 0xb0, 0xb1, 0xb2, 0xb6, 0xea, 0x1b, 0x5d
  1351.       };
  1352.    static const unsigned char data_none_cmds[] = {
  1353.       0x01, 0x0b, 0x10, 0x11, 0x13, 0x16, 0x17, 0x19, 0x2b, 0x1e,
  1354.       0x2c, 0xac, 0x2f, 0xaf, 0x33, 0xb3, 0x35, 0x36, 0x45, 0x47,
  1355.       0x48, 0x49, 0xa9, 0x4b, 0xa5, 0xa6, 0xb5, 0x00
  1356.       };
  1357.    struct mscp *cpp;
  1358.    Scsi_Cmnd *SCpnt;
  1359.    cpp = &HD(j)->cp[i]; SCpnt = cpp->SCpnt;
  1360.    if (SCpnt->sc_data_direction == SCSI_DATA_READ) {
  1361.       cpp->din  = TRUE;
  1362.       cpp->dout = FALSE;
  1363.       return;
  1364.       }
  1365.    else if (SCpnt->sc_data_direction == SCSI_DATA_WRITE) {
  1366.       cpp->din  = FALSE;
  1367.       cpp->dout = TRUE;
  1368.       return;
  1369.       }
  1370.    else if (SCpnt->sc_data_direction == SCSI_DATA_NONE) {
  1371.       cpp->din  = FALSE;
  1372.       cpp->dout = FALSE;
  1373.       return;
  1374.       }
  1375.    if (SCpnt->sc_data_direction != SCSI_DATA_UNKNOWN)
  1376.       panic("%s: qcomm, invalid SCpnt->sc_data_direction.n", BN(j));
  1377.    for (k = 0; k < ARRAY_SIZE(data_out_cmds); k++)
  1378.       if (SCpnt->cmnd[0] == data_out_cmds[k]) {
  1379.          cpp->dout = TRUE;
  1380.          break;
  1381.          }
  1382.    if ((cpp->din = !cpp->dout))
  1383.       for (k = 0; k < ARRAY_SIZE(data_none_cmds); k++)
  1384.          if (SCpnt->cmnd[0] == data_none_cmds[k]) {
  1385.             cpp->din = FALSE;
  1386.             break;
  1387.             }
  1388. }
  1389. static inline int do_qcomm(Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *)) {
  1390.    unsigned int i, j, k;
  1391.    struct mscp *cpp;
  1392.    /* j is the board number */
  1393.    j = ((struct hostdata *) SCpnt->host->hostdata)->board_number;
  1394.    if (SCpnt->host_scribble)
  1395.       panic("%s: qcomm, pid %ld, SCpnt %p already active.n",
  1396.             BN(j), SCpnt->pid, SCpnt);
  1397.    /* i is the mailbox number, look for the first free mailbox
  1398.       starting from last_cp_used */
  1399.    i = HD(j)->last_cp_used + 1;
  1400.    for (k = 0; k < sh[j]->can_queue; k++, i++) {
  1401.       if (i >= sh[j]->can_queue) i = 0;
  1402.       if (HD(j)->cp_stat[i] == FREE) {
  1403.          HD(j)->last_cp_used = i;
  1404.          break;
  1405.          }
  1406.       }
  1407.    if (k == sh[j]->can_queue) {
  1408.       printk("%s: qcomm, no free mailbox.n", BN(j));
  1409.       return 1;
  1410.       }
  1411.    /* Set pointer to control packet structure */
  1412.    cpp = &HD(j)->cp[i];
  1413.    memset(cpp, 0, sizeof(struct mscp) - CP_TAIL_SIZE);
  1414.    /* Set pointer to status packet structure, Big Endian format */
  1415.    cpp->sp_dma_addr = H2DEV(HD(j)->sp_dma_addr);
  1416.    SCpnt->scsi_done = done;
  1417.    cpp->cpp_index = i;
  1418.    SCpnt->host_scribble = (unsigned char *) &cpp->cpp_index;
  1419.    if (do_trace) printk("%s: qcomm, mbox %d, target %d.%d:%d, pid %ld.n",
  1420.                         BN(j), i, SCpnt->channel, SCpnt->target,
  1421.                         SCpnt->lun, SCpnt->pid);
  1422.    cpp->reqsen = TRUE;
  1423.    cpp->dispri = TRUE;
  1424. #if 0
  1425.    if (SCpnt->device->type == TYPE_TAPE) cpp->hbaci = TRUE;
  1426. #endif
  1427.    cpp->one = TRUE;
  1428.    cpp->channel = SCpnt->channel;
  1429.    cpp->target = SCpnt->target;
  1430.    cpp->lun = SCpnt->lun;
  1431.    cpp->SCpnt = SCpnt;
  1432.    memcpy(cpp->cdb, SCpnt->cmnd, SCpnt->cmd_len);
  1433.    /* Use data transfer direction SCpnt->sc_data_direction */
  1434.    scsi_to_dev_dir(i, j);
  1435.    /* Map DMA buffers and SG list */
  1436.    map_dma(i, j);
  1437.    if (SCpnt->device->tagged_queue) {
  1438.       if (HD(j)->target_redo[SCpnt->target][SCpnt->channel] ||
  1439.             HD(j)->target_to[SCpnt->target][SCpnt->channel])
  1440.          cpp->mess[0] = ORDERED_QUEUE_TAG;
  1441.       else if (tag_mode == TAG_SIMPLE)  cpp->mess[0] = SIMPLE_QUEUE_TAG;
  1442.       else if (tag_mode == TAG_HEAD)    cpp->mess[0] = HEAD_OF_QUEUE_TAG;
  1443.       else if (tag_mode == TAG_ORDERED) cpp->mess[0] = ORDERED_QUEUE_TAG;
  1444.       else if (SCpnt->device->current_tag == 0)
  1445.          cpp->mess[0] = ORDERED_QUEUE_TAG;
  1446.       else if (SCpnt->device->current_tag == 1)
  1447.          cpp->mess[0] = HEAD_OF_QUEUE_TAG;
  1448.       else
  1449.          cpp->mess[0] = SIMPLE_QUEUE_TAG;
  1450.       cpp->mess[1] = SCpnt->device->current_tag++;
  1451.       }
  1452.    if (linked_comm && SCpnt->device->queue_depth > 2
  1453.                                      && TLDEV(SCpnt->device->type)) {
  1454.       HD(j)->cp_stat[i] = READY;
  1455.       flush_dev(SCpnt->device, SCpnt->request.sector, j, FALSE);
  1456.       return 0;
  1457.       }
  1458.    /* Send control packet to the board */
  1459.    if (do_dma(sh[j]->io_port, cpp->cp_dma_addr, SEND_CP_DMA)) {
  1460.       unmap_dma(i, j);
  1461.       SCpnt->host_scribble = NULL;
  1462.       printk("%s: qcomm, target %d.%d:%d, pid %ld, adapter busy.n",
  1463.              BN(j), SCpnt->channel, SCpnt->target, SCpnt->lun, SCpnt->pid);
  1464.       return 1;
  1465.       }
  1466.    HD(j)->cp_stat[i] = IN_USE;
  1467.    return 0;
  1468. }
  1469. int eata2x_queuecommand(Scsi_Cmnd *SCpnt, void (*done)(Scsi_Cmnd *)) {
  1470.    int rtn;
  1471.    rtn = do_qcomm(SCpnt, done);
  1472.    return rtn;
  1473. }
  1474. static inline int do_abort(Scsi_Cmnd *SCarg) {
  1475.    unsigned int i, j;
  1476.    j = ((struct hostdata *) SCarg->host->hostdata)->board_number;
  1477.    if (SCarg->host_scribble == NULL) {
  1478.       printk("%s: abort, target %d.%d:%d, pid %ld inactive.n",
  1479.              BN(j), SCarg->channel, SCarg->target, SCarg->lun, SCarg->pid);
  1480.       return SUCCESS;
  1481.       }
  1482.    i = *(unsigned int *)SCarg->host_scribble;
  1483.    printk("%s: abort, mbox %d, target %d.%d:%d, pid %ld.n",
  1484.           BN(j), i, SCarg->channel, SCarg->target, SCarg->lun, SCarg->pid);
  1485.    if (i >= sh[j]->can_queue)
  1486.       panic("%s: abort, invalid SCarg->host_scribble.n", BN(j));
  1487.    if (wait_on_busy(sh[j]->io_port, MAXLOOP)) {
  1488.       printk("%s: abort, timeout error.n", BN(j));
  1489.       return FAILED;
  1490.       }
  1491.    if (HD(j)->cp_stat[i] == FREE) {
  1492.       printk("%s: abort, mbox %d is free.n", BN(j), i);
  1493.       return SUCCESS;
  1494.       }
  1495.    if (HD(j)->cp_stat[i] == IN_USE) {
  1496.       printk("%s: abort, mbox %d is in use.n", BN(j), i);
  1497.       if (SCarg != HD(j)->cp[i].SCpnt)
  1498.          panic("%s: abort, mbox %d, SCarg %p, cp SCpnt %p.n",
  1499.                BN(j), i, SCarg, HD(j)->cp[i].SCpnt);
  1500.       if (inb(sh[j]->io_port + REG_AUX_STATUS) & IRQ_ASSERTED)
  1501.          printk("%s: abort, mbox %d, interrupt pending.n", BN(j), i);
  1502.       if (SCarg->eh_state == SCSI_STATE_TIMEOUT) {
  1503.          unmap_dma(i, j);
  1504.          SCarg->host_scribble = NULL;
  1505.          HD(j)->cp_stat[i] = FREE;
  1506.          printk("%s, abort, mbox %d, eh_state timeout, pid %ld.n",
  1507.                 BN(j), i, SCarg->pid);
  1508.          return SUCCESS;
  1509.          }
  1510.       return FAILED;
  1511.       }
  1512.    if (HD(j)->cp_stat[i] == IN_RESET) {
  1513.       printk("%s: abort, mbox %d is in reset.n", BN(j), i);
  1514.       return FAILED;
  1515.       }
  1516.    if (HD(j)->cp_stat[i] == LOCKED) {
  1517.       printk("%s: abort, mbox %d is locked.n", BN(j), i);
  1518.       return SUCCESS;
  1519.       }
  1520.    if (HD(j)->cp_stat[i] == READY || HD(j)->cp_stat[i] == ABORTING) {
  1521.       unmap_dma(i, j);
  1522.       SCarg->result = DID_ABORT << 16;
  1523.       SCarg->host_scribble = NULL;
  1524.       HD(j)->cp_stat[i] = FREE;
  1525.       printk("%s, abort, mbox %d ready, DID_ABORT, pid %ld done.n",
  1526.              BN(j), i, SCarg->pid);
  1527.       SCarg->scsi_done(SCarg);
  1528.       return SUCCESS;
  1529.       }
  1530.    panic("%s: abort, mbox %d, invalid cp_stat.n", BN(j), i);
  1531. }
  1532. int eata2x_abort(Scsi_Cmnd *SCarg) {
  1533.    return do_abort(SCarg);
  1534. }
  1535. static inline int do_reset(Scsi_Cmnd *SCarg) {
  1536.    unsigned int i, j, time, k, c, limit = 0;
  1537.    int arg_done = FALSE;
  1538.    Scsi_Cmnd *SCpnt;
  1539.    j = ((struct hostdata *) SCarg->host->hostdata)->board_number;
  1540.    printk("%s: reset, enter, target %d.%d:%d, pid %ld.n",
  1541.           BN(j), SCarg->channel, SCarg->target, SCarg->lun, SCarg->pid);
  1542.    if (SCarg->host_scribble == NULL)
  1543.       printk("%s: reset, pid %ld inactive.n", BN(j), SCarg->pid);
  1544.    if (HD(j)->in_reset) {
  1545.       printk("%s: reset, exit, already in reset.n", BN(j));
  1546.       return FAILED;
  1547.       }
  1548.    if (wait_on_busy(sh[j]->io_port, MAXLOOP)) {
  1549.       printk("%s: reset, exit, timeout error.n", BN(j));
  1550.       return FAILED;
  1551.       }
  1552.    HD(j)->retries = 0;
  1553.    for (c = 0; c <= sh[j]->max_channel; c++)
  1554.       for (k = 0; k < sh[j]->max_id; k++) {
  1555.          HD(j)->target_redo[k][c] = TRUE;
  1556.          HD(j)->target_to[k][c] = 0;
  1557.          }
  1558.    for (i = 0; i < sh[j]->can_queue; i++) {
  1559.       if (HD(j)->cp_stat[i] == FREE) continue;
  1560.       if (HD(j)->cp_stat[i] == LOCKED) {
  1561.          HD(j)->cp_stat[i] = FREE;
  1562.          printk("%s: reset, locked mbox %d forced free.n", BN(j), i);
  1563.          continue;
  1564.          }
  1565.       if (!(SCpnt = HD(j)->cp[i].SCpnt))
  1566.          panic("%s: reset, mbox %d, SCpnt == NULL.n", BN(j), i);
  1567.       if (HD(j)->cp_stat[i] == READY || HD(j)->cp_stat[i] == ABORTING) {
  1568.          HD(j)->cp_stat[i] = ABORTING;
  1569.          printk("%s: reset, mbox %d aborting, pid %ld.n",
  1570.                 BN(j), i, SCpnt->pid);
  1571.          }
  1572.       else {
  1573.          HD(j)->cp_stat[i] = IN_RESET;
  1574.          printk("%s: reset, mbox %d in reset, pid %ld.n",
  1575.                 BN(j), i, SCpnt->pid);
  1576.          }
  1577.       if (SCpnt->host_scribble == NULL)
  1578.          panic("%s: reset, mbox %d, garbled SCpnt.n", BN(j), i);
  1579.       if (*(unsigned int *)SCpnt->host_scribble != i)
  1580.          panic("%s: reset, mbox %d, index mismatch.n", BN(j), i);
  1581.       if (SCpnt->scsi_done == NULL)
  1582.          panic("%s: reset, mbox %d, SCpnt->scsi_done == NULL.n", BN(j), i);
  1583.       if (SCpnt == SCarg) arg_done = TRUE;
  1584.       }
  1585.    if (do_dma(sh[j]->io_port, 0, RESET_PIO)) {
  1586.       printk("%s: reset, cannot reset, timeout error.n", BN(j));
  1587.       return FAILED;
  1588.       }
  1589.    printk("%s: reset, board reset done, enabling interrupts.n", BN(j));
  1590. #if defined(DEBUG_RESET)
  1591.    do_trace = TRUE;
  1592. #endif
  1593.    HD(j)->in_reset = TRUE;
  1594.    spin_unlock_irq(&io_request_lock);
  1595.    time = jiffies;
  1596.    while ((jiffies - time) < (10 * HZ) && limit++ < 200000) udelay(100L);
  1597.    spin_lock_irq(&io_request_lock);
  1598.    printk("%s: reset, interrupts disabled, loops %d.n", BN(j), limit);
  1599.    for (i = 0; i < sh[j]->can_queue; i++) {
  1600.       if (HD(j)->cp_stat[i] == IN_RESET) {
  1601.          SCpnt = HD(j)->cp[i].SCpnt;
  1602.          unmap_dma(i, j);
  1603.          SCpnt->result = DID_RESET << 16;
  1604.          SCpnt->host_scribble = NULL;
  1605.          /* This mailbox is still waiting for its interrupt */
  1606.          HD(j)->cp_stat[i] = LOCKED;
  1607.          printk("%s, reset, mbox %d locked, DID_RESET, pid %ld done.n",
  1608.                 BN(j), i, SCpnt->pid);
  1609.          }
  1610.       else if (HD(j)->cp_stat[i] == ABORTING) {
  1611.          SCpnt = HD(j)->cp[i].SCpnt;
  1612.          unmap_dma(i, j);
  1613.          SCpnt->result = DID_RESET << 16;
  1614.          SCpnt->host_scribble = NULL;
  1615.          /* This mailbox was never queued to the adapter */
  1616.          HD(j)->cp_stat[i] = FREE;
  1617.          printk("%s, reset, mbox %d aborting, DID_RESET, pid %ld done.n",
  1618.                 BN(j), i, SCpnt->pid);
  1619.          }
  1620.       else
  1621.          /* Any other mailbox has already been set free by interrupt */
  1622.          continue;
  1623.       SCpnt->scsi_done(SCpnt);
  1624.       }
  1625.    HD(j)->in_reset = FALSE;
  1626.    do_trace = FALSE;
  1627.    if (arg_done) printk("%s: reset, exit, pid %ld done.n", BN(j), SCarg->pid);
  1628.    else          printk("%s: reset, exit.n", BN(j));
  1629.    return SUCCESS;
  1630. }
  1631. int eata2x_reset(Scsi_Cmnd *SCarg) {
  1632.    return do_reset(SCarg);
  1633. }
  1634. int eata2x_biosparam(Disk *disk, kdev_t dev, int *dkinfo) {
  1635.    int size = disk->capacity;
  1636.    if (ext_tran || (scsicam_bios_param(disk, dev, dkinfo) < 0)) {
  1637.       dkinfo[0] = 255;
  1638.       dkinfo[1] = 63;
  1639.       dkinfo[2] = size / (dkinfo[0] * dkinfo[1]);
  1640.       }
  1641. #if defined (DEBUG_GEOMETRY)
  1642.    printk ("%s: biosparam, head=%d, sec=%d, cyl=%d.n", driver_name,
  1643.            dkinfo[0], dkinfo[1], dkinfo[2]);
  1644. #endif
  1645.    return FALSE;
  1646. }
  1647. static void sort(unsigned long sk[], unsigned int da[], unsigned int n,
  1648.                  unsigned int rev) {
  1649.    unsigned int i, j, k, y;
  1650.    unsigned long x;
  1651.    for (i = 0; i < n - 1; i++) {
  1652.       k = i;
  1653.       for (j = k + 1; j < n; j++)
  1654.          if (rev) {
  1655.             if (sk[j] > sk[k]) k = j;
  1656.             }
  1657.          else {
  1658.             if (sk[j] < sk[k]) k = j;
  1659.             }
  1660.       if (k != i) {
  1661.          x = sk[k]; sk[k] = sk[i]; sk[i] = x;
  1662.          y = da[k]; da[k] = da[i]; da[i] = y;
  1663.          }
  1664.       }
  1665.    return;
  1666.    }
  1667. static inline int reorder(unsigned int j, unsigned long cursec,
  1668.                  unsigned int ihdlr, unsigned int il[], unsigned int n_ready) {
  1669.    Scsi_Cmnd *SCpnt;
  1670.    struct mscp *cpp;
  1671.    unsigned int k, n;
  1672.    unsigned int rev = FALSE, s = TRUE, r = TRUE;
  1673.    unsigned int input_only = TRUE, overlap = FALSE;
  1674.    unsigned long sl[n_ready], pl[n_ready], ll[n_ready];
  1675.    unsigned long maxsec = 0, minsec = ULONG_MAX, seek = 0, iseek = 0;
  1676.    unsigned long ioseek = 0;
  1677.    static unsigned int flushcount = 0, batchcount = 0, sortcount = 0;
  1678.    static unsigned int readycount = 0, ovlcount = 0, inputcount = 0;
  1679.    static unsigned int readysorted = 0, revcount = 0;
  1680.    static unsigned long seeksorted = 0, seeknosort = 0;
  1681.    if (link_statistics && !(++flushcount % link_statistics))
  1682.       printk("fc %d bc %d ic %d oc %d rc %d rs %d sc %d re %d"
  1683.              " av %ldK as %ldK.n", flushcount, batchcount, inputcount,
  1684.              ovlcount, readycount, readysorted, sortcount, revcount,
  1685.              seeknosort / (readycount + 1),
  1686.              seeksorted / (readycount + 1));
  1687.    if (n_ready <= 1) return FALSE;
  1688.    for (n = 0; n < n_ready; n++) {
  1689.       k = il[n]; cpp = &HD(j)->cp[k]; SCpnt = cpp->SCpnt;
  1690.       if (!cpp->din) input_only = FALSE;
  1691.       if (SCpnt->request.sector < minsec) minsec = SCpnt->request.sector;
  1692.       if (SCpnt->request.sector > maxsec) maxsec = SCpnt->request.sector;
  1693.       sl[n] = SCpnt->request.sector;
  1694.       ioseek += SCpnt->request.nr_sectors;
  1695.       if (!n) continue;
  1696.       if (sl[n] < sl[n - 1]) s = FALSE;
  1697.       if (sl[n] > sl[n - 1]) r = FALSE;
  1698.       if (link_statistics) {
  1699.          if (sl[n] > sl[n - 1])
  1700.             seek += sl[n] - sl[n - 1];
  1701.          else
  1702.             seek += sl[n - 1] - sl[n];
  1703.          }
  1704.       }
  1705.    if (link_statistics) {
  1706.       if (cursec > sl[0]) seek += cursec - sl[0]; else seek += sl[0] - cursec;
  1707.       }
  1708.    if (cursec > ((maxsec + minsec) / 2)) rev = TRUE;
  1709.    if (ioseek > ((maxsec - minsec) / 2)) rev = FALSE;
  1710.    if (!((rev && r) || (!rev && s))) sort(sl, il, n_ready, rev);
  1711.    if (!input_only) for (n = 0; n < n_ready; n++) {
  1712.       k = il[n]; cpp = &HD(j)->cp[k]; SCpnt = cpp->SCpnt;
  1713.       ll[n] = SCpnt->request.nr_sectors; pl[n] = SCpnt->pid;
  1714.       if (!n) continue;
  1715.       if ((sl[n] == sl[n - 1]) || (!rev && ((sl[n - 1] + ll[n - 1]) > sl[n]))
  1716.           || (rev && ((sl[n] + ll[n]) > sl[n - 1]))) overlap = TRUE;
  1717.       }
  1718.    if (overlap) sort(pl, il, n_ready, FALSE);
  1719.    if (link_statistics) {
  1720.       if (cursec > sl[0]) iseek = cursec - sl[0]; else iseek = sl[0] - cursec;
  1721.       batchcount++; readycount += n_ready; seeknosort += seek / 1024;
  1722.       if (input_only) inputcount++;
  1723.       if (overlap) { ovlcount++; seeksorted += iseek / 1024; }
  1724.       else seeksorted += (iseek + maxsec - minsec) / 1024;
  1725.       if (rev && !r)     {  revcount++; readysorted += n_ready; }
  1726.       if (!rev && !s)    { sortcount++; readysorted += n_ready; }
  1727.       }
  1728. #if defined(DEBUG_LINKED_COMMANDS)
  1729.    if (link_statistics && (overlap || !(flushcount % link_statistics)))
  1730.       for (n = 0; n < n_ready; n++) {
  1731.          k = il[n]; cpp = &HD(j)->cp[k]; SCpnt = cpp->SCpnt;
  1732.          printk("%s %d.%d:%d pid %ld mb %d fc %d nr %d sec %ld ns %ld"
  1733.                 " cur %ld s:%c r:%c rev:%c in:%c ov:%c xd %d.n",
  1734.                 (ihdlr ? "ihdlr" : "qcomm"), SCpnt->channel, SCpnt->target,
  1735.                 SCpnt->lun, SCpnt->pid, k, flushcount, n_ready,
  1736.                 SCpnt->request.sector, SCpnt->request.nr_sectors, cursec,
  1737.                 YESNO(s), YESNO(r), YESNO(rev), YESNO(input_only),
  1738.                 YESNO(overlap), cpp->din);
  1739.          }
  1740. #endif
  1741.    return overlap;
  1742. }
  1743. static void flush_dev(Scsi_Device *dev, unsigned long cursec, unsigned int j,
  1744.                       unsigned int ihdlr) {
  1745.    Scsi_Cmnd *SCpnt;
  1746.    struct mscp *cpp;
  1747.    unsigned int k, n, n_ready = 0, il[MAX_MAILBOXES];
  1748.    for (k = 0; k < sh[j]->can_queue; k++) {
  1749.       if (HD(j)->cp_stat[k] != READY && HD(j)->cp_stat[k] != IN_USE) continue;
  1750.       cpp = &HD(j)->cp[k]; SCpnt = cpp->SCpnt;
  1751.       if (SCpnt->device != dev) continue;
  1752.       if (HD(j)->cp_stat[k] == IN_USE) return;
  1753.       il[n_ready++] = k;
  1754.       }
  1755.    if (reorder(j, cursec, ihdlr, il, n_ready)) n_ready = 1;
  1756.    for (n = 0; n < n_ready; n++) {
  1757.       k = il[n]; cpp = &HD(j)->cp[k]; SCpnt = cpp->SCpnt;
  1758.       if (do_dma(sh[j]->io_port, cpp->cp_dma_addr, SEND_CP_DMA)) {
  1759.          printk("%s: %s, target %d.%d:%d, pid %ld, mbox %d, adapter"
  1760.                 " busy, will abort.n", BN(j), (ihdlr ? "ihdlr" : "qcomm"),
  1761.                 SCpnt->channel, SCpnt->target, SCpnt->lun, SCpnt->pid, k);
  1762.          HD(j)->cp_stat[k] = ABORTING;
  1763.          continue;
  1764.          }
  1765.       HD(j)->cp_stat[k] = IN_USE;
  1766.       }
  1767. }
  1768. static inline void ihdlr(int irq, unsigned int j) {
  1769.    Scsi_Cmnd *SCpnt;
  1770.    unsigned int i, k, c, status, tstatus, reg;
  1771.    struct mssp *spp;
  1772.    struct mscp *cpp;
  1773.    if (sh[j]->irq != irq)
  1774.        panic("%s: ihdlr, irq %d, sh[j]->irq %d.n", BN(j), irq, sh[j]->irq);
  1775.    /* Check if this board need to be serviced */
  1776.    if (!(inb(sh[j]->io_port + REG_AUX_STATUS) & IRQ_ASSERTED)) return;
  1777.    HD(j)->iocount++;
  1778.    if (do_trace) printk("%s: ihdlr, enter, irq %d, count %d.n", BN(j), irq,
  1779.                         HD(j)->iocount);
  1780.    /* Check if this board is still busy */
  1781.    if (wait_on_busy(sh[j]->io_port, 20 * MAXLOOP)) {
  1782.       reg = inb(sh[j]->io_port + REG_STATUS);
  1783.       printk("%s: ihdlr, busy timeout error,  irq %d, reg 0x%x, count %d.n",
  1784.              BN(j), irq, reg, HD(j)->iocount);
  1785.       return;
  1786.       }
  1787.    spp  = &HD(j)->sp;
  1788.    /* Make a local copy just before clearing the interrupt indication */
  1789.    memcpy(spp, HD(j)->sp_cpu_addr, sizeof(struct mssp));
  1790.    /* Clear the completion flag and cp pointer on the dynamic copy of sp */
  1791.    memset(HD(j)->sp_cpu_addr, 0, sizeof(struct mssp));
  1792.    /* Read the status register to clear the interrupt indication */
  1793.    reg = inb(sh[j]->io_port + REG_STATUS);
  1794. #if defined (DEBUG_INTERRUPT)
  1795.    {
  1796.    unsigned char *bytesp;
  1797.    int cnt;
  1798.    bytesp= (unsigned char *) spp;
  1799.    if (HD(j)->iocount < 200) {
  1800.       printk("sp[] =");
  1801.       for (cnt=0; cnt < 15; cnt++) printk(" 0x%x", bytesp[cnt]);
  1802.       printk("n");
  1803.       }
  1804.    }
  1805. #endif
  1806.    /* Reject any sp with supspect data */
  1807.    if (spp->eoc == FALSE && HD(j)->iocount > 1)
  1808.       printk("%s: ihdlr, spp->eoc == FALSE, irq %d, reg 0x%x, count %d.n",
  1809.              BN(j), irq, reg, HD(j)->iocount);
  1810.    if (spp->cpp_index < 0 || spp->cpp_index >= sh[j]->can_queue)
  1811.       printk("%s: ihdlr, bad spp->cpp_index %d, irq %d, reg 0x%x, count %d.n",
  1812.              BN(j), spp->cpp_index, irq, reg, HD(j)->iocount);
  1813.    if (spp->eoc == FALSE || spp->cpp_index < 0
  1814.                          || spp->cpp_index >= sh[j]->can_queue) return;
  1815.    /* Find the mailbox to be serviced on this board */
  1816.    i = spp->cpp_index;
  1817.    cpp = &(HD(j)->cp[i]);
  1818. #if defined(DEBUG_GENERATE_ABORTS)
  1819.    if ((HD(j)->iocount > 500) && ((HD(j)->iocount % 500) < 3)) return;
  1820. #endif
  1821.    if (HD(j)->cp_stat[i] == IGNORE) {
  1822.       HD(j)->cp_stat[i] = FREE;
  1823.       return;
  1824.       }
  1825.    else if (HD(j)->cp_stat[i] == LOCKED) {
  1826.       HD(j)->cp_stat[i] = FREE;
  1827.       printk("%s: ihdlr, mbox %d unlocked, count %d.n", BN(j), i,
  1828.              HD(j)->iocount);
  1829.       return;
  1830.       }
  1831.    else if (HD(j)->cp_stat[i] == FREE) {
  1832.       printk("%s: ihdlr, mbox %d is free, count %d.n", BN(j), i,
  1833.              HD(j)->iocount);
  1834.       return;
  1835.       }
  1836.    else if (HD(j)->cp_stat[i] == IN_RESET)
  1837.       printk("%s: ihdlr, mbox %d is in reset.n", BN(j), i);
  1838.    else if (HD(j)->cp_stat[i] != IN_USE)
  1839.       panic("%s: ihdlr, mbox %d, invalid cp_stat: %d.n",
  1840.             BN(j), i, HD(j)->cp_stat[i]);
  1841.    HD(j)->cp_stat[i] = FREE;
  1842.    SCpnt = cpp->SCpnt;
  1843.    if (SCpnt == NULL) panic("%s: ihdlr, mbox %d, SCpnt == NULL.n", BN(j), i);
  1844.    if (SCpnt->host_scribble == NULL)
  1845.       panic("%s: ihdlr, mbox %d, pid %ld, SCpnt %p garbled.n", BN(j), i,
  1846.             SCpnt->pid, SCpnt);
  1847.    if (*(unsigned int *)SCpnt->host_scribble != i)
  1848.       panic("%s: ihdlr, mbox %d, pid %ld, index mismatch %d.n",
  1849.             BN(j), i, SCpnt->pid, *(unsigned int *)SCpnt->host_scribble);
  1850.    sync_dma(i, j);
  1851.    if (linked_comm && SCpnt->device->queue_depth > 2
  1852.                                      && TLDEV(SCpnt->device->type))
  1853.       flush_dev(SCpnt->device, SCpnt->request.sector, j, TRUE);
  1854.    tstatus = status_byte(spp->target_status);
  1855. #if defined(DEBUG_GENERATE_ERRORS)
  1856.    if ((HD(j)->iocount > 500) && ((HD(j)->iocount % 200) < 2))
  1857.                                            spp->adapter_status = 0x01;
  1858. #endif
  1859.    switch (spp->adapter_status) {
  1860.       case ASOK:     /* status OK */
  1861.          /* Forces a reset if a disk drive keeps returning BUSY */
  1862.          if (tstatus == BUSY && SCpnt->device->type != TYPE_TAPE)
  1863.             status = DID_ERROR << 16;
  1864.          /* If there was a bus reset, redo operation on each target */
  1865.          else if (tstatus != GOOD && SCpnt->device->type == TYPE_DISK
  1866.                   && HD(j)->target_redo[SCpnt->target][SCpnt->channel])
  1867.             status = DID_BUS_BUSY << 16;
  1868.          /* Works around a flaw in scsi.c */
  1869.          else if (tstatus == CHECK_CONDITION
  1870.                   && SCpnt->device->type == TYPE_DISK
  1871.                   && (SCpnt->sense_buffer[2] & 0xf) == RECOVERED_ERROR)
  1872.             status = DID_BUS_BUSY << 16;
  1873.          else
  1874.             status = DID_OK << 16;
  1875.          if (tstatus == GOOD)
  1876.             HD(j)->target_redo[SCpnt->target][SCpnt->channel] = FALSE;
  1877.          if (spp->target_status && SCpnt->device->type == TYPE_DISK &&
  1878.              (!(tstatus == CHECK_CONDITION && HD(j)->iocount <= 1000 &&
  1879.                (SCpnt->sense_buffer[2] & 0xf) == NOT_READY)))
  1880.             printk("%s: ihdlr, target %d.%d:%d, pid %ld, "
  1881.                    "target_status 0x%x, sense key 0x%x.n", BN(j),
  1882.                    SCpnt->channel, SCpnt->target, SCpnt->lun,
  1883.                    SCpnt->pid, spp->target_status,
  1884.                    SCpnt->sense_buffer[2]);
  1885.          HD(j)->target_to[SCpnt->target][SCpnt->channel] = 0;
  1886.          if (HD(j)->last_retried_pid == SCpnt->pid) HD(j)->retries = 0;
  1887.          break;
  1888.       case ASST:     /* Selection Time Out */
  1889.       case 0x02:     /* Command Time Out   */
  1890.          if (HD(j)->target_to[SCpnt->target][SCpnt->channel] > 1)
  1891.             status = DID_ERROR << 16;
  1892.          else {
  1893.             status = DID_TIME_OUT << 16;
  1894.             HD(j)->target_to[SCpnt->target][SCpnt->channel]++;
  1895.             }
  1896.          break;
  1897.       /* Perform a limited number of internal retries */
  1898.       case 0x03:     /* SCSI Bus Reset Received */
  1899.       case 0x04:     /* Initial Controller Power-up */
  1900.          for (c = 0; c <= sh[j]->max_channel; c++)
  1901.             for (k = 0; k < sh[j]->max_id; k++)
  1902.                HD(j)->target_redo[k][c] = TRUE;
  1903.          if (SCpnt->device->type != TYPE_TAPE
  1904.              && HD(j)->retries < MAX_INTERNAL_RETRIES) {
  1905. #if defined(DID_SOFT_ERROR)
  1906.             status = DID_SOFT_ERROR << 16;
  1907. #else
  1908.             status = DID_BUS_BUSY << 16;
  1909. #endif
  1910.             HD(j)->retries++;
  1911.             HD(j)->last_retried_pid = SCpnt->pid;
  1912.             }
  1913.          else
  1914.             status = DID_ERROR << 16;
  1915.          break;
  1916.       case 0x05:     /* Unexpected Bus Phase */
  1917.       case 0x06:     /* Unexpected Bus Free */
  1918.       case 0x07:     /* Bus Parity Error */
  1919.       case 0x08:     /* SCSI Hung */
  1920.       case 0x09:     /* Unexpected Message Reject */
  1921.       case 0x0a:     /* SCSI Bus Reset Stuck */
  1922.       case 0x0b:     /* Auto Request-Sense Failed */
  1923.       case 0x0c:     /* Controller Ram Parity Error */
  1924.       default:
  1925.          status = DID_ERROR << 16;
  1926.          break;
  1927.       }
  1928.    SCpnt->result = status | spp->target_status;
  1929. #if defined(DEBUG_INTERRUPT)
  1930.    if (SCpnt->result || do_trace)
  1931. #else
  1932.    if ((spp->adapter_status != ASOK && HD(j)->iocount >  1000) ||
  1933.        (spp->adapter_status != ASOK &&
  1934.         spp->adapter_status != ASST && HD(j)->iocount <= 1000) ||
  1935.         do_trace || msg_byte(spp->target_status))
  1936. #endif
  1937.       printk("%s: ihdlr, mbox %2d, err 0x%x:%x,"
  1938.              " target %d.%d:%d, pid %ld, reg 0x%x, count %d.n",
  1939.              BN(j), i, spp->adapter_status, spp->target_status,
  1940.              SCpnt->channel, SCpnt->target, SCpnt->lun, SCpnt->pid,
  1941.              reg, HD(j)->iocount);
  1942.    unmap_dma(i, j);
  1943.    /* Set the command state to inactive */
  1944.    SCpnt->host_scribble = NULL;
  1945.    SCpnt->scsi_done(SCpnt);
  1946.    if (do_trace) printk("%s: ihdlr, exit, irq %d, count %d.n", BN(j), irq,
  1947.                         HD(j)->iocount);
  1948.    return;
  1949. }
  1950. static void do_interrupt_handler(int irq, void *shap, struct pt_regs *regs) {
  1951.    unsigned int j;
  1952.    unsigned long spin_flags;
  1953.    /* Check if the interrupt must be processed by this handler */
  1954.    if ((j = (unsigned int)((char *)shap - sha)) >= num_boards) return;
  1955.    spin_lock_irqsave(&io_request_lock, spin_flags);
  1956.    ihdlr(irq, j);
  1957.    spin_unlock_irqrestore(&io_request_lock, spin_flags);
  1958. }
  1959. int eata2x_release(struct Scsi_Host *shpnt) {
  1960.    unsigned int i, j;
  1961.    for (j = 0; sh[j] != NULL && sh[j] != shpnt; j++);
  1962.    if (sh[j] == NULL) panic("%s: release, invalid Scsi_Host pointer.n",
  1963.                             driver_name);
  1964.    if(sh[j]->unchecked_isa_dma) scsi_deregister_blocked_host(sh[j]);
  1965.    for (i = 0; i < sh[j]->can_queue; i++)
  1966.       if ((&HD(j)->cp[i])->sglist) kfree((&HD(j)->cp[i])->sglist);
  1967.    for (i = 0; i < sh[j]->can_queue; i++)
  1968.       pci_unmap_single(HD(j)->pdev, HD(j)->cp[i].cp_dma_addr,
  1969.                      sizeof(struct mscp), PCI_DMA_BIDIRECTIONAL);
  1970.    if (HD(j)->sp_cpu_addr)
  1971.       pci_free_consistent(HD(j)->pdev, sizeof(struct mssp),
  1972.                           HD(j)->sp_cpu_addr, HD(j)->sp_dma_addr);
  1973.    free_irq(sh[j]->irq, &sha[j]);
  1974.    if (sh[j]->dma_channel != NO_DMA) free_dma(sh[j]->dma_channel);
  1975.    release_region(sh[j]->io_port, sh[j]->n_io_port);
  1976.    scsi_unregister(sh[j]);
  1977.    return FALSE;
  1978. }
  1979. static Scsi_Host_Template driver_template = EATA;
  1980. #include "scsi_module.c"
  1981. #ifndef MODULE
  1982. __setup("eata=", option_setup);
  1983. #endif /* end MODULE */
  1984. MODULE_LICENSE("GPL");