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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* 
  2.  * NCR 5380 generic driver routines.  These should make it *trivial*
  3.  *  to implement 5380 SCSI drivers under Linux with a non-trantor
  4.  * architecture.
  5.  *
  6.  * Note that these routines also work with NR53c400 family chips.
  7.  *
  8.  * Copyright 1993, Drew Eckhardt
  9.  * Visionary Computing 
  10.  * (Unix and Linux consulting and custom programming)
  11.  *  drew@colorado.edu
  12.  * +1 (303) 666-5836
  13.  *
  14.  * DISTRIBUTION RELEASE 6. 
  15.  *
  16.  * For more information, please consult 
  17.  *
  18.  * NCR 5380 Family
  19.  * SCSI Protocol Controller
  20.  * Databook
  21.  *
  22.  * NCR Microelectronics
  23.  * 1635 Aeroplaza Drive
  24.  * Colorado Springs, CO 80916
  25.  * 1+ (719) 578-3400
  26.  * 1+ (800) 334-5454
  27.  */
  28. /*
  29.  * ++roman: To port the 5380 driver to the Atari, I had to do some changes in
  30.  * this file, too:
  31.  *
  32.  *  - Some of the debug statements were incorrect (undefined variables and the
  33.  *    like). I fixed that.
  34.  *
  35.  *  - In information_transfer(), I think a #ifdef was wrong. Looking at the
  36.  *    possible DMA transfer size should also happen for REAL_DMA. I added this
  37.  *    in the #if statement.
  38.  *
  39.  *  - When using real DMA, information_transfer() should return in a DATAOUT
  40.  *    phase after starting the DMA. It has nothing more to do.
  41.  *
  42.  *  - The interrupt service routine should run main after end of DMA, too (not
  43.  *    only after RESELECTION interrupts). Additionally, it should _not_ test
  44.  *    for more interrupts after running main, since a DMA process may have
  45.  *    been started and interrupts are turned on now. The new int could happen
  46.  *    inside the execution of NCR5380_intr(), leading to recursive
  47.  *    calls.
  48.  *
  49.  *  - I've added a function merge_contiguous_buffers() that tries to
  50.  *    merge scatter-gather buffers that are located at contiguous
  51.  *    physical addresses and can be processed with the same DMA setup.
  52.  *    Since most scatter-gather operations work on a page (4K) of
  53.  *    4 buffers (1K), in more than 90% of all cases three interrupts and
  54.  *    DMA setup actions are saved.
  55.  *
  56.  * - I've deleted all the stuff for AUTOPROBE_IRQ, REAL_DMA_POLL, PSEUDO_DMA
  57.  *    and USLEEP, because these were messing up readability and will never be
  58.  *    needed for Atari SCSI.
  59.  * 
  60.  * - I've revised the NCR5380_main() calling scheme (relax the 'main_running'
  61.  *   stuff), and 'main' is executed in a bottom half if awoken by an
  62.  *   interrupt.
  63.  *
  64.  * - The code was quite cluttered up by "#if (NDEBUG & NDEBUG_*) printk..."
  65.  *   constructs. In my eyes, this made the source rather unreadable, so I
  66.  *   finally replaced that by the *_PRINTK() macros.
  67.  *
  68.  */
  69. /*
  70.  * Further development / testing that should be done : 
  71.  * 1.  Test linked command handling code after Eric is ready with 
  72.  *     the high level code.
  73.  */
  74. /* 
  75.  * Michael: To port Romans driver to the Macintosh, I've left most of the code 
  76.  * unchanged, in order to make later implemantation of REAL_DMA easier. 
  77.  *
  78.  * Alan: In order to make it easier to read and as the 5380 based Mac's never
  79.  *   have DMA I took the real DMA out of mac_scsi.c but not this file.
  80.  *
  81.  * With luck we can merge this back with the ST folks in time.
  82.  *
  83.  * Changes:
  84.  * 
  85.  * - all Falcon-specific stuff (ST-DMA locking) was removed
  86.  *
  87.  * 
  88.  */
  89. #if (NDEBUG & NDEBUG_LISTS)
  90. #define LIST(x,y) 
  91.   { printk("LINE:%d   Adding %p to %pn", __LINE__, (void*)(x), (void*)(y)); 
  92.     if ((x)==(y)) udelay(5); }
  93. #define REMOVE(w,x,y,z) 
  94.   { printk("LINE:%d   Removing: %p->%p  %p->%p n", __LINE__, 
  95.    (void*)(w), (void*)(x), (void*)(y), (void*)(z)); 
  96.     if ((x)==(y)) udelay(5); }
  97. #else
  98. #define LIST(x,y)
  99. #define REMOVE(w,x,y,z)
  100. #endif
  101. #ifndef notyet
  102. #undef LINKED
  103. #endif
  104. /*
  105.  * Design
  106.  * Issues :
  107.  *
  108.  * The other Linux SCSI drivers were written when Linux was Intel PC-only,
  109.  * and specifically for each board rather than each chip.  This makes their
  110.  * adaptation to platforms like the Mac (Some of which use NCR5380's)
  111.  * more difficult than it has to be.
  112.  *
  113.  * Also, many of the SCSI drivers were written before the command queuing
  114.  * routines were implemented, meaning their implementations of queued 
  115.  * commands were hacked on rather than designed in from the start.
  116.  *
  117.  * When I designed the Linux SCSI drivers I figured that 
  118.  * while having two different SCSI boards in a system might be useful
  119.  * for debugging things, two of the same type wouldn't be used.
  120.  * Well, I was wrong and a number of users have mailed me about running
  121.  * multiple high-performance SCSI boards in a server.
  122.  *
  123.  * Finally, when I get questions from users, I have no idea what 
  124.  * revision of my driver they are running.
  125.  *
  126.  * This driver attempts to address these problems :
  127.  * This is a generic 5380 driver.  To use it on a different platform, 
  128.  * one simply writes appropriate system specific macros (ie, data
  129.  * transfer - some PC's will use the I/O bus, 68K's must use 
  130.  * memory mapped) and drops this file in their 'C' wrapper.
  131.  *
  132.  * As far as command queueing, two queues are maintained for 
  133.  * each 5380 in the system - commands that haven't been issued yet,
  134.  * and commands that are currently executing.  This means that an 
  135.  * unlimited number of commands may be queued, letting 
  136.  * more commands propagate from the higher driver levels giving higher 
  137.  * throughput.  Note that both I_T_L and I_T_L_Q nexuses are supported, 
  138.  * allowing multiple commands to propagate all the way to a SCSI-II device 
  139.  * while a command is already executing.
  140.  *
  141.  * To solve the multiple-boards-in-the-same-system problem, 
  142.  * there is a separate instance structure for each instance
  143.  * of a 5380 in the system.  So, multiple NCR5380 drivers will
  144.  * be able to coexist with appropriate changes to the high level
  145.  * SCSI code.  
  146.  *
  147.  * A NCR5380_PUBLIC_REVISION macro is provided, with the release
  148.  * number (updated for each public release) printed by the 
  149.  * NCR5380_print_options command, which should be called from the 
  150.  * wrapper detect function, so that I know what release of the driver
  151.  * users are using.
  152.  *
  153.  * Issues specific to the NCR5380 : 
  154.  *
  155.  * When used in a PIO or pseudo-dma mode, the NCR5380 is a braindead 
  156.  * piece of hardware that requires you to sit in a loop polling for 
  157.  * the REQ signal as long as you are connected.  Some devices are 
  158.  * brain dead (ie, many TEXEL CD ROM drives) and won't disconnect 
  159.  * while doing long seek operations.
  160.  * 
  161.  * The workaround for this is to keep track of devices that have
  162.  * disconnected.  If the device hasn't disconnected, for commands that
  163.  * should disconnect, we do something like 
  164.  *
  165.  * while (!REQ is asserted) { sleep for N usecs; poll for M usecs }
  166.  * 
  167.  * Some tweaking of N and M needs to be done.  An algorithm based 
  168.  * on "time to data" would give the best results as long as short time
  169.  * to datas (ie, on the same track) were considered, however these 
  170.  * broken devices are the exception rather than the rule and I'd rather
  171.  * spend my time optimizing for the normal case.
  172.  *
  173.  * Architecture :
  174.  *
  175.  * At the heart of the design is a coroutine, NCR5380_main,
  176.  * which is started when not running by the interrupt handler,
  177.  * timer, and queue command function.  It attempts to establish
  178.  * I_T_L or I_T_L_Q nexuses by removing the commands from the 
  179.  * issue queue and calling NCR5380_select() if a nexus 
  180.  * is not established. 
  181.  *
  182.  * Once a nexus is established, the NCR5380_information_transfer()
  183.  * phase goes through the various phases as instructed by the target.
  184.  * if the target goes into MSG IN and sends a DISCONNECT message,
  185.  * the command structure is placed into the per instance disconnected
  186.  * queue, and NCR5380_main tries to find more work.  If USLEEP
  187.  * was defined, and the target is idle for too long, the system
  188.  * will try to sleep.
  189.  *
  190.  * If a command has disconnected, eventually an interrupt will trigger,
  191.  * calling NCR5380_intr()  which will in turn call NCR5380_reselect
  192.  * to reestablish a nexus.  This will run main if necessary.
  193.  *
  194.  * On command termination, the done function will be called as 
  195.  * appropriate.
  196.  *
  197.  * SCSI pointers are maintained in the SCp field of SCSI command 
  198.  * structures, being initialized after the command is connected
  199.  * in NCR5380_select, and set as appropriate in NCR5380_information_transfer.
  200.  * Note that in violation of the standard, an implicit SAVE POINTERS operation
  201.  * is done, since some BROKEN disks fail to issue an explicit SAVE POINTERS.
  202.  */
  203. /*
  204.  * Using this file :
  205.  * This file a skeleton Linux SCSI driver for the NCR 5380 series
  206.  * of chips.  To use it, you write a architecture specific functions 
  207.  * and macros and include this file in your driver.
  208.  *
  209.  * These macros control options : 
  210.  * AUTOSENSE - if defined, REQUEST SENSE will be performed automatically
  211.  * for commands that return with a CHECK CONDITION status. 
  212.  *
  213.  * LINKED - if defined, linked commands are supported.
  214.  *
  215.  * PSEUDO_DMA - if defined, PSEUDO DMA is used during the data transfer phases.
  216.  *
  217.  * REAL_DMA - if defined, REAL DMA is used during the data transfer phases.
  218.  *
  219.  * SUPPORT_TAGS - if defined, SCSI-2 tagged queuing is used where possible
  220.  *
  221.  * These macros MUST be defined :
  222.  * 
  223.  * NCR5380_read(register)  - read from the specified register
  224.  *
  225.  * NCR5380_write(register, value) - write to the specific register 
  226.  *
  227.  * Either real DMA *or* pseudo DMA may be implemented
  228.  * REAL functions : 
  229.  * NCR5380_REAL_DMA should be defined if real DMA is to be used.
  230.  * Note that the DMA setup functions should return the number of bytes 
  231.  * that they were able to program the controller for.
  232.  *
  233.  * Also note that generic i386/PC versions of these macros are 
  234.  * available as NCR5380_i386_dma_write_setup,
  235.  * NCR5380_i386_dma_read_setup, and NCR5380_i386_dma_residual.
  236.  *
  237.  * NCR5380_dma_write_setup(instance, src, count) - initialize
  238.  * NCR5380_dma_read_setup(instance, dst, count) - initialize
  239.  * NCR5380_dma_residual(instance); - residual count
  240.  *
  241.  * PSEUDO functions :
  242.  * NCR5380_pwrite(instance, src, count)
  243.  * NCR5380_pread(instance, dst, count);
  244.  *
  245.  * If nothing specific to this implementation needs doing (ie, with external
  246.  * hardware), you must also define 
  247.  *  
  248.  * NCR5380_queue_command
  249.  * NCR5380_reset
  250.  * NCR5380_abort
  251.  * NCR5380_proc_info
  252.  *
  253.  * to be the global entry points into the specific driver, ie 
  254.  * #define NCR5380_queue_command t128_queue_command.
  255.  *
  256.  * If this is not done, the routines will be defined as static functions
  257.  * with the NCR5380* names and the user must provide a globally
  258.  * accessible wrapper function.
  259.  *
  260.  * The generic driver is initialized by calling NCR5380_init(instance),
  261.  * after setting the appropriate host specific fields and ID.  If the 
  262.  * driver wishes to autoprobe for an IRQ line, the NCR5380_probe_irq(instance,
  263.  * possible) function may be used.  Before the specific driver initialization
  264.  * code finishes, NCR5380_print_options should be called.
  265.  */
  266. static struct Scsi_Host *first_instance = NULL;
  267. static Scsi_Host_Template *the_template = NULL;
  268. /* Macros ease life... :-) */
  269. #define SETUP_HOSTDATA(in)
  270.     struct NCR5380_hostdata *hostdata =
  271. (struct NCR5380_hostdata *)(in)->hostdata
  272. #define HOSTDATA(in) ((struct NCR5380_hostdata *)(in)->hostdata)
  273. #define NEXT(cmd) ((Scsi_Cmnd *)((cmd)->host_scribble))
  274. #define NEXTADDR(cmd) ((Scsi_Cmnd **)&((cmd)->host_scribble))
  275. #define HOSTNO instance->host_no
  276. #define H_NO(cmd) (cmd)->host->host_no
  277. #ifdef SUPPORT_TAGS
  278. /*
  279.  * Functions for handling tagged queuing
  280.  * =====================================
  281.  *
  282.  * ++roman (01/96): Now I've implemented SCSI-2 tagged queuing. Some notes:
  283.  *
  284.  * Using consecutive numbers for the tags is no good idea in my eyes. There
  285.  * could be wrong re-usings if the counter (8 bit!) wraps and some early
  286.  * command has been preempted for a long time. My solution: a bitfield for
  287.  * remembering used tags.
  288.  *
  289.  * There's also the problem that each target has a certain queue size, but we
  290.  * cannot know it in advance :-( We just see a QUEUE_FULL status being
  291.  * returned. So, in this case, the driver internal queue size assumption is
  292.  * reduced to the number of active tags if QUEUE_FULL is returned by the
  293.  * target. The command is returned to the mid-level, but with status changed
  294.  * to BUSY, since --as I've seen-- the mid-level can't handle QUEUE_FULL
  295.  * correctly.
  296.  *
  297.  * We're also not allowed running tagged commands as long as an untagged
  298.  * command is active. And REQUEST SENSE commands after a contingent allegiance
  299.  * condition _must_ be untagged. To keep track whether an untagged command has
  300.  * been issued, the host->busy array is still employed, as it is without
  301.  * support for tagged queuing.
  302.  *
  303.  * One could suspect that there are possible race conditions between
  304.  * is_lun_busy(), cmd_get_tag() and cmd_free_tag(). But I think this isn't the
  305.  * case: is_lun_busy() and cmd_get_tag() are both called from NCR5380_main(),
  306.  * which already guaranteed to be running at most once. It is also the only
  307.  * place where tags/LUNs are allocated. So no other allocation can slip
  308.  * between that pair, there could only happen a reselection, which can free a
  309.  * tag, but that doesn't hurt. Only the sequence in cmd_free_tag() becomes
  310.  * important: the tag bit must be cleared before 'nr_allocated' is decreased.
  311.  */
  312. /* -1 for TAG_NONE is not possible with unsigned char cmd->tag */
  313. #undef TAG_NONE
  314. #define TAG_NONE 0xff
  315. /* For the m68k, the number of bits in 'allocated' must be a multiple of 32! */
  316. #if (MAX_TAGS % 32) != 0
  317. #error "MAX_TAGS must be a multiple of 32!"
  318. #endif
  319. typedef struct {
  320.     char allocated[MAX_TAGS/8];
  321.     int nr_allocated;
  322.     int queue_size;
  323. } TAG_ALLOC;
  324. static TAG_ALLOC TagAlloc[8][8]; /* 8 targets and 8 LUNs */
  325. static void init_tags( void )
  326. {
  327.     int target, lun;
  328.     TAG_ALLOC *ta;
  329.     
  330.     if (!setup_use_tagged_queuing)
  331. return;
  332.     
  333.     for( target = 0; target < 8; ++target ) {
  334. for( lun = 0; lun < 8; ++lun ) {
  335.     ta = &TagAlloc[target][lun];
  336.     memset( &ta->allocated, 0, MAX_TAGS/8 );
  337.     ta->nr_allocated = 0;
  338.     /* At the beginning, assume the maximum queue size we could
  339.      * support (MAX_TAGS). This value will be decreased if the target
  340.      * returns QUEUE_FULL status.
  341.      */
  342.     ta->queue_size = MAX_TAGS;
  343. }
  344.     }
  345. }
  346. /* Check if we can issue a command to this LUN: First see if the LUN is marked
  347.  * busy by an untagged command. If the command should use tagged queuing, also
  348.  * check that there is a free tag and the target's queue won't overflow. This
  349.  * function should be called with interrupts disabled to avoid race
  350.  * conditions.
  351.  */ 
  352. static int is_lun_busy( Scsi_Cmnd *cmd, int should_be_tagged )
  353. {
  354.     SETUP_HOSTDATA(cmd->host);
  355.     if (hostdata->busy[cmd->target] & (1 << cmd->lun))
  356. return( 1 );
  357.     if (!should_be_tagged ||
  358. !setup_use_tagged_queuing || !cmd->device->tagged_supported)
  359. return( 0 );
  360.     if (TagAlloc[cmd->target][cmd->lun].nr_allocated >=
  361. TagAlloc[cmd->target][cmd->lun].queue_size ) {
  362. TAG_PRINTK( "scsi%d: target %d lun %d: no free tagsn",
  363.     H_NO(cmd), cmd->target, cmd->lun );
  364. return( 1 );
  365.     }
  366.     return( 0 );
  367. }
  368. /* Allocate a tag for a command (there are no checks anymore, check_lun_busy()
  369.  * must be called before!), or reserve the LUN in 'busy' if the command is
  370.  * untagged.
  371.  */
  372. static void cmd_get_tag( Scsi_Cmnd *cmd, int should_be_tagged )
  373. {
  374.     SETUP_HOSTDATA(cmd->host);
  375.     /* If we or the target don't support tagged queuing, allocate the LUN for
  376.      * an untagged command.
  377.      */
  378.     if (!should_be_tagged ||
  379. !setup_use_tagged_queuing || !cmd->device->tagged_supported) {
  380. cmd->tag = TAG_NONE;
  381. hostdata->busy[cmd->target] |= (1 << cmd->lun);
  382. TAG_PRINTK( "scsi%d: target %d lun %d now allocated by untagged "
  383.     "commandn", H_NO(cmd), cmd->target, cmd->lun );
  384.     }
  385.     else {
  386. TAG_ALLOC *ta = &TagAlloc[cmd->target][cmd->lun];
  387. cmd->tag = find_first_zero_bit( &ta->allocated, MAX_TAGS );
  388. set_bit( cmd->tag, &ta->allocated );
  389. ta->nr_allocated++;
  390. TAG_PRINTK( "scsi%d: using tag %d for target %d lun %d "
  391.     "(now %d tags in use)n",
  392.     H_NO(cmd), cmd->tag, cmd->target, cmd->lun,
  393.     ta->nr_allocated );
  394.     }
  395. }
  396. /* Mark the tag of command 'cmd' as free, or in case of an untagged command,
  397.  * unlock the LUN.
  398.  */
  399. static void cmd_free_tag( Scsi_Cmnd *cmd )
  400. {
  401.     SETUP_HOSTDATA(cmd->host);
  402.     if (cmd->tag == TAG_NONE) {
  403. hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  404. TAG_PRINTK( "scsi%d: target %d lun %d untagged cmd finishedn",
  405.     H_NO(cmd), cmd->target, cmd->lun );
  406.     }
  407.     else if (cmd->tag >= MAX_TAGS) {
  408. printk(KERN_NOTICE "scsi%d: trying to free bad tag %d!n",
  409. H_NO(cmd), cmd->tag );
  410.     }
  411.     else {
  412. TAG_ALLOC *ta = &TagAlloc[cmd->target][cmd->lun];
  413. clear_bit( cmd->tag, &ta->allocated );
  414. ta->nr_allocated--;
  415. TAG_PRINTK( "scsi%d: freed tag %d for target %d lun %dn",
  416.     H_NO(cmd), cmd->tag, cmd->target, cmd->lun );
  417.     }
  418. }
  419. static void free_all_tags( void )
  420. {
  421.     int target, lun;
  422.     TAG_ALLOC *ta;
  423.     if (!setup_use_tagged_queuing)
  424. return;
  425.     
  426.     for( target = 0; target < 8; ++target ) {
  427. for( lun = 0; lun < 8; ++lun ) {
  428.     ta = &TagAlloc[target][lun];
  429.     memset( &ta->allocated, 0, MAX_TAGS/8 );
  430.     ta->nr_allocated = 0;
  431. }
  432.     }
  433. }
  434. #endif /* SUPPORT_TAGS */
  435. /*
  436.  * Function: void merge_contiguous_buffers( Scsi_Cmnd *cmd )
  437.  *
  438.  * Purpose: Try to merge several scatter-gather requests into one DMA
  439.  *    transfer. This is possible if the scatter buffers lie on
  440.  *    physical contiguous addresses.
  441.  *
  442.  * Parameters: Scsi_Cmnd *cmd
  443.  *    The command to work on. The first scatter buffer's data are
  444.  *    assumed to be already transfered into ptr/this_residual.
  445.  */
  446. static void merge_contiguous_buffers( Scsi_Cmnd *cmd )
  447. {
  448.     unsigned long endaddr;
  449. #if (NDEBUG & NDEBUG_MERGING)
  450.     unsigned long oldlen = cmd->SCp.this_residual;
  451.     int   cnt = 1;
  452. #endif
  453.     for (endaddr = virt_to_phys(cmd->SCp.ptr + cmd->SCp.this_residual - 1) + 1;
  454.  cmd->SCp.buffers_residual &&
  455.  virt_to_phys(cmd->SCp.buffer[1].address) == endaddr; ) {
  456. MER_PRINTK("VTOP(%p) == %08lx -> mergingn",
  457.    cmd->SCp.buffer[1].address, endaddr);
  458. #if (NDEBUG & NDEBUG_MERGING)
  459. ++cnt;
  460. #endif
  461. ++cmd->SCp.buffer;
  462. --cmd->SCp.buffers_residual;
  463. cmd->SCp.this_residual += cmd->SCp.buffer->length;
  464. endaddr += cmd->SCp.buffer->length;
  465.     }
  466. #if (NDEBUG & NDEBUG_MERGING)
  467.     if (oldlen != cmd->SCp.this_residual)
  468. MER_PRINTK("merged %d buffers from %p, new length %08xn",
  469.    cnt, cmd->SCp.ptr, cmd->SCp.this_residual);
  470. #endif
  471. }
  472. /*
  473.  * Function : void initialize_SCp(Scsi_Cmnd *cmd)
  474.  *
  475.  * Purpose : initialize the saved data pointers for cmd to point to the 
  476.  * start of the buffer.
  477.  *
  478.  * Inputs : cmd - Scsi_Cmnd structure to have pointers reset.
  479.  */
  480. static __inline__ void initialize_SCp(Scsi_Cmnd *cmd)
  481. {
  482.     /* 
  483.      * Initialize the Scsi Pointer field so that all of the commands in the 
  484.      * various queues are valid.
  485.      */
  486.     if (cmd->use_sg) {
  487. cmd->SCp.buffer = (struct scatterlist *) cmd->buffer;
  488. cmd->SCp.buffers_residual = cmd->use_sg - 1;
  489. cmd->SCp.ptr = (char *) cmd->SCp.buffer->address;
  490. cmd->SCp.this_residual = cmd->SCp.buffer->length;
  491. /* ++roman: Try to merge some scatter-buffers if they are at
  492.  * contiguous physical addresses.
  493.  */
  494. merge_contiguous_buffers( cmd );
  495.     } else {
  496. cmd->SCp.buffer = NULL;
  497. cmd->SCp.buffers_residual = 0;
  498. cmd->SCp.ptr = (char *) cmd->request_buffer;
  499. cmd->SCp.this_residual = cmd->request_bufflen;
  500.     }
  501. }
  502. #include <linux/config.h>
  503. #include <linux/delay.h>
  504. #if 1
  505. static struct {
  506.     unsigned char mask;
  507.     const char * name;} 
  508. signals[] = {{ SR_DBP, "PARITY"}, { SR_RST, "RST" }, { SR_BSY, "BSY" }, 
  509.     { SR_REQ, "REQ" }, { SR_MSG, "MSG" }, { SR_CD,  "CD" }, { SR_IO, "IO" }, 
  510.     { SR_SEL, "SEL" }, {0, NULL}}, 
  511. basrs[] = {{BASR_ATN, "ATN"}, {BASR_ACK, "ACK"}, {0, NULL}},
  512. icrs[] = {{ICR_ASSERT_RST, "ASSERT RST"},{ICR_ASSERT_ACK, "ASSERT ACK"},
  513.     {ICR_ASSERT_BSY, "ASSERT BSY"}, {ICR_ASSERT_SEL, "ASSERT SEL"}, 
  514.     {ICR_ASSERT_ATN, "ASSERT ATN"}, {ICR_ASSERT_DATA, "ASSERT DATA"}, 
  515.     {0, NULL}},
  516. mrs[] = {{MR_BLOCK_DMA_MODE, "MODE BLOCK DMA"}, {MR_TARGET, "MODE TARGET"}, 
  517.     {MR_ENABLE_PAR_CHECK, "MODE PARITY CHECK"}, {MR_ENABLE_PAR_INTR, 
  518.     "MODE PARITY INTR"}, {MR_ENABLE_EOP_INTR,"MODE EOP INTR"},
  519.     {MR_MONITOR_BSY, "MODE MONITOR BSY"},
  520.     {MR_DMA_MODE, "MODE DMA"}, {MR_ARBITRATE, "MODE ARBITRATION"}, 
  521.     {0, NULL}};
  522. /*
  523.  * Function : void NCR5380_print(struct Scsi_Host *instance)
  524.  *
  525.  * Purpose : print the SCSI bus signals for debugging purposes
  526.  *
  527.  * Input : instance - which NCR5380
  528.  */
  529. static void NCR5380_print(struct Scsi_Host *instance) {
  530.     unsigned char status, data, basr, mr, icr, i;
  531.     unsigned long flags;
  532.     save_flags(flags);
  533.     cli();
  534.     data = NCR5380_read(CURRENT_SCSI_DATA_REG);
  535.     status = NCR5380_read(STATUS_REG);
  536.     mr = NCR5380_read(MODE_REG);
  537.     icr = NCR5380_read(INITIATOR_COMMAND_REG);
  538.     basr = NCR5380_read(BUS_AND_STATUS_REG);
  539.     restore_flags(flags);
  540.     printk("STATUS_REG: %02x ", status);
  541.     for (i = 0; signals[i].mask ; ++i) 
  542. if (status & signals[i].mask)
  543.     printk(",%s", signals[i].name);
  544.     printk("nBASR: %02x ", basr);
  545.     for (i = 0; basrs[i].mask ; ++i) 
  546. if (basr & basrs[i].mask)
  547.     printk(",%s", basrs[i].name);
  548.     printk("nICR: %02x ", icr);
  549.     for (i = 0; icrs[i].mask; ++i) 
  550. if (icr & icrs[i].mask)
  551.     printk(",%s", icrs[i].name);
  552.     printk("nMODE: %02x ", mr);
  553.     for (i = 0; mrs[i].mask; ++i) 
  554. if (mr & mrs[i].mask)
  555.     printk(",%s", mrs[i].name);
  556.     printk("n");
  557. }
  558. static struct {
  559.     unsigned char value;
  560.     const char *name;
  561. } phases[] = {
  562.     {PHASE_DATAOUT, "DATAOUT"}, {PHASE_DATAIN, "DATAIN"}, {PHASE_CMDOUT, "CMDOUT"},
  563.     {PHASE_STATIN, "STATIN"}, {PHASE_MSGOUT, "MSGOUT"}, {PHASE_MSGIN, "MSGIN"},
  564.     {PHASE_UNKNOWN, "UNKNOWN"}};
  565. /* 
  566.  * Function : void NCR5380_print_phase(struct Scsi_Host *instance)
  567.  *
  568.  * Purpose : print the current SCSI phase for debugging purposes
  569.  *
  570.  * Input : instance - which NCR5380
  571.  */
  572. static void NCR5380_print_phase(struct Scsi_Host *instance)
  573. {
  574.     unsigned char status;
  575.     int i;
  576.     status = NCR5380_read(STATUS_REG);
  577.     if (!(status & SR_REQ)) 
  578. printk(KERN_DEBUG "scsi%d: REQ not asserted, phase unknown.n", HOSTNO);
  579.     else {
  580. for (i = 0; (phases[i].value != PHASE_UNKNOWN) && 
  581.     (phases[i].value != (status & PHASE_MASK)); ++i); 
  582. printk(KERN_DEBUG "scsi%d: phase %sn", HOSTNO, phases[i].name);
  583.     }
  584. }
  585. #else /* !NDEBUG */
  586. /* dummies... */
  587. __inline__ void NCR5380_print(struct Scsi_Host *instance) { };
  588. __inline__ void NCR5380_print_phase(struct Scsi_Host *instance) { };
  589. #endif
  590. /*
  591.  * ++roman: New scheme of calling NCR5380_main()
  592.  * 
  593.  * If we're not in an interrupt, we can call our main directly, it cannot be
  594.  * already running. Else, we queue it on a task queue, if not 'main_running'
  595.  * tells us that a lower level is already executing it. This way,
  596.  * 'main_running' needs not be protected in a special way.
  597.  *
  598.  * queue_main() is a utility function for putting our main onto the task
  599.  * queue, if main_running is false. It should be called only from a
  600.  * interrupt or bottom half.
  601.  */
  602. #include <linux/tqueue.h>
  603. #include <linux/interrupt.h>
  604. static volatile int main_running = 0;
  605. static struct tq_struct NCR5380_tqueue = {
  606.     NULL, /* next */
  607.     0, /* sync */
  608.     (void (*)(void*))NCR5380_main,  /* routine, must have (void *) arg... */
  609.     NULL /* data */
  610. };
  611. static __inline__ void queue_main(void)
  612. {
  613.     if (!main_running) {
  614. /* If in interrupt and NCR5380_main() not already running,
  615.    queue it on the 'immediate' task queue, to be processed
  616.    immediately after the current interrupt processing has
  617.    finished. */
  618. queue_task(&NCR5380_tqueue, &tq_immediate);
  619. mark_bh(IMMEDIATE_BH);
  620.     }
  621.     /* else: nothing to do: the running NCR5380_main() will pick up
  622.        any newly queued command. */
  623. }
  624. static void NCR5380_all_init (void)
  625. {
  626.     static int done = 0;
  627.     if (!done) {
  628. INI_PRINTK("scsi : NCR5380_all_init()n");
  629. done = 1;
  630.     }
  631. }
  632.  
  633. /*
  634.  * Function : void NCR58380_print_options (struct Scsi_Host *instance)
  635.  *
  636.  * Purpose : called by probe code indicating the NCR5380 driver
  637.  *      options that were selected.
  638.  *
  639.  * Inputs : instance, pointer to this instance.  Unused.
  640.  */
  641. static void NCR5380_print_options (struct Scsi_Host *instance)
  642. {
  643.     printk(" generic options"
  644. #ifdef AUTOSENSE 
  645.     " AUTOSENSE"
  646. #endif
  647. #ifdef REAL_DMA
  648.     " REAL DMA"
  649. #endif
  650. #ifdef PSEUDO_DMA
  651.     " PSEUDO DMA"
  652. #endif
  653. #ifdef PARITY
  654.     " PARITY"
  655. #endif
  656. #ifdef SUPPORT_TAGS
  657.     " SCSI-2 TAGGED QUEUING"
  658. #endif
  659.     );
  660.     printk(" generic release=%d", NCR5380_PUBLIC_RELEASE);
  661. }
  662. /*
  663.  * Function : void NCR5380_print_status (struct Scsi_Host *instance)
  664.  *
  665.  * Purpose : print commands in the various queues, called from
  666.  * NCR5380_abort and NCR5380_debug to aid debugging.
  667.  *
  668.  * Inputs : instance, pointer to this instance.  
  669.  */
  670. static void NCR5380_print_status (struct Scsi_Host *instance)
  671. {
  672.     char *pr_bfr;
  673.     char *start;
  674.     int len;
  675.     NCR_PRINT(NDEBUG_ANY);
  676.     NCR_PRINT_PHASE(NDEBUG_ANY);
  677.     pr_bfr = (char *) __get_free_page(GFP_ATOMIC);
  678.     if (!pr_bfr) {
  679. printk("NCR5380_print_status: no memory for print buffern");
  680. return;
  681.     }
  682.     len = NCR5380_proc_info(pr_bfr, &start, 0, PAGE_SIZE, HOSTNO, 0);
  683.     pr_bfr[len] = 0;
  684.     printk("n%sn", pr_bfr);
  685.     free_page((unsigned long) pr_bfr);
  686. }
  687. /******************************************/
  688. /*
  689.  * /proc/scsi/[dtc pas16 t128 generic]/[0-ASC_NUM_BOARD_SUPPORTED]
  690.  *
  691.  * *buffer: I/O buffer
  692.  * **start: if inout == FALSE pointer into buffer where user read should start
  693.  * offset: current offset
  694.  * length: length of buffer
  695.  * hostno: Scsi_Host host_no
  696.  * inout: TRUE - user is writing; FALSE - user is reading
  697.  *
  698.  * Return the number of bytes read from or written
  699. */
  700. #undef SPRINTF
  701. #define SPRINTF(fmt,args...) 
  702.   do { if (pos + strlen(fmt) + 20 /* slop */ < buffer + length) 
  703.  pos += sprintf(pos, fmt , ## args); } while(0)
  704. static
  705. char *lprint_Scsi_Cmnd (Scsi_Cmnd *cmd, char *pos, char *buffer, int length);
  706. #ifndef NCR5380_proc_info
  707. static
  708. #endif
  709. int NCR5380_proc_info (char *buffer, char **start, off_t offset,
  710.        int length, int hostno, int inout)
  711. {
  712.     char *pos = buffer;
  713.     struct Scsi_Host *instance;
  714.     struct NCR5380_hostdata *hostdata;
  715.     Scsi_Cmnd *ptr;
  716.     unsigned long flags;
  717.     off_t begin = 0;
  718. #define check_offset()
  719.     do {
  720. if (pos - buffer < offset - begin) {
  721.     begin += pos - buffer;
  722.     pos = buffer;
  723. }
  724.     } while (0)
  725.     for (instance = first_instance; instance && HOSTNO != hostno;
  726.  instance = instance->next)
  727. ;
  728.     if (!instance)
  729. return(-ESRCH);
  730.     hostdata = (struct NCR5380_hostdata *)instance->hostdata;
  731.     if (inout) { /* Has data been written to the file ? */
  732. return(-ENOSYS);  /* Currently this is a no-op */
  733.     }
  734.     SPRINTF("NCR5380 core release=%d.n", NCR5380_PUBLIC_RELEASE);
  735.     check_offset();
  736.     save_flags(flags);
  737.     cli();
  738.     SPRINTF("NCR5380: coroutine is%s running.n", main_running ? "" : "n't");
  739.     check_offset();
  740.     if (!hostdata->connected)
  741. SPRINTF("scsi%d: no currently connected commandn", HOSTNO);
  742.     else
  743. pos = lprint_Scsi_Cmnd ((Scsi_Cmnd *) hostdata->connected,
  744. pos, buffer, length);
  745.     SPRINTF("scsi%d: issue_queuen", HOSTNO);
  746.     check_offset();
  747.     for (ptr = (Scsi_Cmnd *) hostdata->issue_queue; ptr; ptr = NEXT(ptr)) {
  748. pos = lprint_Scsi_Cmnd (ptr, pos, buffer, length);
  749. check_offset();
  750.     }
  751.     SPRINTF("scsi%d: disconnected_queuen", HOSTNO);
  752.     check_offset();
  753.     for (ptr = (Scsi_Cmnd *) hostdata->disconnected_queue; ptr;
  754.  ptr = NEXT(ptr)) {
  755. pos = lprint_Scsi_Cmnd (ptr, pos, buffer, length);
  756. check_offset();
  757.     }
  758.     restore_flags(flags);
  759.     *start = buffer + (offset - begin);
  760.     if (pos - buffer < offset - begin)
  761. return 0;
  762.     else if (pos - buffer - (offset - begin) < length)
  763. return pos - buffer - (offset - begin);
  764.     return length;
  765. }
  766. static char *
  767. lprint_Scsi_Cmnd (Scsi_Cmnd *cmd, char *pos, char *buffer, int length)
  768. {
  769.     int i, s;
  770.     unsigned char *command;
  771.     SPRINTF("scsi%d: destination target %d, lun %dn",
  772.     H_NO(cmd), cmd->target, cmd->lun);
  773.     SPRINTF("        command = ");
  774.     command = cmd->cmnd;
  775.     SPRINTF("%2d (0x%02x)", command[0], command[0]);
  776.     for (i = 1, s = COMMAND_SIZE(command[0]); i < s; ++i)
  777. SPRINTF(" %02x", command[i]);
  778.     SPRINTF("n");
  779.     return pos;
  780. }
  781. /* 
  782.  * Function : void NCR5380_init (struct Scsi_Host *instance)
  783.  *
  784.  * Purpose : initializes *instance and corresponding 5380 chip.
  785.  *
  786.  * Inputs : instance - instantiation of the 5380 driver.  
  787.  *
  788.  * Notes : I assume that the host, hostno, and id bits have been
  789.  *  set correctly.  I don't care about the irq and other fields. 
  790.  * 
  791.  */
  792. static void NCR5380_init (struct Scsi_Host *instance, int flags)
  793. {
  794.     int i;
  795.     SETUP_HOSTDATA(instance);
  796.     NCR5380_all_init();
  797.     hostdata->aborted = 0;
  798.     hostdata->id_mask = 1 << instance->this_id;
  799.     hostdata->id_higher_mask = 0;
  800.     for (i = hostdata->id_mask; i <= 0x80; i <<= 1)
  801. if (i > hostdata->id_mask)
  802.     hostdata->id_higher_mask |= i;
  803.     for (i = 0; i < 8; ++i)
  804. hostdata->busy[i] = 0;
  805. #ifdef SUPPORT_TAGS
  806.     init_tags();
  807. #endif
  808. #if defined (REAL_DMA)
  809.     hostdata->dma_len = 0;
  810. #endif
  811.     hostdata->targets_present = 0;
  812.     hostdata->connected = NULL;
  813.     hostdata->issue_queue = NULL;
  814.     hostdata->disconnected_queue = NULL;
  815.     hostdata->flags = FLAG_CHECK_LAST_BYTE_SENT;
  816.     if (!the_template) {
  817. the_template = instance->hostt;
  818. first_instance = instance;
  819.     }
  820. #ifndef AUTOSENSE
  821.     if ((instance->cmd_per_lun > 1) || (instance->can_queue > 1))
  822.  printk("scsi%d: WARNING : support for multiple outstanding commands enabledn"
  823.         "        without AUTOSENSE option, contingent allegiance conditions mayn"
  824.         "        be incorrectly cleared.n", HOSTNO);
  825. #endif /* def AUTOSENSE */
  826.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  827.     NCR5380_write(MODE_REG, MR_BASE);
  828.     NCR5380_write(TARGET_COMMAND_REG, 0);
  829.     NCR5380_write(SELECT_ENABLE_REG, 0);
  830. }
  831. /* 
  832.  * Function : int NCR5380_queue_command (Scsi_Cmnd *cmd, 
  833.  * void (*done)(Scsi_Cmnd *)) 
  834.  *
  835.  * Purpose :  enqueues a SCSI command
  836.  *
  837.  * Inputs : cmd - SCSI command, done - function called on completion, with
  838.  * a pointer to the command descriptor.
  839.  * 
  840.  * Returns : 0
  841.  *
  842.  * Side effects : 
  843.  *      cmd is added to the per instance issue_queue, with minor 
  844.  * twiddling done to the host specific fields of cmd.  If the 
  845.  * main coroutine is not running, it is restarted.
  846.  *
  847.  */
  848. /* Only make static if a wrapper function is used */
  849. #ifndef NCR5380_queue_command
  850. static
  851. #endif
  852. int NCR5380_queue_command (Scsi_Cmnd *cmd, void (*done)(Scsi_Cmnd *))
  853. {
  854.     SETUP_HOSTDATA(cmd->host);
  855.     Scsi_Cmnd *tmp;
  856.     int oldto;
  857.     unsigned long flags;
  858.     extern int update_timeout(Scsi_Cmnd * SCset, int timeout);
  859. #if (NDEBUG & NDEBUG_NO_WRITE)
  860.     switch (cmd->cmnd[0]) {
  861.     case WRITE_6:
  862.     case WRITE_10:
  863. printk(KERN_NOTICE "scsi%d: WRITE attempted with NO_WRITE debugging flag setn",
  864.        H_NO(cmd));
  865. cmd->result = (DID_ERROR << 16);
  866. done(cmd);
  867. return 0;
  868.     }
  869. #endif /* (NDEBUG & NDEBUG_NO_WRITE) */
  870. #ifdef NCR5380_STATS
  871. # if 0
  872.     if (!hostdata->connected && !hostdata->issue_queue &&
  873. !hostdata->disconnected_queue) {
  874. hostdata->timebase = jiffies;
  875.     }
  876. # endif
  877. # ifdef NCR5380_STAT_LIMIT
  878.     if (cmd->request_bufflen > NCR5380_STAT_LIMIT)
  879. # endif
  880. switch (cmd->cmnd[0])
  881. {
  882.     case WRITE:
  883.     case WRITE_6:
  884.     case WRITE_10:
  885. hostdata->time_write[cmd->target] -= (jiffies - hostdata->timebase);
  886. hostdata->bytes_write[cmd->target] += cmd->request_bufflen;
  887. hostdata->pendingw++;
  888. break;
  889.     case READ:
  890.     case READ_6:
  891.     case READ_10:
  892. hostdata->time_read[cmd->target] -= (jiffies - hostdata->timebase);
  893. hostdata->bytes_read[cmd->target] += cmd->request_bufflen;
  894. hostdata->pendingr++;
  895. break;
  896. }
  897. #endif
  898.     /* 
  899.      * We use the host_scribble field as a pointer to the next command  
  900.      * in a queue 
  901.      */
  902.     NEXT(cmd) = NULL;
  903.     cmd->scsi_done = done;
  904.     cmd->result = 0;
  905.     /* 
  906.      * Insert the cmd into the issue queue. Note that REQUEST SENSE 
  907.      * commands are added to the head of the queue since any command will
  908.      * clear the contingent allegiance condition that exists and the 
  909.      * sense data is only guaranteed to be valid while the condition exists.
  910.      */
  911.     save_flags(flags);
  912.     cli();
  913.     if (!(hostdata->issue_queue) || (cmd->cmnd[0] == REQUEST_SENSE)) {
  914. LIST(cmd, hostdata->issue_queue);
  915. NEXT(cmd) = hostdata->issue_queue;
  916. hostdata->issue_queue = cmd;
  917.     } else {
  918. for (tmp = (Scsi_Cmnd *)hostdata->issue_queue;
  919.      NEXT(tmp); tmp = NEXT(tmp))
  920.     ;
  921. LIST(cmd, tmp);
  922. NEXT(tmp) = cmd;
  923.     }
  924.     restore_flags(flags);
  925.     QU_PRINTK("scsi%d: command added to %s of queuen", H_NO(cmd),
  926.       (cmd->cmnd[0] == REQUEST_SENSE) ? "head" : "tail");
  927.     /* If queue_command() is called from an interrupt (real one or bottom
  928.      * half), we let queue_main() do the job of taking care about main. If it
  929.      * is already running, this is a no-op, else main will be queued.
  930.      *
  931.      * If we're not in an interrupt, we can call NCR5380_main()
  932.      * unconditionally, because it cannot be already running.
  933.      */
  934.     if (in_interrupt() > 0 || ((flags >> 8) & 7) >= 6)
  935. queue_main();
  936.     else
  937. NCR5380_main();
  938.     return 0;
  939. }
  940. /*
  941.  * Function : NCR5380_main (void) 
  942.  *
  943.  * Purpose : NCR5380_main is a coroutine that runs as long as more work can 
  944.  * be done on the NCR5380 host adapters in a system.  Both 
  945.  * NCR5380_queue_command() and NCR5380_intr() will try to start it 
  946.  * in case it is not running.
  947.  * 
  948.  * NOTE : NCR5380_main exits with interrupts *disabled*, the caller should 
  949.  *  reenable them.  This prevents reentrancy and kernel stack overflow.
  950.  */ 
  951.     
  952. static void NCR5380_main (void)
  953. {
  954.     Scsi_Cmnd *tmp, *prev;
  955.     struct Scsi_Host *instance = first_instance;
  956.     struct NCR5380_hostdata *hostdata = HOSTDATA(instance);
  957.     int done;
  958.     unsigned long flags;
  959.     
  960.     /*
  961.      * We run (with interrupts disabled) until we're sure that none of 
  962.      * the host adapters have anything that can be done, at which point 
  963.      * we set main_running to 0 and exit.
  964.      *
  965.      * Interrupts are enabled before doing various other internal 
  966.      * instructions, after we've decided that we need to run through
  967.      * the loop again.
  968.      *
  969.      * this should prevent any race conditions.
  970.      * 
  971.      * ++roman: Just disabling the NCR interrupt isn't sufficient here,
  972.      * because also a timer int can trigger an abort or reset, which can
  973.      * alter queues and touch the Falcon lock.
  974.      */
  975.     /* Tell int handlers main() is now already executing.  Note that
  976.        no races are possible here. If an int comes in before
  977.        'main_running' is set here, and queues/executes main via the
  978.        task queue, it doesn't do any harm, just this instance of main
  979.        won't find any work left to do. */
  980.     if (main_running)
  981.      return;
  982.     main_running = 1;
  983.     save_flags(flags);
  984.     do {
  985. cli(); /* Freeze request queues */
  986. done = 1;
  987. if (!hostdata->connected) {
  988.     MAIN_PRINTK( "scsi%d: not connectedn", HOSTNO );
  989.     /*
  990.      * Search through the issue_queue for a command destined
  991.      * for a target that's not busy.
  992.      */
  993. #if (NDEBUG & NDEBUG_LISTS)
  994.     for (tmp = (Scsi_Cmnd *) hostdata->issue_queue, prev = NULL;
  995.  tmp && (tmp != prev); prev = tmp, tmp = NEXT(tmp))
  996. ;
  997. /*printk("%p  ", tmp);*/
  998.     if ((tmp == prev) && tmp) printk(" LOOPn");/* else printk("n");*/
  999. #endif
  1000.     for (tmp = (Scsi_Cmnd *) hostdata->issue_queue, 
  1001.  prev = NULL; tmp; prev = tmp, tmp = NEXT(tmp) ) {
  1002. #if (NDEBUG & NDEBUG_LISTS)
  1003. if (prev != tmp)
  1004.     printk("MAIN tmp=%p   target=%d   busy=%d lun=%dn",
  1005.    tmp, tmp->target, hostdata->busy[tmp->target],
  1006.    tmp->lun);
  1007. #endif
  1008. /*  When we find one, remove it from the issue queue. */
  1009. if (
  1010. #ifdef SUPPORT_TAGS
  1011.     !is_lun_busy( tmp, tmp->cmnd[0] != REQUEST_SENSE)
  1012. #else
  1013.     !(hostdata->busy[tmp->target] & (1 << tmp->lun))
  1014. #endif
  1015.     ) {
  1016.     cli(); /* ++guenther: just to be sure, this must be atomic */
  1017.     if (prev) {
  1018.         REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
  1019. NEXT(prev) = NEXT(tmp);
  1020.     } else {
  1021.         REMOVE(-1, hostdata->issue_queue, tmp, NEXT(tmp));
  1022. hostdata->issue_queue = NEXT(tmp);
  1023.     }
  1024.     NEXT(tmp) = NULL;
  1025.     
  1026.     /* reenable interrupts after finding one */
  1027.     restore_flags(flags);
  1028.     
  1029.     /* 
  1030.      * Attempt to establish an I_T_L nexus here. 
  1031.      * On success, instance->hostdata->connected is set.
  1032.      * On failure, we must add the command back to the
  1033.      *   issue queue so we can keep trying.
  1034.      */
  1035.     MAIN_PRINTK("scsi%d: main(): command for target %d "
  1036. "lun %d removed from issue_queuen",
  1037. HOSTNO, tmp->target, tmp->lun);
  1038.     /* 
  1039.      * REQUEST SENSE commands are issued without tagged
  1040.      * queueing, even on SCSI-II devices because the 
  1041.      * contingent allegiance condition exists for the 
  1042.      * entire unit.
  1043.      */
  1044.     /* ++roman: ...and the standard also requires that
  1045.      * REQUEST SENSE command are untagged.
  1046.      */
  1047.     
  1048. #ifdef SUPPORT_TAGS
  1049.     cmd_get_tag( tmp, tmp->cmnd[0] != REQUEST_SENSE );
  1050. #endif
  1051.     if (!NCR5380_select(instance, tmp, 
  1052.     (tmp->cmnd[0] == REQUEST_SENSE) ? TAG_NONE : 
  1053.     TAG_NEXT)) {
  1054. break;
  1055.     } else {
  1056. cli();
  1057. LIST(tmp, hostdata->issue_queue);
  1058. NEXT(tmp) = hostdata->issue_queue;
  1059. hostdata->issue_queue = tmp;
  1060. #ifdef SUPPORT_TAGS
  1061. cmd_free_tag( tmp );
  1062. #endif
  1063. restore_flags(flags);
  1064. MAIN_PRINTK("scsi%d: main(): select() failed, "
  1065.     "returned to issue_queuen", HOSTNO);
  1066. if (hostdata->connected)
  1067.     break;
  1068.     }
  1069. } /* if target/lun/target queue is not busy */
  1070.     } /* for issue_queue */
  1071. } /* if (!hostdata->connected) */
  1072. if (hostdata->connected 
  1073. #ifdef REAL_DMA
  1074.     && !hostdata->dma_len
  1075. #endif
  1076.     ) {
  1077.     restore_flags(flags);
  1078.     MAIN_PRINTK("scsi%d: main: performing information transfern",
  1079. HOSTNO);
  1080.     NCR5380_information_transfer(instance);
  1081.     MAIN_PRINTK("scsi%d: main: done set falsen", HOSTNO);
  1082.     done = 0;
  1083. }
  1084.     } while (!done);
  1085.     /* Better allow ints _after_ 'main_running' has been cleared, else
  1086.        an interrupt could believe we'll pick up the work it left for
  1087.        us, but we won't see it anymore here... */
  1088.     main_running = 0;
  1089.     restore_flags(flags);
  1090. }
  1091. #ifdef REAL_DMA
  1092. /*
  1093.  * Function : void NCR5380_dma_complete (struct Scsi_Host *instance)
  1094.  *
  1095.  * Purpose : Called by interrupt handler when DMA finishes or a phase
  1096.  * mismatch occurs (which would finish the DMA transfer).  
  1097.  *
  1098.  * Inputs : instance - this instance of the NCR5380.
  1099.  *
  1100.  */
  1101. static void NCR5380_dma_complete( struct Scsi_Host *instance )
  1102. {
  1103.     SETUP_HOSTDATA(instance);
  1104.     int           transfered, saved_data = 0, overrun = 0, cnt, toPIO;
  1105.     unsigned char **data, p;
  1106.     volatile int  *count;
  1107.     if (!hostdata->connected) {
  1108. printk(KERN_WARNING "scsi%d: received end of DMA interrupt with "
  1109.        "no connected cmdn", HOSTNO);
  1110. return;
  1111.     }
  1112.     
  1113.     if (mac_read_overruns) {
  1114. p = hostdata->connected->SCp.phase;
  1115. if (p & SR_IO) {
  1116.     udelay(10);
  1117.     if ((((NCR5380_read(BUS_AND_STATUS_REG)) &
  1118.   (BASR_PHASE_MATCH|BASR_ACK)) ==
  1119.  (BASR_PHASE_MATCH|BASR_ACK))) {
  1120. saved_data = NCR5380_read(INPUT_DATA_REG);
  1121. overrun = 1;
  1122. DMA_PRINTK("scsi%d: read overrun handledn", HOSTNO);
  1123.     }
  1124. }
  1125.     }
  1126.     DMA_PRINTK("scsi%d: real DMA transfer complete, basr 0x%X, sr 0x%Xn",
  1127.        HOSTNO, NCR5380_read(BUS_AND_STATUS_REG),
  1128.        NCR5380_read(STATUS_REG));
  1129.     (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1130.     NCR5380_write(MODE_REG, MR_BASE);
  1131.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1132.     transfered = hostdata->dma_len - NCR5380_dma_residual(instance);
  1133.     hostdata->dma_len = 0;
  1134.     data = (unsigned char **) &(hostdata->connected->SCp.ptr);
  1135.     count = &(hostdata->connected->SCp.this_residual);
  1136.     *data += transfered;
  1137.     *count -= transfered;
  1138.     if (mac_read_overruns) {
  1139. if ((NCR5380_read(STATUS_REG) & PHASE_MASK) == p && (p & SR_IO)) {
  1140.     cnt = toPIO = mac_read_overruns;
  1141.     if (overrun) {
  1142. DMA_PRINTK("Got an input overrun, using saved byten");
  1143. *(*data)++ = saved_data;
  1144. (*count)--;
  1145. cnt--;
  1146. toPIO--;
  1147.     }
  1148.     DMA_PRINTK("Doing %d-byte PIO to 0x%08lxn", cnt, (long)*data);
  1149.     NCR5380_transfer_pio(instance, &p, &cnt, data);
  1150.     *count -= toPIO - cnt;
  1151. }
  1152.     }
  1153. }
  1154. #endif /* REAL_DMA */
  1155. /*
  1156.  * Function : void NCR5380_intr (int irq)
  1157.  * 
  1158.  * Purpose : handle interrupts, reestablishing I_T_L or I_T_L_Q nexuses
  1159.  * from the disconnected queue, and restarting NCR5380_main() 
  1160.  * as required.
  1161.  *
  1162.  * Inputs : int irq, irq that caused this interrupt.
  1163.  *
  1164.  */
  1165. static void NCR5380_intr (int irq, void *dev_id, struct pt_regs *regs)
  1166. {
  1167.     struct Scsi_Host *instance = first_instance;
  1168.     int done = 1;
  1169.     unsigned char basr;
  1170.     INT_PRINTK("scsi%d: NCR5380 irq triggeredn", HOSTNO);
  1171.     /* Look for pending interrupts */
  1172.     basr = NCR5380_read(BUS_AND_STATUS_REG);
  1173.     INT_PRINTK("scsi%d: BASR=%02xn", HOSTNO, basr);
  1174.     /* dispatch to appropriate routine if found and done=0 */
  1175.     if (basr & BASR_IRQ) {
  1176. NCR_PRINT(NDEBUG_INTR);
  1177. if ((NCR5380_read(STATUS_REG) & (SR_SEL|SR_IO)) == (SR_SEL|SR_IO)) {
  1178.     done = 0;
  1179.     ENABLE_IRQ();
  1180.     INT_PRINTK("scsi%d: SEL interruptn", HOSTNO);
  1181.     NCR5380_reselect(instance);
  1182.     (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1183. }
  1184. else if (basr & BASR_PARITY_ERROR) {
  1185.     INT_PRINTK("scsi%d: PARITY interruptn", HOSTNO);
  1186.     (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1187. }
  1188. else if ((NCR5380_read(STATUS_REG) & SR_RST) == SR_RST) {
  1189.     INT_PRINTK("scsi%d: RESET interruptn", HOSTNO);
  1190.     (void)NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1191. }
  1192. else {
  1193.     /*  
  1194.      * The rest of the interrupt conditions can occur only during a
  1195.      * DMA transfer
  1196.      */
  1197. #if defined(REAL_DMA)
  1198.     /*
  1199.      * We should only get PHASE MISMATCH and EOP interrupts if we have
  1200.      * DMA enabled, so do a sanity check based on the current setting
  1201.      * of the MODE register.
  1202.      */
  1203.     if ((NCR5380_read(MODE_REG) & MR_DMA_MODE) &&
  1204. ((basr & BASR_END_DMA_TRANSFER) || 
  1205.  !(basr & BASR_PHASE_MATCH))) {
  1206.     
  1207. INT_PRINTK("scsi%d: PHASE MISM or EOP interruptn", HOSTNO);
  1208. NCR5380_dma_complete( instance );
  1209. done = 0;
  1210. ENABLE_IRQ();
  1211.     } else
  1212. #endif /* REAL_DMA */
  1213.     {
  1214. /* MS: Ignore unknown phase mismatch interrupts (caused by EOP interrupt) */
  1215. if (basr & BASR_PHASE_MATCH)
  1216.     printk(KERN_NOTICE "scsi%d: unknown interrupt, "
  1217.    "BASR 0x%x, MR 0x%x, SR 0x%xn",
  1218.    HOSTNO, basr, NCR5380_read(MODE_REG),
  1219.    NCR5380_read(STATUS_REG));
  1220. (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1221.     }
  1222. } /* if !(SELECTION || PARITY) */
  1223.     } /* BASR & IRQ */
  1224.     else {
  1225. printk(KERN_NOTICE "scsi%d: interrupt without IRQ bit set in BASR, "
  1226.        "BASR 0x%X, MR 0x%X, SR 0x%xn", HOSTNO, basr,
  1227.        NCR5380_read(MODE_REG), NCR5380_read(STATUS_REG));
  1228. (void) NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1229.     }
  1230.     
  1231.     if (!done) {
  1232. INT_PRINTK("scsi%d: in int routine, calling mainn", HOSTNO);
  1233. /* Put a call to NCR5380_main() on the queue... */
  1234. queue_main();
  1235.     }
  1236. }
  1237. #ifdef NCR5380_STATS
  1238. static void collect_stats(struct NCR5380_hostdata* hostdata, Scsi_Cmnd* cmd)
  1239. {
  1240. # ifdef NCR5380_STAT_LIMIT
  1241.     if (cmd->request_bufflen > NCR5380_STAT_LIMIT)
  1242. # endif
  1243. switch (cmd->cmnd[0])
  1244. {
  1245.     case WRITE:
  1246.     case WRITE_6:
  1247.     case WRITE_10:
  1248. hostdata->time_write[cmd->target] += (jiffies - hostdata->timebase);
  1249. /*hostdata->bytes_write[cmd->target] += cmd->request_bufflen;*/
  1250. hostdata->pendingw--;
  1251. break;
  1252.     case READ:
  1253.     case READ_6:
  1254.     case READ_10:
  1255. hostdata->time_read[cmd->target] += (jiffies - hostdata->timebase);
  1256. /*hostdata->bytes_read[cmd->target] += cmd->request_bufflen;*/
  1257. hostdata->pendingr--;
  1258. break;
  1259. }
  1260. }
  1261. #endif
  1262. /* 
  1263.  * Function : int NCR5380_select (struct Scsi_Host *instance, Scsi_Cmnd *cmd, 
  1264.  * int tag);
  1265.  *
  1266.  * Purpose : establishes I_T_L or I_T_L_Q nexus for new or existing command,
  1267.  * including ARBITRATION, SELECTION, and initial message out for 
  1268.  * IDENTIFY and queue messages. 
  1269.  *
  1270.  * Inputs : instance - instantiation of the 5380 driver on which this 
  1271.  *  target lives, cmd - SCSI command to execute, tag - set to TAG_NEXT for 
  1272.  * new tag, TAG_NONE for untagged queueing, otherwise set to the tag for 
  1273.  * the command that is presently connected.
  1274.  * 
  1275.  * Returns : -1 if selection could not execute for some reason,
  1276.  * 0 if selection succeeded or failed because the target 
  1277.  *  did not respond.
  1278.  *
  1279.  * Side effects : 
  1280.  *  If bus busy, arbitration failed, etc, NCR5380_select() will exit 
  1281.  * with registers as they should have been on entry - ie
  1282.  * SELECT_ENABLE will be set appropriately, the NCR5380
  1283.  * will cease to drive any SCSI bus signals.
  1284.  *
  1285.  * If successful : I_T_L or I_T_L_Q nexus will be established, 
  1286.  * instance->connected will be set to cmd.  
  1287.  *  SELECT interrupt will be disabled.
  1288.  *
  1289.  * If failed (no target) : cmd->scsi_done() will be called, and the 
  1290.  * cmd->result host byte set to DID_BAD_TARGET.
  1291.  */
  1292. static int NCR5380_select (struct Scsi_Host *instance, Scsi_Cmnd *cmd, int tag)
  1293. {
  1294.     SETUP_HOSTDATA(instance);
  1295.     unsigned char tmp[3], phase;
  1296.     unsigned char *data;
  1297.     int len;
  1298.     unsigned long timeout;
  1299.     unsigned long flags;
  1300.     hostdata->restart_select = 0;
  1301.     NCR_PRINT(NDEBUG_ARBITRATION);
  1302.     ARB_PRINTK("scsi%d: starting arbitration, id = %dn", HOSTNO,
  1303.        instance->this_id);
  1304.     /* 
  1305.      * Set the phase bits to 0, otherwise the NCR5380 won't drive the 
  1306.      * data bus during SELECTION.
  1307.      */
  1308.     save_flags(flags);
  1309.     cli();
  1310.     if (hostdata->connected) {
  1311. restore_flags(flags);
  1312. return -1;
  1313.     }
  1314.     NCR5380_write(TARGET_COMMAND_REG, 0);
  1315.     /* 
  1316.      * Start arbitration.
  1317.      */
  1318.     
  1319.     NCR5380_write(OUTPUT_DATA_REG, hostdata->id_mask);
  1320.     NCR5380_write(MODE_REG, MR_ARBITRATE);
  1321.     restore_flags(flags);
  1322.     /* Wait for arbitration logic to complete */
  1323. #if NCR_TIMEOUT
  1324.     {
  1325.       unsigned long timeout = jiffies + 2*NCR_TIMEOUT;
  1326.       while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS)
  1327.    && time_before(jiffies, timeout) && !hostdata->connected)
  1328. ;
  1329.       if (time_after_eq(jiffies, timeout))
  1330.       {
  1331. printk("scsi : arbitration timeout at %dn", __LINE__);
  1332. NCR5380_write(MODE_REG, MR_BASE);
  1333. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1334. return -1;
  1335.       }
  1336.     }
  1337. #else /* NCR_TIMEOUT */
  1338.     while (!(NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_PROGRESS)
  1339.  && !hostdata->connected);
  1340. #endif
  1341.     ARB_PRINTK("scsi%d: arbitration completen", HOSTNO);
  1342.     if (hostdata->connected) {
  1343. NCR5380_write(MODE_REG, MR_BASE); 
  1344. return -1;
  1345.     }
  1346.     /* 
  1347.      * The arbitration delay is 2.2us, but this is a minimum and there is 
  1348.      * no maximum so we can safely sleep for ceil(2.2) usecs to accommodate
  1349.      * the integral nature of udelay().
  1350.      *
  1351.      */
  1352.     udelay(3);
  1353.     /* Check for lost arbitration */
  1354.     if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
  1355. (NCR5380_read(CURRENT_SCSI_DATA_REG) & hostdata->id_higher_mask) ||
  1356. (NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
  1357. hostdata->connected) {
  1358. NCR5380_write(MODE_REG, MR_BASE); 
  1359. ARB_PRINTK("scsi%d: lost arbitration, deasserting MR_ARBITRATEn",
  1360.    HOSTNO);
  1361. return -1;
  1362.     }
  1363.      /* after/during arbitration, BSY should be asserted.
  1364. IBM DPES-31080 Version S31Q works now */
  1365.      /* Tnx to Thomas_Roesch@m2.maus.de for finding this! (Roman) */
  1366.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_SEL |
  1367.  ICR_ASSERT_BSY ) ;
  1368.     
  1369.     if ((NCR5380_read(INITIATOR_COMMAND_REG) & ICR_ARBITRATION_LOST) ||
  1370. hostdata->connected) {
  1371. NCR5380_write(MODE_REG, MR_BASE);
  1372. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1373. ARB_PRINTK("scsi%d: lost arbitration, deasserting ICR_ASSERT_SELn",
  1374.    HOSTNO);
  1375. return -1;
  1376.     }
  1377.     /* 
  1378.      * Again, bus clear + bus settle time is 1.2us, however, this is 
  1379.      * a minimum so we'll udelay ceil(1.2)
  1380.      */
  1381. #ifdef CONFIG_ATARI_SCSI_TOSHIBA_DELAY
  1382.     /* ++roman: But some targets (see above :-) seem to need a bit more... */
  1383.     udelay(15);
  1384. #else
  1385.     udelay(2);
  1386. #endif
  1387.     
  1388.     if (hostdata->connected) {
  1389. NCR5380_write(MODE_REG, MR_BASE);
  1390. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1391. return -1;
  1392.     }
  1393.     ARB_PRINTK("scsi%d: won arbitrationn", HOSTNO);
  1394.     /* 
  1395.      * Now that we have won arbitration, start Selection process, asserting 
  1396.      * the host and target ID's on the SCSI bus.
  1397.      */
  1398.     NCR5380_write(OUTPUT_DATA_REG, (hostdata->id_mask | (1 << cmd->target)));
  1399.     /* 
  1400.      * Raise ATN while SEL is true before BSY goes false from arbitration,
  1401.      * since this is the only way to guarantee that we'll get a MESSAGE OUT
  1402.      * phase immediately after selection.
  1403.      */
  1404.     NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_BSY | 
  1405. ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_SEL ));
  1406.     NCR5380_write(MODE_REG, MR_BASE);
  1407.     /* 
  1408.      * Reselect interrupts must be turned off prior to the dropping of BSY,
  1409.      * otherwise we will trigger an interrupt.
  1410.      */
  1411.     if (hostdata->connected) {
  1412. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1413. return -1;
  1414.     }
  1415.     NCR5380_write(SELECT_ENABLE_REG, 0);
  1416.     /*
  1417.      * The initiator shall then wait at least two deskew delays and release 
  1418.      * the BSY signal.
  1419.      */
  1420.     udelay(1);        /* wingel -- wait two bus deskew delay >2*45ns */
  1421.     /* Reset BSY */
  1422.     NCR5380_write(INITIATOR_COMMAND_REG, (ICR_BASE | ICR_ASSERT_DATA | 
  1423. ICR_ASSERT_ATN | ICR_ASSERT_SEL));
  1424.     /* 
  1425.      * Something weird happens when we cease to drive BSY - looks
  1426.      * like the board/chip is letting us do another read before the 
  1427.      * appropriate propagation delay has expired, and we're confusing
  1428.      * a BSY signal from ourselves as the target's response to SELECTION.
  1429.      *
  1430.      * A small delay (the 'C++' frontend breaks the pipeline with an
  1431.      * unnecessary jump, making it work on my 386-33/Trantor T128, the
  1432.      * tighter 'C' code breaks and requires this) solves the problem - 
  1433.      * the 1 us delay is arbitrary, and only used because this delay will 
  1434.      * be the same on other platforms and since it works here, it should 
  1435.      * work there.
  1436.      *
  1437.      * wingel suggests that this could be due to failing to wait
  1438.      * one deskew delay.
  1439.      */
  1440.     udelay(1);
  1441.     SEL_PRINTK("scsi%d: selecting target %dn", HOSTNO, cmd->target);
  1442.     /* 
  1443.      * The SCSI specification calls for a 250 ms timeout for the actual 
  1444.      * selection.
  1445.      */
  1446.     timeout = jiffies + 25; 
  1447.     /* 
  1448.      * XXX very interesting - we're seeing a bounce where the BSY we 
  1449.      * asserted is being reflected / still asserted (propagation delay?)
  1450.      * and it's detecting as true.  Sigh.
  1451.      */
  1452. #if 0
  1453.     /* ++roman: If a target conformed to the SCSI standard, it wouldn't assert
  1454.      * IO while SEL is true. But again, there are some disks out the in the
  1455.      * world that do that nevertheless. (Somebody claimed that this announces
  1456.      * reselection capability of the target.) So we better skip that test and
  1457.      * only wait for BSY... (Famous german words: Der Kl黦ere gibt nach :-)
  1458.      */
  1459.     while (time_before(jiffies, timeout) && !(NCR5380_read(STATUS_REG) & 
  1460. (SR_BSY | SR_IO)));
  1461.     if ((NCR5380_read(STATUS_REG) & (SR_SEL | SR_IO)) == 
  1462.     (SR_SEL | SR_IO)) {
  1463.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1464.     NCR5380_reselect(instance);
  1465.     printk (KERN_ERR "scsi%d: reselection after won arbitration?n",
  1466.     HOSTNO);
  1467.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1468.     return -1;
  1469.     }
  1470. #else
  1471.     while (time_before(jiffies, timeout) && !(NCR5380_read(STATUS_REG) & SR_BSY));
  1472. #endif
  1473.     /* 
  1474.      * No less than two deskew delays after the initiator detects the 
  1475.      * BSY signal is true, it shall release the SEL signal and may 
  1476.      * change the DATA BUS.                                     -wingel
  1477.      */
  1478.     udelay(1);
  1479.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1480.     if (!(NCR5380_read(STATUS_REG) & SR_BSY)) {
  1481. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1482. if (hostdata->targets_present & (1 << cmd->target)) {
  1483.     printk(KERN_ERR "scsi%d: weirdnessn", HOSTNO);
  1484.     if (hostdata->restart_select)
  1485. printk(KERN_NOTICE "trestart selectn");
  1486.     NCR_PRINT(NDEBUG_ANY);
  1487.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1488.     return -1;
  1489. }
  1490. cmd->result = DID_BAD_TARGET << 16;
  1491. #ifdef NCR5380_STATS
  1492. collect_stats(hostdata, cmd);
  1493. #endif
  1494. #ifdef SUPPORT_TAGS
  1495. cmd_free_tag( cmd );
  1496. #endif
  1497. cmd->scsi_done(cmd);
  1498. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1499. SEL_PRINTK("scsi%d: target did not respond within 250msn", HOSTNO);
  1500. NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  1501. return 0;
  1502.     } 
  1503.     hostdata->targets_present |= (1 << cmd->target);
  1504.     /*
  1505.      * Since we followed the SCSI spec, and raised ATN while SEL 
  1506.      * was true but before BSY was false during selection, the information
  1507.      * transfer phase should be a MESSAGE OUT phase so that we can send the
  1508.      * IDENTIFY message.
  1509.      * 
  1510.      * If SCSI-II tagged queuing is enabled, we also send a SIMPLE_QUEUE_TAG
  1511.      * message (2 bytes) with a tag ID that we increment with every command
  1512.      * until it wraps back to 0.
  1513.      *
  1514.      * XXX - it turns out that there are some broken SCSI-II devices,
  1515.      *      which claim to support tagged queuing but fail when more than
  1516.      *      some number of commands are issued at once.
  1517.      */
  1518.     /* Wait for start of REQ/ACK handshake */
  1519.     while (!(NCR5380_read(STATUS_REG) & SR_REQ));
  1520.     SEL_PRINTK("scsi%d: target %d selected, going into MESSAGE OUT phase.n",
  1521.        HOSTNO, cmd->target);
  1522.     tmp[0] = IDENTIFY(1, cmd->lun);
  1523. #ifdef SUPPORT_TAGS
  1524.     if (cmd->tag != TAG_NONE) {
  1525. tmp[1] = hostdata->last_message = SIMPLE_QUEUE_TAG;
  1526. tmp[2] = cmd->tag;
  1527. len = 3;
  1528.     } else 
  1529. len = 1;
  1530. #else
  1531.     len = 1;
  1532.     cmd->tag=0;
  1533. #endif /* SUPPORT_TAGS */
  1534.     /* Send message(s) */
  1535.     data = tmp;
  1536.     phase = PHASE_MSGOUT;
  1537.     NCR5380_transfer_pio(instance, &phase, &len, &data);
  1538.     SEL_PRINTK("scsi%d: nexus established.n", HOSTNO);
  1539.     /* XXX need to handle errors here */
  1540.     hostdata->connected = cmd;
  1541. #ifndef SUPPORT_TAGS
  1542.     hostdata->busy[cmd->target] |= (1 << cmd->lun);
  1543. #endif    
  1544.     initialize_SCp(cmd);
  1545.     return 0;
  1546. }
  1547. /* 
  1548.  * Function : int NCR5380_transfer_pio (struct Scsi_Host *instance, 
  1549.  *      unsigned char *phase, int *count, unsigned char **data)
  1550.  *
  1551.  * Purpose : transfers data in given phase using polled I/O
  1552.  *
  1553.  * Inputs : instance - instance of driver, *phase - pointer to 
  1554.  * what phase is expected, *count - pointer to number of 
  1555.  * bytes to transfer, **data - pointer to data pointer.
  1556.  * 
  1557.  * Returns : -1 when different phase is entered without transferring
  1558.  * maximum number of bytes, 0 if all bytes are transfered or exit
  1559.  * is in same phase.
  1560.  *
  1561.  *  Also, *phase, *count, *data are modified in place.
  1562.  *
  1563.  * XXX Note : handling for bus free may be useful.
  1564.  */
  1565. /*
  1566.  * Note : this code is not as quick as it could be, however it 
  1567.  * IS 100% reliable, and for the actual data transfer where speed
  1568.  * counts, we will always do a pseudo DMA or DMA transfer.
  1569.  */
  1570. static int NCR5380_transfer_pio( struct Scsi_Host *instance, 
  1571.  unsigned char *phase, int *count,
  1572.  unsigned char **data)
  1573. {
  1574.     register unsigned char p = *phase, tmp;
  1575.     register int c = *count;
  1576.     register unsigned char *d = *data;
  1577.     /* 
  1578.      * The NCR5380 chip will only drive the SCSI bus when the 
  1579.      * phase specified in the appropriate bits of the TARGET COMMAND
  1580.      * REGISTER match the STATUS REGISTER
  1581.      */
  1582.     NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
  1583.     do {
  1584. /* 
  1585.  * Wait for assertion of REQ, after which the phase bits will be 
  1586.  * valid 
  1587.  */
  1588. while (!((tmp = NCR5380_read(STATUS_REG)) & SR_REQ));
  1589. HSH_PRINTK("scsi%d: REQ detectedn", HOSTNO);
  1590. /* Check for phase mismatch */
  1591. if ((tmp & PHASE_MASK) != p) {
  1592.     PIO_PRINTK("scsi%d: phase mismatchn", HOSTNO);
  1593.     NCR_PRINT_PHASE(NDEBUG_PIO);
  1594.     break;
  1595. }
  1596. /* Do actual transfer from SCSI bus to / from memory */
  1597. if (!(p & SR_IO)) 
  1598.     NCR5380_write(OUTPUT_DATA_REG, *d);
  1599. else 
  1600.     *d = NCR5380_read(CURRENT_SCSI_DATA_REG);
  1601. ++d;
  1602. /* 
  1603.  * The SCSI standard suggests that in MSGOUT phase, the initiator
  1604.  * should drop ATN on the last byte of the message phase
  1605.  * after REQ has been asserted for the handshake but before
  1606.  * the initiator raises ACK.
  1607.  */
  1608. if (!(p & SR_IO)) {
  1609.     if (!((p & SR_MSG) && c > 1)) {
  1610. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | 
  1611.     ICR_ASSERT_DATA);
  1612. NCR_PRINT(NDEBUG_PIO);
  1613. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | 
  1614. ICR_ASSERT_DATA | ICR_ASSERT_ACK);
  1615.     } else {
  1616. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE |
  1617.     ICR_ASSERT_DATA | ICR_ASSERT_ATN);
  1618. NCR_PRINT(NDEBUG_PIO);
  1619. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | 
  1620.     ICR_ASSERT_DATA | ICR_ASSERT_ATN | ICR_ASSERT_ACK);
  1621.     }
  1622. } else {
  1623.     NCR_PRINT(NDEBUG_PIO);
  1624.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ACK);
  1625. }
  1626. while (NCR5380_read(STATUS_REG) & SR_REQ);
  1627. HSH_PRINTK("scsi%d: req false, handshake completen", HOSTNO);
  1628. /*
  1629.  * We have several special cases to consider during REQ/ACK handshaking : 
  1630.  * 1.  We were in MSGOUT phase, and we are on the last byte of the 
  1631.  * message.  ATN must be dropped as ACK is dropped.
  1632.  *
  1633.  * 2.  We are in a MSGIN phase, and we are on the last byte of the  
  1634.  * message.  We must exit with ACK asserted, so that the calling
  1635.  * code may raise ATN before dropping ACK to reject the message.
  1636.  *
  1637.  * 3.  ACK and ATN are clear and the target may proceed as normal.
  1638.  */
  1639. if (!(p == PHASE_MSGIN && c == 1)) {  
  1640.     if (p == PHASE_MSGOUT && c > 1)
  1641. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1642.     else
  1643. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1644.     } while (--c);
  1645.     PIO_PRINTK("scsi%d: residual %dn", HOSTNO, c);
  1646.     *count = c;
  1647.     *data = d;
  1648.     tmp = NCR5380_read(STATUS_REG);
  1649.     /* The phase read from the bus is valid if either REQ is (already)
  1650.      * asserted or if ACK hasn't been released yet. The latter is the case if
  1651.      * we're in MSGIN and all wanted bytes have been received. */
  1652.     if ((tmp & SR_REQ) || (p == PHASE_MSGIN && c == 0))
  1653. *phase = tmp & PHASE_MASK;
  1654.     else 
  1655. *phase = PHASE_UNKNOWN;
  1656.     if (!c || (*phase == p))
  1657. return 0;
  1658.     else 
  1659. return -1;
  1660. }
  1661. /*
  1662.  * Function : do_abort (Scsi_Host *host)
  1663.  * 
  1664.  * Purpose : abort the currently established nexus.  Should only be 
  1665.  *  called from a routine which can drop into a 
  1666.  * 
  1667.  * Returns : 0 on success, -1 on failure.
  1668.  */
  1669. static int do_abort (struct Scsi_Host *host) 
  1670. {
  1671.     unsigned char tmp, *msgptr, phase;
  1672.     int len;
  1673.     /* Request message out phase */
  1674.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1675.     /* 
  1676.      * Wait for the target to indicate a valid phase by asserting 
  1677.      * REQ.  Once this happens, we'll have either a MSGOUT phase 
  1678.      * and can immediately send the ABORT message, or we'll have some 
  1679.      * other phase and will have to source/sink data.
  1680.      * 
  1681.      * We really don't care what value was on the bus or what value
  1682.      * the target sees, so we just handshake.
  1683.      */
  1684.     
  1685.     while (!(tmp = NCR5380_read(STATUS_REG)) & SR_REQ);
  1686.     NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
  1687.     if ((tmp & PHASE_MASK) != PHASE_MSGOUT) {
  1688. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | 
  1689.       ICR_ASSERT_ACK);
  1690. while (NCR5380_read(STATUS_REG) & SR_REQ);
  1691. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN);
  1692.     }
  1693.    
  1694.     tmp = ABORT;
  1695.     msgptr = &tmp;
  1696.     len = 1;
  1697.     phase = PHASE_MSGOUT;
  1698.     NCR5380_transfer_pio (host, &phase, &len, &msgptr);
  1699.     /*
  1700.      * If we got here, and the command completed successfully,
  1701.      * we're about to go into bus free state.
  1702.      */
  1703.     return len ? -1 : 0;
  1704. }
  1705. #if defined(REAL_DMA) || defined(PSEUDO_DMA)
  1706. /* 
  1707.  * Function : int NCR5380_transfer_dma (struct Scsi_Host *instance, 
  1708.  *      unsigned char *phase, int *count, unsigned char **data)
  1709.  *
  1710.  * Purpose : transfers data in given phase using either real
  1711.  * or pseudo DMA.
  1712.  *
  1713.  * Inputs : instance - instance of driver, *phase - pointer to 
  1714.  * what phase is expected, *count - pointer to number of 
  1715.  * bytes to transfer, **data - pointer to data pointer.
  1716.  * 
  1717.  * Returns : -1 when different phase is entered without transferring
  1718.  * maximum number of bytes, 0 if all bytes or transfered or exit
  1719.  * is in same phase.
  1720.  *
  1721.  *  Also, *phase, *count, *data are modified in place.
  1722.  *
  1723.  */
  1724. static int NCR5380_transfer_dma( struct Scsi_Host *instance, 
  1725.  unsigned char *phase, int *count,
  1726.  unsigned char **data)
  1727. {
  1728.     SETUP_HOSTDATA(instance);
  1729.     register int c = *count;
  1730.     register unsigned char p = *phase;
  1731.     register unsigned char *d = *data;
  1732.     register int foo;
  1733.     unsigned char tmp;
  1734.     unsigned long flags;
  1735.     if ((tmp = (NCR5380_read(STATUS_REG) & PHASE_MASK)) != p) {
  1736.         *phase = tmp;
  1737.         return -1;
  1738.     }
  1739.     if (mac_read_overruns && (p & SR_IO)) {
  1740. c -= mac_read_overruns;
  1741.     }
  1742.     DMA_PRINTK("scsi%d: initializing DMA for %s, %d bytes %s %pn",
  1743.        HOSTNO, (p & SR_IO) ? "reading" : "writing",
  1744.        c, (p & SR_IO) ? "to" : "from", d);
  1745.     NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(p));
  1746. #ifdef REAL_DMA
  1747.     NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_EOP_INTR | MR_MONITOR_BSY);
  1748. #else /* PSEUDO_DMA! */
  1749. #if defined(PSEUDO_DMA) && !defined(UNSAFE)
  1750.     save_flags(flags);
  1751.     cli();
  1752. #endif
  1753.     /* KLL May need eop and parity in 53c400 */
  1754.     if (hostdata->flags & FLAG_NCR53C400)
  1755. NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE | MR_ENABLE_PAR_CHECK
  1756. | MR_ENABLE_PAR_INTR | MR_ENABLE_EOP_INTR | MR_DMA_MODE
  1757. | MR_MONITOR_BSY);
  1758.     else
  1759. #ifndef EMULATE_PSEUDO_DMA
  1760. NCR5380_write(MODE_REG, MR_BASE | MR_DMA_MODE);
  1761. #else
  1762.         NCR5380_write(MODE_REG, MR_BASE);
  1763. #endif
  1764. #endif /* def REAL_DMA  */
  1765. #ifdef REAL_DMA
  1766.     /* On the Medusa, it is a must to initialize the DMA before
  1767.      * starting the NCR. This is also the cleaner way for the TT.
  1768.      */
  1769.     save_flags(flags);
  1770.     cli();
  1771.     hostdata->dma_len = (p & SR_IO) ?
  1772.         NCR5380_dma_read_setup(instance, d, c) : 
  1773.         NCR5380_dma_write_setup(instance, d, c);
  1774.     restore_flags(flags);
  1775. #endif /* def REAL_DMA */
  1776. #ifndef EMULATE_PSEUDO_DMA
  1777.     if (p & SR_IO)
  1778. NCR5380_write(START_DMA_INITIATOR_RECEIVE_REG, 0);
  1779.     else {
  1780. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_DATA);
  1781. NCR5380_write(START_DMA_SEND_REG, 0);
  1782.     }
  1783. #else
  1784.     hostdata->dma_len = c;
  1785. #endif
  1786. #if defined(REAL_DMA)
  1787.     return 0;
  1788. #else /* defined(PSEUDO_DMA) */
  1789.     if (p & SR_IO) {
  1790. #ifdef DMA_WORKS_RIGHT
  1791.         foo = NCR5380_pread(instance, d, c);
  1792. #else
  1793. int diff = 1;
  1794. if (hostdata->flags & FLAG_NCR53C400) {
  1795.     diff=0;
  1796. }
  1797. if (!(foo = NCR5380_pread(instance, d, c - diff))) {
  1798.     /*
  1799.      * We can't disable DMA mode after successfully transferring 
  1800.      * what we plan to be the last byte, since that would open up
  1801.      * a race condition where if the target asserted REQ before 
  1802.      * we got the DMA mode reset, the NCR5380 would have latched
  1803.      * an additional byte into the INPUT DATA register and we'd
  1804.      * have dropped it.
  1805.      * 
  1806.      * The workaround was to transfer one fewer bytes than we 
  1807.      * intended to with the pseudo-DMA read function, wait for 
  1808.      * the chip to latch the last byte, read it, and then disable
  1809.      * pseudo-DMA mode.
  1810.      * 
  1811.      * After REQ is asserted, the NCR5380 asserts DRQ and ACK.
  1812.      * REQ is deasserted when ACK is asserted, and not reasserted
  1813.      * until ACK goes false.  Since the NCR5380 won't lower ACK
  1814.      * until DACK is asserted, which won't happen unless we twiddle
  1815.      * the DMA port or we take the NCR5380 out of DMA mode, we 
  1816.      * can guarantee that we won't handshake another extra 
  1817.      * byte.
  1818.           */
  1819.     if (!(hostdata->flags & FLAG_NCR53C400)) {
  1820. while (!(NCR5380_read(BUS_AND_STATUS_REG) & BASR_DRQ));
  1821. /* Wait for clean handshake */
  1822. while (NCR5380_read(STATUS_REG) & SR_REQ);
  1823. d[c - 1] = NCR5380_read(INPUT_DATA_REG);
  1824.     }
  1825. }
  1826. #endif
  1827.     } else {
  1828. #ifdef DMA_WORKS_RIGHT
  1829.         foo = NCR5380_pwrite(instance, d, c);
  1830. #else
  1831.         int timeout;
  1832. #if (NDEBUG & NDEBUG_C400_PWRITE)
  1833. printk("About to pwrite %d bytesn", c);
  1834. #endif
  1835. if (!(foo = NCR5380_pwrite(instance, d, c))) {
  1836.     /*
  1837.      * Wait for the last byte to be sent.  If REQ is being asserted for 
  1838.      * the byte we're interested, we'll ACK it and it will go false.  
  1839.      */
  1840.     if (!(hostdata->flags & FLAG_HAS_LAST_BYTE_SENT)) {
  1841. timeout = 20000;
  1842. #if 1
  1843. #if 1
  1844. while (!(NCR5380_read(BUS_AND_STATUS_REG) & 
  1845. BASR_DRQ) && (NCR5380_read(BUS_AND_STATUS_REG) &
  1846. BASR_PHASE_MATCH));
  1847. #else
  1848. if (NCR5380_read(STATUS_REG) & SR_REQ) {
  1849.     for (; timeout && 
  1850. !(NCR5380_read(BUS_AND_STATUS_REG) & BASR_ACK); 
  1851. --timeout);
  1852.     for (; timeout && (NCR5380_read(STATUS_REG) & SR_REQ);
  1853. --timeout);
  1854. #endif
  1855. #if (NDEBUG & NDEBUG_LAST_BYTE_SENT)
  1856. if (!timeout) 
  1857.     printk("scsi%d : timed out on last byten",
  1858.     instance->host_no);
  1859. #endif
  1860. if (hostdata->flags & FLAG_CHECK_LAST_BYTE_SENT) {
  1861.     hostdata->flags &= ~FLAG_CHECK_LAST_BYTE_SENT;
  1862.     if (NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT) {
  1863. hostdata->flags |= FLAG_HAS_LAST_BYTE_SENT;
  1864. #if (NDEBUG & NDEBUG_LAST_BYTE_SENT)
  1865. printk("scsi%d : last bit sent worksn", 
  1866.     instance->host_no);
  1867. #endif
  1868.     }
  1869. }
  1870.     } else  {
  1871. #if (NDEBUG & NDEBUG_C400_PWRITE)
  1872. printk("Waiting for LASTBYTEn");
  1873. #endif
  1874. while (!(NCR5380_read(TARGET_COMMAND_REG) & TCR_LAST_BYTE_SENT));
  1875. #if (NDEBUG & NDEBUG_C400_PWRITE)
  1876. printk("Got LASTBYTEn");
  1877. #endif
  1878.     }
  1879. #else
  1880.     udelay (5);
  1881. #endif
  1882. }
  1883. #endif
  1884.     }
  1885.     NCR5380_write(MODE_REG, MR_BASE);
  1886.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  1887.     if ((!(p & SR_IO)) && (hostdata->flags & FLAG_NCR53C400)) {
  1888. #if (NDEBUG & NDEBUG_C400_PWRITE)
  1889. printk("53C400w: Checking for IRQn");
  1890. #endif
  1891. if (NCR5380_read(BUS_AND_STATUS_REG) & BASR_IRQ) {
  1892. #if (NDEBUG & NDEBUG_C400_PWRITE)
  1893.     printk("53C400w:    got it, reading reset interrupt regn");
  1894. #endif
  1895.     NCR5380_read(RESET_PARITY_INTERRUPT_REG);
  1896. } else {
  1897.     printk("53C400w:    IRQ NOT THERE!n");
  1898. }
  1899.     }
  1900.     *data = d + c;
  1901.     *count = 0;
  1902.     *phase = NCR5380_read(STATUS_REG) & PHASE_MASK;
  1903. #if 0
  1904.     NCR5380_print_phase(instance);
  1905. #endif
  1906. #if defined(PSEUDO_DMA) && !defined(UNSAFE)
  1907.     restore_flags(flags);
  1908. #endif /* defined(REAL_DMA_POLL) */
  1909.     return foo;
  1910. #endif /* def REAL_DMA */
  1911. }
  1912. #endif /* defined(REAL_DMA) || defined(PSEUDO_DMA) */
  1913. /*
  1914.  * Function : NCR5380_information_transfer (struct Scsi_Host *instance)
  1915.  *
  1916.  * Purpose : run through the various SCSI phases and do as the target 
  1917.  *  directs us to.  Operates on the currently connected command, 
  1918.  * instance->connected.
  1919.  *
  1920.  * Inputs : instance, instance for which we are doing commands
  1921.  *
  1922.  * Side effects : SCSI things happen, the disconnected queue will be 
  1923.  * modified if a command disconnects, *instance->connected will
  1924.  * change.
  1925.  *
  1926.  * XXX Note : we need to watch for bus free or a reset condition here 
  1927.  *  to recover from an unexpected bus free condition.
  1928.  */
  1929.  
  1930. static void NCR5380_information_transfer (struct Scsi_Host *instance)
  1931. {
  1932.     SETUP_HOSTDATA(instance);
  1933.     unsigned long flags;
  1934.     unsigned char msgout = NOP;
  1935.     int sink = 0;
  1936.     int len;
  1937. #if defined(PSEUDO_DMA) || defined(REAL_DMA_POLL)
  1938.     int transfersize;
  1939. #endif
  1940.     unsigned char *data;
  1941.     unsigned char phase, tmp, extended_msg[10], old_phase=0xff;
  1942.     Scsi_Cmnd *cmd = (Scsi_Cmnd *) hostdata->connected;
  1943.     while (1) {
  1944. tmp = NCR5380_read(STATUS_REG);
  1945. /* We only have a valid SCSI phase when REQ is asserted */
  1946. if (tmp & SR_REQ) {
  1947.     phase = (tmp & PHASE_MASK); 
  1948.     if (phase != old_phase) {
  1949. old_phase = phase;
  1950. NCR_PRINT_PHASE(NDEBUG_INFORMATION);
  1951.     }
  1952.     
  1953.     if (sink && (phase != PHASE_MSGOUT)) {
  1954. NCR5380_write(TARGET_COMMAND_REG, PHASE_SR_TO_TCR(tmp));
  1955. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_ATN | 
  1956.     ICR_ASSERT_ACK);
  1957. while (NCR5380_read(STATUS_REG) & SR_REQ);
  1958. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | 
  1959.     ICR_ASSERT_ATN);
  1960. sink = 0;
  1961. continue;
  1962.     }
  1963.     switch (phase) {
  1964.     case PHASE_DATAOUT:
  1965. #if (NDEBUG & NDEBUG_NO_DATAOUT)
  1966. printk("scsi%d: NDEBUG_NO_DATAOUT set, attempted DATAOUT "
  1967.        "abortedn", HOSTNO);
  1968. sink = 1;
  1969. do_abort(instance);
  1970. cmd->result = DID_ERROR  << 16;
  1971. cmd->done(cmd);
  1972. return;
  1973. #endif
  1974.     case PHASE_DATAIN:
  1975. /* 
  1976.  * If there is no room left in the current buffer in the
  1977.  * scatter-gather list, move onto the next one.
  1978.  */
  1979. if (!cmd->SCp.this_residual && cmd->SCp.buffers_residual) {
  1980.     ++cmd->SCp.buffer;
  1981.     --cmd->SCp.buffers_residual;
  1982.     cmd->SCp.this_residual = cmd->SCp.buffer->length;
  1983.     cmd->SCp.ptr = cmd->SCp.buffer->address;
  1984.     /* ++roman: Try to merge some scatter-buffers if
  1985.      * they are at contiguous physical addresses.
  1986.      */
  1987.     merge_contiguous_buffers( cmd );
  1988.     INF_PRINTK("scsi%d: %d bytes and %d buffers leftn",
  1989.        HOSTNO, cmd->SCp.this_residual,
  1990.        cmd->SCp.buffers_residual);
  1991. }
  1992. /*
  1993.  * The preferred transfer method is going to be 
  1994.  * PSEUDO-DMA for systems that are strictly PIO,
  1995.  * since we can let the hardware do the handshaking.
  1996.  *
  1997.  * For this to work, we need to know the transfersize
  1998.  * ahead of time, since the pseudo-DMA code will sit
  1999.  * in an unconditional loop.
  2000.  */
  2001. /* ++roman: I suggest, this should be
  2002.  *   #if def(REAL_DMA)
  2003.  * instead of leaving REAL_DMA out.
  2004.  */
  2005. #if defined(REAL_DMA) || defined(PSEUDO_DMA)
  2006. if (!cmd->device->borken &&
  2007.     !(hostdata->flags & FLAG_NO_PSEUDO_DMA) &&
  2008.     (transfersize = NCR5380_dma_xfer_len(instance,cmd,phase)) > 31) {
  2009.     len = transfersize;
  2010.     cmd->SCp.phase = phase;
  2011.     if (NCR5380_transfer_dma(instance, &phase,
  2012. &len, (unsigned char **) &cmd->SCp.ptr)) {
  2013. /*
  2014.  * If the watchdog timer fires, all future
  2015.  * accesses to this device will use the
  2016.  * polled-IO. */ 
  2017. printk(KERN_NOTICE "scsi%d: switching target %d "
  2018.        "lun %d to slow handshaken", HOSTNO,
  2019.        cmd->target, cmd->lun);
  2020. cmd->device->borken = 1;
  2021. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | 
  2022.     ICR_ASSERT_ATN);
  2023. sink = 1;
  2024. do_abort(instance);
  2025. cmd->result = DID_ERROR  << 16;
  2026. cmd->done(cmd);
  2027. /* XXX - need to source or sink data here, as appropriate */
  2028.     } else {
  2029. #ifdef REAL_DMA
  2030. /* ++roman: When using real DMA,
  2031.  * information_transfer() should return after
  2032.  * starting DMA since it has nothing more to
  2033.  * do.
  2034.  */
  2035. return;
  2036. #else
  2037. /* Michael: When using pseudo-DMA emulation, we must 
  2038.  * take care to take into account the residual from 
  2039.  * the current transfer as determined by either the 
  2040.  * interrupt routine ot the pseudo-transfer functions
  2041.  * (whichever notices it first).
  2042.  */
  2043. if (mac_pdma_residual)
  2044.   len -= mac_pdma_residual;
  2045. cmd->SCp.this_residual -= transfersize - len;
  2046. #endif
  2047.     }
  2048. } else
  2049. #endif /* defined(REAL_DMA) || defined(PSEUDO_DMA) */
  2050.   NCR5380_transfer_pio(instance, &phase, 
  2051.     (int *) &cmd->SCp.this_residual, (unsigned char **)
  2052.     &cmd->SCp.ptr);
  2053. break;
  2054.     case PHASE_MSGIN:
  2055. len = 1;
  2056. data = &tmp;
  2057. NCR5380_write(SELECT_ENABLE_REG, 0);  /* disable reselects */
  2058. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2059. cmd->SCp.Message = tmp;
  2060. switch (tmp) {
  2061. /*
  2062.  * Linking lets us reduce the time required to get the 
  2063.  * next command out to the device, hopefully this will
  2064.  * mean we don't waste another revolution due to the delays
  2065.  * required by ARBITRATION and another SELECTION.
  2066.  *
  2067.  * In the current implementation proposal, low level drivers
  2068.  * merely have to start the next command, pointed to by 
  2069.  * next_link, done() is called as with unlinked commands.
  2070.  */
  2071. #ifdef LINKED
  2072. case LINKED_CMD_COMPLETE:
  2073. case LINKED_FLG_CMD_COMPLETE:
  2074.     /* Accept message by clearing ACK */
  2075.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2076.     
  2077.     LNK_PRINTK("scsi%d: target %d lun %d linked command "
  2078.        "complete.n", HOSTNO, cmd->target, cmd->lun);
  2079.     /* Enable reselect interrupts */
  2080.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2081.     /*
  2082.      * Sanity check : A linked command should only terminate
  2083.      * with one of these messages if there are more linked
  2084.      * commands available.
  2085.      */
  2086.     if (!cmd->next_link) {
  2087.  printk(KERN_NOTICE "scsi%d: target %d lun %d "
  2088. "linked command complete, no next_linkn",
  2089. HOSTNO, cmd->target, cmd->lun);
  2090.     sink = 1;
  2091.     do_abort (instance);
  2092.     return;
  2093.     }
  2094.     initialize_SCp(cmd->next_link);
  2095.     /* The next command is still part of this process; copy it
  2096.      * and don't free it! */
  2097.     cmd->next_link->tag = cmd->tag;
  2098.     cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8); 
  2099.     LNK_PRINTK("scsi%d: target %d lun %d linked request "
  2100.        "done, calling scsi_done().n",
  2101.        HOSTNO, cmd->target, cmd->lun);
  2102. #ifdef NCR5380_STATS
  2103.     collect_stats(hostdata, cmd);
  2104. #endif
  2105.     cmd->scsi_done(cmd);
  2106.     cmd = hostdata->connected;
  2107.     break;
  2108. #endif /* def LINKED */
  2109. case ABORT:
  2110. case COMMAND_COMPLETE: 
  2111.     /* Accept message by clearing ACK */
  2112.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2113.     hostdata->connected = NULL;
  2114.     QU_PRINTK("scsi%d: command for target %d, lun %d "
  2115.       "completedn", HOSTNO, cmd->target, cmd->lun);
  2116. #ifdef SUPPORT_TAGS
  2117.     cmd_free_tag( cmd );
  2118.     if (status_byte(cmd->SCp.Status) == QUEUE_FULL) {
  2119. /* Turn a QUEUE FULL status into BUSY, I think the
  2120.  * mid level cannot handle QUEUE FULL :-( (The
  2121.  * command is retried after BUSY). Also update our
  2122.  * queue size to the number of currently issued
  2123.  * commands now.
  2124.  */
  2125. /* ++Andreas: the mid level code knows about
  2126.    QUEUE_FULL now. */
  2127. TAG_ALLOC *ta = &TagAlloc[cmd->target][cmd->lun];
  2128. TAG_PRINTK("scsi%d: target %d lun %d returned "
  2129.    "QUEUE_FULL after %d commandsn",
  2130.    HOSTNO, cmd->target, cmd->lun,
  2131.    ta->nr_allocated);
  2132. if (ta->queue_size > ta->nr_allocated)
  2133.     ta->nr_allocated = ta->queue_size;
  2134.     }
  2135. #else
  2136.     hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  2137. #endif
  2138.     /* Enable reselect interrupts */
  2139.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2140.     /* 
  2141.      * I'm not sure what the correct thing to do here is : 
  2142.      * 
  2143.      * If the command that just executed is NOT a request 
  2144.      * sense, the obvious thing to do is to set the result
  2145.      * code to the values of the stored parameters.
  2146.      * 
  2147.      * If it was a REQUEST SENSE command, we need some way to
  2148.      * differentiate between the failure code of the original
  2149.      * and the failure code of the REQUEST sense - the obvious
  2150.      * case is success, where we fall through and leave the
  2151.      * result code unchanged.
  2152.      * 
  2153.      * The non-obvious place is where the REQUEST SENSE failed
  2154.      */
  2155.     if (cmd->cmnd[0] != REQUEST_SENSE) 
  2156. cmd->result = cmd->SCp.Status | (cmd->SCp.Message << 8); 
  2157.     else if (status_byte(cmd->SCp.Status) != GOOD)
  2158. cmd->result = (cmd->result & 0x00ffff) | (DID_ERROR << 16);
  2159.     
  2160. #ifdef AUTOSENSE
  2161.     if ((cmd->cmnd[0] != REQUEST_SENSE) && 
  2162. (status_byte(cmd->SCp.Status) == CHECK_CONDITION)) {
  2163. ASEN_PRINTK("scsi%d: performing request sensen",
  2164.     HOSTNO);
  2165. cmd->cmnd[0] = REQUEST_SENSE;
  2166. cmd->cmnd[1] &= 0xe0;
  2167. cmd->cmnd[2] = 0;
  2168. cmd->cmnd[3] = 0;
  2169. cmd->cmnd[4] = sizeof(cmd->sense_buffer);
  2170. cmd->cmnd[5] = 0;
  2171. cmd->cmd_len = COMMAND_SIZE(cmd->cmnd[0]);
  2172. cmd->use_sg = 0;
  2173. /* this is initialized from initialize_SCp 
  2174. cmd->SCp.buffer = NULL;
  2175. cmd->SCp.buffers_residual = 0;
  2176. */
  2177. cmd->request_buffer = (char *) cmd->sense_buffer;
  2178. cmd->request_bufflen = sizeof(cmd->sense_buffer);
  2179. save_flags(flags);
  2180. cli();
  2181. LIST(cmd,hostdata->issue_queue);
  2182. NEXT(cmd) = hostdata->issue_queue;
  2183.         hostdata->issue_queue = (Scsi_Cmnd *) cmd;
  2184.         restore_flags(flags);
  2185. QU_PRINTK("scsi%d: REQUEST SENSE added to head of "
  2186.   "issue queuen", H_NO(cmd));
  2187.    } else
  2188. #endif /* def AUTOSENSE */
  2189.    {
  2190. #ifdef NCR5380_STATS
  2191.        collect_stats(hostdata, cmd);
  2192. #endif
  2193.        cmd->scsi_done(cmd);
  2194.     }
  2195.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2196.     /* 
  2197.      * Restore phase bits to 0 so an interrupted selection, 
  2198.      * arbitration can resume.
  2199.      */
  2200.     NCR5380_write(TARGET_COMMAND_REG, 0);
  2201.     
  2202.     while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
  2203. barrier();
  2204.     return;
  2205. case MESSAGE_REJECT:
  2206.     /* Accept message by clearing ACK */
  2207.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2208.     /* Enable reselect interrupts */
  2209.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2210.     switch (hostdata->last_message) {
  2211.     case HEAD_OF_QUEUE_TAG:
  2212.     case ORDERED_QUEUE_TAG:
  2213.     case SIMPLE_QUEUE_TAG:
  2214. /* The target obviously doesn't support tagged
  2215.  * queuing, even though it announced this ability in
  2216.  * its INQUIRY data ?!? (maybe only this LUN?) Ok,
  2217.  * clear 'tagged_supported' and lock the LUN, since
  2218.  * the command is treated as untagged further on.
  2219.  */
  2220. cmd->device->tagged_supported = 0;
  2221. hostdata->busy[cmd->target] |= (1 << cmd->lun);
  2222. cmd->tag = TAG_NONE;
  2223. TAG_PRINTK("scsi%d: target %d lun %d rejected "
  2224.    "QUEUE_TAG message; tagged queuing "
  2225.    "disabledn",
  2226.    HOSTNO, cmd->target, cmd->lun);
  2227. break;
  2228.     }
  2229.     break;
  2230. case DISCONNECT:
  2231.     /* Accept message by clearing ACK */
  2232.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2233.     save_flags(flags);
  2234.     cli();
  2235.     cmd->device->disconnect = 1;
  2236.     LIST(cmd,hostdata->disconnected_queue);
  2237.     NEXT(cmd) = hostdata->disconnected_queue;
  2238.     hostdata->connected = NULL;
  2239.     hostdata->disconnected_queue = cmd;
  2240.     restore_flags(flags);
  2241.     QU_PRINTK("scsi%d: command for target %d lun %d was "
  2242.       "moved from connected to the "
  2243.       "disconnected_queuen", HOSTNO, 
  2244.       cmd->target, cmd->lun);
  2245.     /* 
  2246.      * Restore phase bits to 0 so an interrupted selection, 
  2247.      * arbitration can resume.
  2248.      */
  2249.     NCR5380_write(TARGET_COMMAND_REG, 0);
  2250.     /* Enable reselect interrupts */
  2251.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2252.     /* Wait for bus free to avoid nasty timeouts */
  2253.     while ((NCR5380_read(STATUS_REG) & SR_BSY) && !hostdata->connected)
  2254.      barrier();
  2255.     return;
  2256. /* 
  2257.  * The SCSI data pointer is *IMPLICITLY* saved on a disconnect
  2258.  * operation, in violation of the SCSI spec so we can safely 
  2259.  * ignore SAVE/RESTORE pointers calls.
  2260.  *
  2261.  * Unfortunately, some disks violate the SCSI spec and 
  2262.  * don't issue the required SAVE_POINTERS message before
  2263.  * disconnecting, and we have to break spec to remain 
  2264.  * compatible.
  2265.  */
  2266. case SAVE_POINTERS:
  2267. case RESTORE_POINTERS:
  2268.     /* Accept message by clearing ACK */
  2269.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2270.     /* Enable reselect interrupts */
  2271.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2272.     break;
  2273. case EXTENDED_MESSAGE:
  2274. /* 
  2275.  * Extended messages are sent in the following format :
  2276.  * Byte 
  2277.  * 0 EXTENDED_MESSAGE == 1
  2278.  * 1 length (includes one byte for code, doesn't 
  2279.  * include first two bytes)
  2280.  * 2  code
  2281.  * 3..length+1 arguments
  2282.  *
  2283.  * Start the extended message buffer with the EXTENDED_MESSAGE
  2284.  * byte, since print_msg() wants the whole thing.  
  2285.  */
  2286.     extended_msg[0] = EXTENDED_MESSAGE;
  2287.     /* Accept first byte by clearing ACK */
  2288.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2289.     EXT_PRINTK("scsi%d: receiving extended messagen", HOSTNO);
  2290.     len = 2;
  2291.     data = extended_msg + 1;
  2292.     phase = PHASE_MSGIN;
  2293.     NCR5380_transfer_pio(instance, &phase, &len, &data);
  2294.     EXT_PRINTK("scsi%d: length=%d, code=0x%02xn", HOSTNO,
  2295.        (int)extended_msg[1], (int)extended_msg[2]);
  2296.     if (!len && extended_msg[1] <= 
  2297. (sizeof (extended_msg) - 1)) {
  2298. /* Accept third byte by clearing ACK */
  2299. NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2300. len = extended_msg[1] - 1;
  2301. data = extended_msg + 3;
  2302. phase = PHASE_MSGIN;
  2303. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2304. EXT_PRINTK("scsi%d: message received, residual %dn",
  2305.    HOSTNO, len);
  2306. switch (extended_msg[2]) {
  2307. case EXTENDED_SDTR:
  2308. case EXTENDED_WDTR:
  2309. case EXTENDED_MODIFY_DATA_POINTER:
  2310. case EXTENDED_EXTENDED_IDENTIFY:
  2311.     tmp = 0;
  2312. }
  2313.     } else if (len) {
  2314. printk(KERN_NOTICE "scsi%d: error receiving "
  2315.        "extended messagen", HOSTNO);
  2316. tmp = 0;
  2317.     } else {
  2318. printk(KERN_NOTICE "scsi%d: extended message "
  2319.        "code %02x length %d is too longn",
  2320.        HOSTNO, extended_msg[2], extended_msg[1]);
  2321. tmp = 0;
  2322.     }
  2323. /* Fall through to reject message */
  2324. /* 
  2325.     * If we get something weird that we aren't expecting, 
  2326.    * reject it.
  2327.  */
  2328. default:
  2329.     if (!tmp) {
  2330. printk(KERN_DEBUG "scsi%d: rejecting message ", HOSTNO);
  2331. print_msg (extended_msg);
  2332. printk("n");
  2333.     } else if (tmp != EXTENDED_MESSAGE)
  2334. printk(KERN_DEBUG "scsi%d: rejecting unknown "
  2335.        "message %02x from target %d, lun %dn",
  2336.        HOSTNO, tmp, cmd->target, cmd->lun);
  2337.     else
  2338. printk(KERN_DEBUG "scsi%d: rejecting unknown "
  2339.        "extended message "
  2340.        "code %02x, length %d from target %d, lun %dn",
  2341.        HOSTNO, extended_msg[1], extended_msg[0],
  2342.        cmd->target, cmd->lun);
  2343.    
  2344.     msgout = MESSAGE_REJECT;
  2345.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | 
  2346. ICR_ASSERT_ATN);
  2347.     break;
  2348. } /* switch (tmp) */
  2349. break;
  2350.     case PHASE_MSGOUT:
  2351. len = 1;
  2352. data = &msgout;
  2353. hostdata->last_message = msgout;
  2354. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2355. if (msgout == ABORT) {
  2356. #ifdef SUPPORT_TAGS
  2357.     cmd_free_tag( cmd );
  2358. #else
  2359.     hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  2360. #endif
  2361.     hostdata->connected = NULL;
  2362.     cmd->result = DID_ERROR << 16;
  2363. #ifdef NCR5380_STATS
  2364.     collect_stats(hostdata, cmd);
  2365. #endif
  2366.     cmd->scsi_done(cmd);
  2367.     NCR5380_write(SELECT_ENABLE_REG, hostdata->id_mask);
  2368.     return;
  2369. }
  2370. msgout = NOP;
  2371. break;
  2372.     case PHASE_CMDOUT:
  2373. len = cmd->cmd_len;
  2374. data = cmd->cmnd;
  2375. /* 
  2376.  * XXX for performance reasons, on machines with a 
  2377.  * PSEUDO-DMA architecture we should probably 
  2378.  * use the dma transfer function.  
  2379.  */
  2380. NCR5380_transfer_pio(instance, &phase, &len, 
  2381.     &data);
  2382. break;
  2383.     case PHASE_STATIN:
  2384. len = 1;
  2385. data = &tmp;
  2386. NCR5380_transfer_pio(instance, &phase, &len, &data);
  2387. cmd->SCp.Status = tmp;
  2388. break;
  2389.     default:
  2390. printk("scsi%d: unknown phasen", HOSTNO);
  2391. NCR_PRINT(NDEBUG_ANY);
  2392.     } /* switch(phase) */
  2393. } /* if (tmp * SR_REQ) */ 
  2394.     } /* while (1) */
  2395. }
  2396. /*
  2397.  * Function : void NCR5380_reselect (struct Scsi_Host *instance)
  2398.  *
  2399.  * Purpose : does reselection, initializing the instance->connected 
  2400.  * field to point to the Scsi_Cmnd for which the I_T_L or I_T_L_Q 
  2401.  * nexus has been reestablished,
  2402.  *
  2403.  * Inputs : instance - this instance of the NCR5380.
  2404.  *
  2405.  */
  2406. static void NCR5380_reselect (struct Scsi_Host *instance)
  2407. {
  2408.     SETUP_HOSTDATA(instance);
  2409.     unsigned char target_mask;
  2410.     unsigned char lun, phase;
  2411.     int len;
  2412. #ifdef SUPPORT_TAGS
  2413.     unsigned char tag;
  2414. #endif
  2415.     unsigned char msg[3];
  2416.     unsigned char *data;
  2417.     Scsi_Cmnd *tmp = NULL, *prev;
  2418. /*    unsigned long flags; */
  2419.     /*
  2420.      * Disable arbitration, etc. since the host adapter obviously
  2421.      * lost, and tell an interrupted NCR5380_select() to restart.
  2422.      */
  2423.     NCR5380_write(MODE_REG, MR_BASE);
  2424.     hostdata->restart_select = 1;
  2425.     target_mask = NCR5380_read(CURRENT_SCSI_DATA_REG) & ~(hostdata->id_mask);
  2426.     RSL_PRINTK("scsi%d: reselectn", HOSTNO);
  2427.     /* 
  2428.      * At this point, we have detected that our SCSI ID is on the bus,
  2429.      * SEL is true and BSY was false for at least one bus settle delay
  2430.      * (400 ns).
  2431.      *
  2432.      * We must assert BSY ourselves, until the target drops the SEL
  2433.      * signal.
  2434.      */
  2435.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_BSY);
  2436.     
  2437.     while (NCR5380_read(STATUS_REG) & SR_SEL);
  2438.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2439.     /*
  2440.      * Wait for target to go into MSGIN.
  2441.      */
  2442.     while (!(NCR5380_read(STATUS_REG) & SR_REQ));
  2443.     len = 1;
  2444.     data = msg;
  2445.     phase = PHASE_MSGIN;
  2446.     NCR5380_transfer_pio(instance, &phase, &len, &data);
  2447.     if (!msg[0] & 0x80) {
  2448. printk(KERN_DEBUG "scsi%d: expecting IDENTIFY message, got ", HOSTNO);
  2449. print_msg(msg);
  2450. do_abort(instance);
  2451. return;
  2452.     }
  2453.     lun = (msg[0] & 0x07);
  2454. #ifdef SUPPORT_TAGS
  2455.     /* If the phase is still MSGIN, the target wants to send some more
  2456.      * messages. In case it supports tagged queuing, this is probably a
  2457.      * SIMPLE_QUEUE_TAG for the I_T_L_Q nexus.
  2458.      */
  2459.     tag = TAG_NONE;
  2460.     if (phase == PHASE_MSGIN && setup_use_tagged_queuing) {
  2461. /* Accept previous IDENTIFY message by clearing ACK */
  2462. NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
  2463. len = 2;
  2464. data = msg+1;
  2465. if (!NCR5380_transfer_pio(instance, &phase, &len, &data) &&
  2466.     msg[1] == SIMPLE_QUEUE_TAG)
  2467.     tag = msg[2];
  2468. TAG_PRINTK("scsi%d: target mask %02x, lun %d sent tag %d at "
  2469.    "reselectionn", HOSTNO, target_mask, lun, tag);
  2470.     }
  2471. #endif
  2472.     
  2473.     /* 
  2474.      * Find the command corresponding to the I_T_L or I_T_L_Q  nexus we 
  2475.      * just reestablished, and remove it from the disconnected queue.
  2476.      */
  2477.     for (tmp = (Scsi_Cmnd *) hostdata->disconnected_queue, prev = NULL; 
  2478.  tmp; prev = tmp, tmp = NEXT(tmp) ) {
  2479. if ((target_mask == (1 << tmp->target)) && (lun == tmp->lun)
  2480. #ifdef SUPPORT_TAGS
  2481.     && (tag == tmp->tag) 
  2482. #endif
  2483.     ) {
  2484.     if (prev) {
  2485. REMOVE(prev, NEXT(prev), tmp, NEXT(tmp));
  2486. NEXT(prev) = NEXT(tmp);
  2487.     } else {
  2488. REMOVE(-1, hostdata->disconnected_queue, tmp, NEXT(tmp));
  2489. hostdata->disconnected_queue = NEXT(tmp);
  2490.     }
  2491.     NEXT(tmp) = NULL;
  2492.     break;
  2493. }
  2494.     }
  2495.     
  2496.     if (!tmp) {
  2497. printk(KERN_WARNING "scsi%d: warning: target bitmask %02x lun %d "
  2498. #ifdef SUPPORT_TAGS
  2499. "tag %d "
  2500. #endif
  2501. "not in disconnect_queue.n",
  2502. HOSTNO, target_mask, lun
  2503. #ifdef SUPPORT_TAGS
  2504. , tag
  2505. #endif
  2506. );
  2507. /* 
  2508.  * Since we have an established nexus that we can't do anything
  2509.  * with, we must abort it.  
  2510.  */
  2511. do_abort(instance);
  2512. return;
  2513.     }
  2514.     /* Accept message by clearing ACK */
  2515.     NCR5380_write(INITIATOR_COMMAND_REG, ICR_BASE);
  2516.     hostdata->connected = tmp;
  2517.     RSL_PRINTK("scsi%d: nexus established, target = %d, lun = %d, tag = %dn",
  2518.        HOSTNO, tmp->target, tmp->lun, tmp->tag);
  2519. }
  2520. /*
  2521.  * Function : int NCR5380_abort (Scsi_Cmnd *cmd)
  2522.  *
  2523.  * Purpose : abort a command
  2524.  *
  2525.  * Inputs : cmd - the Scsi_Cmnd to abort, code - code to set the 
  2526.  *  host byte of the result field to, if zero DID_ABORTED is 
  2527.  * used.
  2528.  *
  2529.  * Returns : 0 - success, -1 on failure.
  2530.  *
  2531.  * XXX - there is no way to abort the command that is currently 
  2532.  *   connected, you have to wait for it to complete.  If this is 
  2533.  *  a problem, we could implement longjmp() / setjmp(), setjmp()
  2534.  *   called where the loop started in NCR5380_main().
  2535.  */
  2536. #ifndef NCR5380_abort
  2537. static
  2538. #endif
  2539. int NCR5380_abort (Scsi_Cmnd *cmd)
  2540. {
  2541.     struct Scsi_Host *instance = cmd->host;
  2542.     SETUP_HOSTDATA(instance);
  2543.     Scsi_Cmnd *tmp, **prev;
  2544.     unsigned long flags;
  2545.     printk(KERN_NOTICE "scsi%d: aborting commandn", HOSTNO);
  2546.     print_Scsi_Cmnd (cmd);
  2547.     NCR5380_print_status (instance);
  2548.     save_flags(flags);
  2549.     cli();
  2550.     
  2551.     ABRT_PRINTK("scsi%d: abort called basr 0x%02x, sr 0x%02xn", HOSTNO,
  2552. NCR5380_read(BUS_AND_STATUS_REG),
  2553. NCR5380_read(STATUS_REG));
  2554. #if 1
  2555. /* 
  2556.  * Case 1 : If the command is the currently executing command, 
  2557.  * we'll set the aborted flag and return control so that 
  2558.  * information transfer routine can exit cleanly.
  2559.  */
  2560.     if (hostdata->connected == cmd) {
  2561. ABRT_PRINTK("scsi%d: aborting connected commandn", HOSTNO);
  2562. /*
  2563.  * We should perform BSY checking, and make sure we haven't slipped
  2564.  * into BUS FREE.
  2565.  */
  2566. /* NCR5380_write(INITIATOR_COMMAND_REG, ICR_ASSERT_ATN); */
  2567. /* 
  2568.  * Since we can't change phases until we've completed the current 
  2569.  * handshake, we have to source or sink a byte of data if the current
  2570.  * phase is not MSGOUT.
  2571.  */
  2572. /* 
  2573.  * Return control to the executing NCR drive so we can clear the
  2574.  * aborted flag and get back into our main loop.
  2575.  */ 
  2576. if (do_abort(instance) == 0) {
  2577.   hostdata->aborted = 1;
  2578.   hostdata->connected = NULL;
  2579.   cmd->result = DID_ABORT << 16;
  2580. #ifdef SUPPORT_TAGS
  2581.   cmd_free_tag( cmd );
  2582. #else
  2583.   hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  2584. #endif
  2585.   restore_flags(flags);
  2586.   cmd->scsi_done(cmd);
  2587.   return SCSI_ABORT_SUCCESS;
  2588. } else {
  2589. /*   restore_flags(flags); */
  2590.   printk("scsi%d: abort of connected command failed!n", HOSTNO);
  2591.   return SCSI_ABORT_ERROR;
  2592.    }
  2593. #endif
  2594. /* 
  2595.  * Case 2 : If the command hasn't been issued yet, we simply remove it 
  2596.  *      from the issue queue.
  2597.  */
  2598.     for (prev = (Scsi_Cmnd **) &(hostdata->issue_queue), 
  2599. tmp = (Scsi_Cmnd *) hostdata->issue_queue;
  2600. tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp) )
  2601. if (cmd == tmp) {
  2602.     REMOVE(5, *prev, tmp, NEXT(tmp));
  2603.     (*prev) = NEXT(tmp);
  2604.     NEXT(tmp) = NULL;
  2605.     tmp->result = DID_ABORT << 16;
  2606.     restore_flags(flags);
  2607.     ABRT_PRINTK("scsi%d: abort removed command from issue queue.n",
  2608. HOSTNO);
  2609.     /* Tagged queuing note: no tag to free here, hasn't been assigned
  2610.      * yet... */
  2611.     tmp->scsi_done(tmp);
  2612.     return SCSI_ABORT_SUCCESS;
  2613. }
  2614. /* 
  2615.  * Case 3 : If any commands are connected, we're going to fail the abort
  2616.  *     and let the high level SCSI driver retry at a later time or 
  2617.  *     issue a reset.
  2618.  *
  2619.  *     Timeouts, and therefore aborted commands, will be highly unlikely
  2620.  *          and handling them cleanly in this situation would make the common
  2621.  *     case of noresets less efficient, and would pollute our code.  So,
  2622.  *     we fail.
  2623.  */
  2624.     if (hostdata->connected) {
  2625. restore_flags(flags);
  2626. ABRT_PRINTK("scsi%d: abort failed, command connected.n", HOSTNO);
  2627.         return SCSI_ABORT_SNOOZE;
  2628.     }
  2629. /*
  2630.  * Case 4: If the command is currently disconnected from the bus, and 
  2631.  *  there are no connected commands, we reconnect the I_T_L or 
  2632.  * I_T_L_Q nexus associated with it, go into message out, and send 
  2633.  *      an abort message.
  2634.  *
  2635.  * This case is especially ugly. In order to reestablish the nexus, we
  2636.  * need to call NCR5380_select().  The easiest way to implement this 
  2637.  * function was to abort if the bus was busy, and let the interrupt
  2638.  * handler triggered on the SEL for reselect take care of lost arbitrations
  2639.  * where necessary, meaning interrupts need to be enabled.
  2640.  *
  2641.  * When interrupts are enabled, the queues may change - so we 
  2642.  * can't remove it from the disconnected queue before selecting it
  2643.  * because that could cause a failure in hashing the nexus if that 
  2644.  * device reselected.
  2645.  * 
  2646.  * Since the queues may change, we can't use the pointers from when we
  2647.  * first locate it.
  2648.  *
  2649.  * So, we must first locate the command, and if NCR5380_select()
  2650.  * succeeds, then issue the abort, relocate the command and remove
  2651.  * it from the disconnected queue.
  2652.  */
  2653.     for (tmp = (Scsi_Cmnd *) hostdata->disconnected_queue; tmp;
  2654.  tmp = NEXT(tmp)) 
  2655.         if (cmd == tmp) {
  2656.             restore_flags(flags);
  2657.     ABRT_PRINTK("scsi%d: aborting disconnected command.n", HOSTNO);
  2658.   
  2659.             if (NCR5380_select (instance, cmd, (int) cmd->tag)) 
  2660. return SCSI_ABORT_BUSY;
  2661.     ABRT_PRINTK("scsi%d: nexus reestablished.n", HOSTNO);
  2662.     do_abort (instance);
  2663.     save_flags(flags);
  2664.     cli();
  2665.     for (prev = (Scsi_Cmnd **) &(hostdata->disconnected_queue), 
  2666. tmp = (Scsi_Cmnd *) hostdata->disconnected_queue;
  2667. tmp; prev = NEXTADDR(tmp), tmp = NEXT(tmp) )
  2668.     if (cmd == tmp) {
  2669.     REMOVE(5, *prev, tmp, NEXT(tmp));
  2670.     *prev = NEXT(tmp);
  2671.     NEXT(tmp) = NULL;
  2672.     tmp->result = DID_ABORT << 16;
  2673.     /* We must unlock the tag/LUN immediately here, since the
  2674.      * target goes to BUS FREE and doesn't send us another
  2675.      * message (COMMAND_COMPLETE or the like)
  2676.      */
  2677. #ifdef SUPPORT_TAGS
  2678.     cmd_free_tag( tmp );
  2679. #else
  2680.     hostdata->busy[cmd->target] &= ~(1 << cmd->lun);
  2681. #endif
  2682.     restore_flags(flags);
  2683.     tmp->scsi_done(tmp);
  2684.     return SCSI_ABORT_SUCCESS;
  2685. }
  2686. }
  2687. /*
  2688.  * Case 5 : If we reached this point, the command was not found in any of 
  2689.  *     the queues.
  2690.  *
  2691.  * We probably reached this point because of an unlikely race condition
  2692.  * between the command completing successfully and the abortion code,
  2693.  * so we won't panic, but we will notify the user in case something really
  2694.  * broke.
  2695.  */
  2696.     restore_flags(flags);
  2697.     printk(KERN_INFO "scsi%d: warning : SCSI command probably completed successfullyn"
  2698.            KERN_INFO "        before abortionn", HOSTNO); 
  2699. /* Maybe it is sufficient just to release the ST-DMA lock... (if
  2700.  * possible at all) At least, we should check if the lock could be
  2701.  * released after the abort, in case it is kept due to some bug.
  2702.  */
  2703.     return SCSI_ABORT_NOT_RUNNING;
  2704. }
  2705. /* 
  2706.  * Function : int NCR5380_reset (Scsi_Cmnd *cmd, unsigned int reset_flags)
  2707.  * 
  2708.  * Purpose : reset the SCSI bus.
  2709.  *
  2710.  * Returns : SCSI_RESET_WAKEUP
  2711.  *
  2712.  */ 
  2713. static int NCR5380_reset( Scsi_Cmnd *cmd, unsigned int reset_flags)
  2714. {
  2715.     SETUP_HOSTDATA(cmd->host);
  2716.     int           i;
  2717.     unsigned long flags;
  2718. #if 1
  2719.     Scsi_Cmnd *connected, *disconnected_queue;
  2720. #endif
  2721.     NCR5380_print_status (cmd->host);
  2722.     /* get in phase */
  2723.     NCR5380_write( TARGET_COMMAND_REG,
  2724.    PHASE_SR_TO_TCR( NCR5380_read(STATUS_REG) ));
  2725.     /* assert RST */
  2726.     NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE | ICR_ASSERT_RST );
  2727.     udelay (40);
  2728.     /* reset NCR registers */
  2729.     NCR5380_write( INITIATOR_COMMAND_REG, ICR_BASE );
  2730.     NCR5380_write( MODE_REG, MR_BASE );
  2731.     NCR5380_write( TARGET_COMMAND_REG, 0 );
  2732.     NCR5380_write( SELECT_ENABLE_REG, 0 );
  2733.     /* ++roman: reset interrupt condition! otherwise no interrupts don't get
  2734.      * through anymore ... */
  2735.     (void)NCR5380_read( RESET_PARITY_INTERRUPT_REG );
  2736. #if 1 /* XXX Should now be done by midlevel code, but it's broken XXX */
  2737.       /* XXX see below                                            XXX */
  2738.     /* MSch: old-style reset: actually abort all command processing here */
  2739.     /* After the reset, there are no more connected or disconnected commands
  2740.      * and no busy units; to avoid problems with re-inserting the commands
  2741.      * into the issue_queue (via scsi_done()), the aborted commands are
  2742.      * remembered in local variables first.
  2743.      */
  2744.     save_flags(flags);
  2745.     cli();
  2746.     connected = (Scsi_Cmnd *)hostdata->connected;
  2747.     hostdata->connected = NULL;
  2748.     disconnected_queue = (Scsi_Cmnd *)hostdata->disconnected_queue;
  2749.     hostdata->disconnected_queue = NULL;
  2750. #ifdef SUPPORT_TAGS
  2751.     free_all_tags();
  2752. #endif
  2753.     for( i = 0; i < 8; ++i )
  2754. hostdata->busy[i] = 0;
  2755. #ifdef REAL_DMA
  2756.     hostdata->dma_len = 0;
  2757. #endif
  2758.     restore_flags(flags);
  2759.     /* In order to tell the mid-level code which commands were aborted, 
  2760.      * set the command status to DID_RESET and call scsi_done() !!!
  2761.      * This ultimately aborts processing of these commands in the mid-level.
  2762.      */
  2763.     if ((cmd = connected)) {
  2764. ABRT_PRINTK("scsi%d: reset aborted a connected commandn", H_NO(cmd));
  2765. cmd->result = (cmd->result & 0xffff) | (DID_RESET << 16);
  2766. cmd->scsi_done( cmd );
  2767.     }
  2768.     for (i = 0; (cmd = disconnected_queue); ++i) {
  2769. disconnected_queue = NEXT(cmd);
  2770. NEXT(cmd) = NULL;
  2771. cmd->result = (cmd->result & 0xffff) | (DID_RESET << 16);
  2772. cmd->scsi_done( cmd );
  2773.     }
  2774.     if (i > 0)
  2775. ABRT_PRINTK("scsi: reset aborted %d disconnected command(s)n", i);
  2776.     /* since all commands have been explicitly terminated, we need to tell
  2777.      * the midlevel code that the reset was SUCCESSFUL, and there is no 
  2778.      * need to 'wake up' the commands by a request_sense
  2779.      */
  2780.     return SCSI_RESET_SUCCESS | SCSI_RESET_BUS_RESET;
  2781. #else /* 1 */
  2782.     /* MSch: new-style reset handling: let the mid-level do what it can */
  2783.     /* ++guenther: MID-LEVEL IS STILL BROKEN.
  2784.      * Mid-level is supposed to requeue all commands that were active on the
  2785.      * various low-level queues. In fact it does this, but that's not enough
  2786.      * because all these commands are subject to timeout. And if a timeout
  2787.      * happens for any removed command, *_abort() is called but all queues
  2788.      * are now empty. Abort then gives up the falcon lock, which is fatal,
  2789.      * since the mid-level will queue more commands and must have the lock
  2790.      * (it's all happening inside timer interrupt handler!!).
  2791.      * Even worse, abort will return NOT_RUNNING for all those commands not
  2792.      * on any queue, so they won't be retried ...
  2793.      *
  2794.      * Conclusion: either scsi.c disables timeout for all resetted commands
  2795.      * immediately, or we loose!  As of linux-2.0.20 it doesn't.
  2796.      */
  2797.     /* After the reset, there are no more connected or disconnected commands
  2798.      * and no busy units; so clear the low-level status here to avoid 
  2799.      * conflicts when the mid-level code tries to wake up the affected 
  2800.      * commands!
  2801.      */
  2802.     if (hostdata->issue_queue)
  2803. ABRT_PRINTK("scsi%d: reset aborted issued command(s)n", H_NO(cmd));
  2804.     if (hostdata->connected) 
  2805. ABRT_PRINTK("scsi%d: reset aborted a connected commandn", H_NO(cmd));
  2806.     if (hostdata->disconnected_queue)
  2807. ABRT_PRINTK("scsi%d: reset aborted disconnected command(s)n", H_NO(cmd));
  2808.     save_flags(flags);
  2809.     cli();
  2810.     hostdata->issue_queue = NULL;
  2811.     hostdata->connected = NULL;
  2812.     hostdata->disconnected_queue = NULL;
  2813. #ifdef SUPPORT_TAGS
  2814.     free_all_tags();
  2815. #endif
  2816.     for( i = 0; i < 8; ++i )
  2817. hostdata->busy[i] = 0;
  2818. #ifdef REAL_DMA
  2819.     hostdata->dma_len = 0;
  2820. #endif
  2821.     restore_flags(flags);
  2822.     /* we did no complete reset of all commands, so a wakeup is required */
  2823.     return SCSI_RESET_WAKEUP | SCSI_RESET_BUS_RESET;
  2824. #endif /* 1 */
  2825. }
  2826. static Scsi_Host_Template driver_template = MAC_NCR5380;
  2827. #include "scsi_module.c"
  2828. /* Local Variables: */
  2829. /* tab-width: 8     */
  2830. /* End:             */