1996-01-03 06:25:32 +00:00
|
|
|
/*+M***********************************************************************
|
|
|
|
*Adaptec 274x/284x/294x device driver for Linux and FreeBSD.
|
|
|
|
*
|
|
|
|
*Copyright (c) 1994 John Aycock
|
|
|
|
* The University of Calgary Department of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
*Modifications/enhancements:
|
1996-01-29 03:12:06 +00:00
|
|
|
* Copyright (c) 1994, 1995, 1996 Justin Gibbs. All rights reserved.
|
1996-01-03 06:25:32 +00:00
|
|
|
*
|
|
|
|
*Redistribution and use in source and binary forms, with or without
|
|
|
|
*modification, are permitted provided that the following conditions
|
|
|
|
*are met:
|
|
|
|
*1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions, and the following disclaimer.
|
|
|
|
*2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of Calgary
|
|
|
|
* Department of Computer Science and its contributors.
|
|
|
|
*4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
*THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
*ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
*IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
*ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
|
|
*FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
*DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
*OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
*HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
*LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
*OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
*SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*FreeBSD, Twin, Wide, 2 command per target support, tagged queuing and other
|
|
|
|
*optimizations provided by Justin T. Gibbs (gibbs@FreeBSD.org)
|
|
|
|
*
|
|
|
|
*-M************************************************************************/
|
|
|
|
|
1996-03-31 03:02:37 +00:00
|
|
|
VERSION AIC7XXX_SEQ_VER "$Id: aic7xxx.seq,v 1.31 1996/03/10 07:02:31 gibbs Exp $"
|
1996-01-03 06:25:32 +00:00
|
|
|
|
|
|
|
#include "../../dev/aic7xxx/aic7xxx_reg.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We can't just use ACCUM in the sequencer code because it
|
|
|
|
* must be treated specially by the assembler, and it currently
|
1996-01-29 03:12:06 +00:00
|
|
|
* looks for the symbol 'A'. This is the only register defined in
|
1996-01-03 06:25:32 +00:00
|
|
|
* the assembler's symbol space.
|
|
|
|
*/
|
|
|
|
A = ACCUM
|
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
/* After starting the selection hardware, we check for reconnecting targets
|
|
|
|
* as well as for our selection to complete just in case the reselection wins
|
|
|
|
* bus arbitration. The problem with this is that we must keep track of the
|
|
|
|
* SCB that we've already pulled from the QINFIFO and started the selection
|
|
|
|
* on just in case the reselection wins so that we can retry the selection at
|
|
|
|
* a later time. This problem cannot be resolved by holding a single entry
|
|
|
|
* in scratch ram since a reconnecting target can request sense and this will
|
|
|
|
* create yet another SCB waiting for selection. The solution used here is to
|
|
|
|
* use byte 27 of the SCB as a psuedo-next pointer and to thread a list
|
1996-01-03 06:25:32 +00:00
|
|
|
* of SCBs that are awaiting selection. Since 0-0xfe are valid SCB offsets,
|
|
|
|
* SCB_LIST_NULL is 0xff which is out of range. The kernel driver must
|
|
|
|
* add an entry to this list everytime a request sense occurs. The sequencer
|
|
|
|
* will automatically consume the entries.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
1996-03-10 07:02:32 +00:00
|
|
|
* We assume that the kernel driver may reset us at any time, even in the
|
|
|
|
* middle of a DMA, so clear DFCNTRL too.
|
|
|
|
*/
|
|
|
|
reset:
|
|
|
|
clr DFCNTRL
|
|
|
|
clr SCSISIGO /* De-assert BSY */
|
|
|
|
/*
|
|
|
|
* We jump to start after every bus free.
|
1996-01-03 06:25:32 +00:00
|
|
|
*/
|
|
|
|
start:
|
|
|
|
mvi SCSISEQ,ENRSELI /* Always allow reselection */
|
1995-04-27 17:44:27 +00:00
|
|
|
poll_for_work:
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Are we a twin channel device?
|
|
|
|
* For fairness, we check the other bus first,
|
|
|
|
* since we just finished a transaction on the
|
|
|
|
* current channel.
|
|
|
|
*/
|
|
|
|
test FLAGS,TWIN_BUS jz start2
|
|
|
|
xor SBLKCTL,SELBUSB /* Toggle to the other bus */
|
1995-04-27 17:44:27 +00:00
|
|
|
test SSTAT0,SELDI jnz reselect
|
1996-01-03 06:25:32 +00:00
|
|
|
xor SBLKCTL,SELBUSB /* Toggle to the original bus */
|
1994-12-31 19:26:54 +00:00
|
|
|
start2:
|
1995-04-27 17:44:27 +00:00
|
|
|
test SSTAT0,SELDI jnz reselect
|
1995-07-04 20:58:57 +00:00
|
|
|
cmp WAITING_SCBH,SCB_LIST_NULL jne start_waiting
|
1996-03-31 03:02:37 +00:00
|
|
|
mov A, QCNTMASK
|
|
|
|
test QINCNT,A jz poll_for_work
|
1996-01-03 06:25:32 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
/*
|
|
|
|
* We have at least one queued SCB now and we don't have any
|
1996-01-03 06:25:32 +00:00
|
|
|
* SCBs in the list of SCBs awaiting selection. Set the SCB
|
|
|
|
* pointer from the FIFO so we see the right bank of SCB
|
|
|
|
* registers.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
mov SCBPTR,QINFIFO
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* See if there is not already an active SCB for this target. This code
|
|
|
|
* locks out on a per target basis instead of target/lun. Although this
|
|
|
|
* is not ideal for devices that have multiple luns active at the same
|
|
|
|
* time, it is faster than looping through all SCB's looking for active
|
|
|
|
* commands. It may be benificial to make findscb a more general procedure
|
|
|
|
* to see if the added cost of the search is negligible. This code also
|
|
|
|
* assumes that the kernel driver will clear the active flags on board
|
|
|
|
* initialization, board reset, and a target SELTO. Tagged commands
|
1996-01-29 03:12:06 +00:00
|
|
|
* don't set the active bits since you can queue more than one command
|
|
|
|
* at a time. We do, however, look to see if there are any non-tagged
|
|
|
|
* I/Os in progress, and requeue the command if there are. Tagged and
|
|
|
|
* non-tagged commands cannot be mixed to a single target.
|
1996-01-03 06:25:32 +00:00
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-01-16 16:31:21 +00:00
|
|
|
test_busy:
|
1996-01-03 06:25:32 +00:00
|
|
|
mov FUNCTION1,SCB_TCL
|
1994-11-17 20:19:10 +00:00
|
|
|
mov A,FUNCTION1
|
1996-01-03 06:25:32 +00:00
|
|
|
test SCB_TCL,0x88 jz test_a /* Id < 8 && A channel */
|
1994-12-31 19:26:54 +00:00
|
|
|
|
|
|
|
test ACTIVE_B,A jnz requeue
|
1996-01-03 06:25:32 +00:00
|
|
|
test SCB_CONTROL,TAG_ENB jnz start_scb
|
|
|
|
/* Mark the current target as busy */
|
|
|
|
or ACTIVE_B,A
|
1994-12-31 19:26:54 +00:00
|
|
|
jmp start_scb
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/* Place the currently active SCB back on the queue for later processing */
|
1994-12-31 19:26:54 +00:00
|
|
|
requeue:
|
1994-11-17 20:19:10 +00:00
|
|
|
mov QINFIFO, SCBPTR
|
1995-04-27 17:44:27 +00:00
|
|
|
jmp poll_for_work
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Pull the first entry off of the waiting for selection list
|
|
|
|
* We don't have to "test_busy" because only transactions that
|
|
|
|
* have passed that test can be in the waiting_scb list.
|
|
|
|
*/
|
1995-04-27 17:44:27 +00:00
|
|
|
start_waiting:
|
|
|
|
mov SCBPTR,WAITING_SCBH
|
1996-01-03 06:25:32 +00:00
|
|
|
jmp start_scb2
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1994-12-31 19:26:54 +00:00
|
|
|
test_a:
|
1996-01-03 06:25:32 +00:00
|
|
|
test ACTIVE_A,A jnz requeue
|
|
|
|
test SCB_CONTROL,TAG_ENB jnz start_scb
|
|
|
|
/* Mark the current target as busy */
|
|
|
|
or ACTIVE_A,A
|
1994-12-31 19:26:54 +00:00
|
|
|
|
|
|
|
start_scb:
|
1996-01-03 06:25:32 +00:00
|
|
|
mov SCB_NEXT_WAITING,WAITING_SCBH
|
1995-04-27 17:44:27 +00:00
|
|
|
mov WAITING_SCBH, SCBPTR
|
1996-01-03 06:25:32 +00:00
|
|
|
start_scb2:
|
|
|
|
and SINDEX,0xf7,SBLKCTL /* Clear the channel select bit */
|
|
|
|
and A,0x08,SCB_TCL /* Get new channel bit */
|
|
|
|
or SINDEX,A
|
|
|
|
mov SBLKCTL,SINDEX /* select channel */
|
|
|
|
mov SCB_TCL call initialize_scsiid
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Enable selection phase as an initiator, and do automatic ATN
|
|
|
|
* after the selection. We do this now so that we can overlap the
|
|
|
|
* rest of our work to set up this target with the arbitration and
|
|
|
|
* selection bus phases.
|
|
|
|
*/
|
|
|
|
start_selection:
|
|
|
|
mvi SCSISEQ,0x58 /* ENSELO|ENAUTOATNO|ENRSELI */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* As soon as we get a successful selection, the target should go
|
|
|
|
* into the message out phase since we have ATN asserted. Prepare
|
|
|
|
* the message to send.
|
|
|
|
*
|
|
|
|
* Messages are stored in scratch RAM starting with a length byte
|
|
|
|
* followed by the message itself.
|
|
|
|
*/
|
|
|
|
test SCB_CMDLEN,0xff jnz mk_identify /* 0 Length Command? */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The kernel has sent us an SCB with no command attached. This implies
|
|
|
|
* that the kernel wants to send a message of some sort to this target,
|
|
|
|
* so we interrupt the driver, allow it to fill the message buffer, and
|
|
|
|
* then go back into the arbitration loop
|
|
|
|
*/
|
Fixes to the aic7xxx sequencer code and device driver from Justin Gibbs:
1) If a target initiated a sync negotiation with us and happened to chose a
value above 15, the old code inadvertantly truncated it with an "& 0x0f".
If the periferal picked something really bad like 0x32, you'd end up with
an offset of 2 which would hang the drive since it didn't expect to ever
get something so low. We now do a MIN(maxoffset, given_offset).
2) In the case of Wide cards, we were turning on sync transfers after a
sucessfull wide negotiation. Now we leave the offset alone in the per
target scratch space (which implies asyncronous transfers since we initialize
it that way) until a syncronous negotation occurs.
3) We were advertizing a max offset of 15 instead of 8 for wide devices.
4) If the upper level SCSI code sent down a "SCSI_RESET", it would hang the
system because we would end up sending a null command to the sequencer. Now
we handle SCSI_RESET correctly by having the sequencer interrupt us when it
is about to fill the message buffer so that we can fill it in ourselves.
The sequencer will also "simulate" a command complete for these "message only"
SCBs so that the kernel driver can finish up properly. The cdplay utility
will send a "SCSI_REST" to the cdplayer if you use the reset command.
5) The code that handles SCSIINTs was broken in that if more than one type
of error was true at once, we'd do outbs without the card being paused.
The else clause after the busfree case was also an accident waiting to
happen. I've now turned this into an if, else if, else type of thing, since
in most cases when we handle one type of error, it should be okay to ignore
the rest (ie if we have a SELTO, who cares if there was a parity error on
the transaction?), but the section should really be rewritten after 2.0.5.
This fix was the least obtrusive way to patch the problem.
6) Only tag either SDTR or WDTR negotiation on an SCB. The real problem is
that I don't account for the case when an SCB that is tagged to do a particular
type of negotiation completes or SELTOs (selection timeout) without the
negotiation taking place, so the accounting of sdtrpending and wdtrpending
gets screwed up. In the wide case, if we tag it to do both wdtr and sdtr,
it only performs wdtr (since wdtr must occur first and we spread out the
negotiation over two commands) so we always have sdtrpending set for that
target and we never do a real SDTR. I fill properly fix the accounting
after 2.0.5 goes out the door, but this works (as confirmed by Dan) on
wide targets.
Other stuff that is also included:
1) Don't do a bzero when recycling SCBs. The only thing that must explicitly
be set to zero is the scb control byte which is done in ahc_get_scb. We also
need to set the SG_list_pointer and SG_list_count to 0 for commands that do
not transfer data.
2) Mask the interrupt type printout for the aic7870 case. The bit we were
using to determine interrupt type is only valid for the aic7770.
Submitted by: Justin Gibbs
1995-05-17 07:06:02 +00:00
|
|
|
mvi INTSTAT,AWAITING_MSG
|
1995-08-05 06:59:17 +00:00
|
|
|
jmp wait_for_selection
|
Fixes to the aic7xxx sequencer code and device driver from Justin Gibbs:
1) If a target initiated a sync negotiation with us and happened to chose a
value above 15, the old code inadvertantly truncated it with an "& 0x0f".
If the periferal picked something really bad like 0x32, you'd end up with
an offset of 2 which would hang the drive since it didn't expect to ever
get something so low. We now do a MIN(maxoffset, given_offset).
2) In the case of Wide cards, we were turning on sync transfers after a
sucessfull wide negotiation. Now we leave the offset alone in the per
target scratch space (which implies asyncronous transfers since we initialize
it that way) until a syncronous negotation occurs.
3) We were advertizing a max offset of 15 instead of 8 for wide devices.
4) If the upper level SCSI code sent down a "SCSI_RESET", it would hang the
system because we would end up sending a null command to the sequencer. Now
we handle SCSI_RESET correctly by having the sequencer interrupt us when it
is about to fill the message buffer so that we can fill it in ourselves.
The sequencer will also "simulate" a command complete for these "message only"
SCBs so that the kernel driver can finish up properly. The cdplay utility
will send a "SCSI_REST" to the cdplayer if you use the reset command.
5) The code that handles SCSIINTs was broken in that if more than one type
of error was true at once, we'd do outbs without the card being paused.
The else clause after the busfree case was also an accident waiting to
happen. I've now turned this into an if, else if, else type of thing, since
in most cases when we handle one type of error, it should be okay to ignore
the rest (ie if we have a SELTO, who cares if there was a parity error on
the transaction?), but the section should really be rewritten after 2.0.5.
This fix was the least obtrusive way to patch the problem.
6) Only tag either SDTR or WDTR negotiation on an SCB. The real problem is
that I don't account for the case when an SCB that is tagged to do a particular
type of negotiation completes or SELTOs (selection timeout) without the
negotiation taking place, so the accounting of sdtrpending and wdtrpending
gets screwed up. In the wide case, if we tag it to do both wdtr and sdtr,
it only performs wdtr (since wdtr must occur first and we spread out the
negotiation over two commands) so we always have sdtrpending set for that
target and we never do a real SDTR. I fill properly fix the accounting
after 2.0.5 goes out the door, but this works (as confirmed by Dan) on
wide targets.
Other stuff that is also included:
1) Don't do a bzero when recycling SCBs. The only thing that must explicitly
be set to zero is the scb control byte which is done in ahc_get_scb. We also
need to set the SG_list_pointer and SG_list_count to 0 for commands that do
not transfer data.
2) Mask the interrupt type printout for the aic7870 case. The bit we were
using to determine interrupt type is only valid for the aic7770.
Submitted by: Justin Gibbs
1995-05-17 07:06:02 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
mk_identify:
|
|
|
|
and A,DISCENB,SCB_CONTROL /* mask off disconnect privledge */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
and MSG0,0x7,SCB_TCL /* lun */
|
|
|
|
or MSG0,A /* or in disconnect privledge */
|
|
|
|
or MSG0,MSG_IDENTIFY
|
|
|
|
mvi MSG_LEN, 1
|
1995-02-22 01:37:52 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
test SCB_CONTROL,0xb0 jz !message /* WDTR, SDTR or TAG?? */
|
|
|
|
/*
|
|
|
|
* Tag Message if Tag enabled in SCB control block. Use SCBPTR as the tag
|
|
|
|
* value
|
|
|
|
*/
|
1995-02-22 01:37:52 +00:00
|
|
|
|
|
|
|
mk_tag:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi DINDEX, MSG1
|
|
|
|
test SCB_CONTROL,TAG_ENB jz mk_tag_done
|
|
|
|
and A,0x23,SCB_CONTROL
|
1995-02-22 01:37:52 +00:00
|
|
|
mov DINDIR,A
|
|
|
|
mov DINDIR,SCBPTR
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
add MSG_LEN,COMP_MSG0,DINDEX /* update message length */
|
1995-02-22 01:37:52 +00:00
|
|
|
|
|
|
|
mk_tag_done:
|
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
test SCB_CONTROL,0x90 jz !message /* NEEDWDTR|NEEDSDTR */
|
1996-01-03 06:25:32 +00:00
|
|
|
mov DINDEX call mk_dtr /* build DTR message if needed */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
!message:
|
1995-08-05 06:59:17 +00:00
|
|
|
wait_for_selection:
|
1996-01-03 06:25:32 +00:00
|
|
|
test SSTAT0,SELDO jnz select
|
|
|
|
test SSTAT0,SELDI jz wait_for_selection
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Reselection has been initiated by a target. Make a note that we've been
|
|
|
|
* reselected, but haven't seen an IDENTIFY message from the target
|
|
|
|
* yet.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
reselect:
|
1996-01-03 06:25:32 +00:00
|
|
|
clr MSG_LEN /* Don't have anything in the mesg buffer */
|
1995-04-27 17:44:27 +00:00
|
|
|
mov SELID call initialize_scsiid
|
1996-01-03 06:25:32 +00:00
|
|
|
and FLAGS,0x03 /* clear target specific flags */
|
|
|
|
or FLAGS,RESELECTED
|
|
|
|
jmp select2
|
|
|
|
|
|
|
|
/*
|
|
|
|
* After the selection, remove this SCB from the "waiting for selection"
|
|
|
|
* list. This is achieved by simply moving our "next" pointer into
|
|
|
|
* WAITING_SCBH. Our next pointer will be set to null the next time this
|
|
|
|
* SCB is used, so don't bother with it now.
|
|
|
|
*/
|
1995-04-27 17:44:27 +00:00
|
|
|
select:
|
1996-01-03 06:25:32 +00:00
|
|
|
and FLAGS,0x03 /* Clear target flags */
|
|
|
|
mov WAITING_SCBH,SCB_NEXT_WAITING
|
1995-04-27 17:44:27 +00:00
|
|
|
select2:
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Set CLRCHN here before the target has entered a data transfer mode -
|
|
|
|
* with synchronous SCSI, if you do it later, you blow away some
|
|
|
|
* data in the SCSI FIFO that the target has already sent to you.
|
|
|
|
*/
|
|
|
|
or SXFRCTL0,CLRCHN
|
|
|
|
/*
|
|
|
|
* Initialize SCSIRATE with the appropriate value for this target.
|
|
|
|
*/
|
|
|
|
call ndx_dtr
|
|
|
|
mov SCSIRATE,SINDIR
|
|
|
|
|
|
|
|
mvi SCSISEQ,ENAUTOATNP /*
|
|
|
|
* ATN on parity errors
|
|
|
|
* for "in" phases
|
|
|
|
*/
|
|
|
|
mvi CLRSINT1,CLRBUSFREE
|
|
|
|
mvi CLRSINT0,0x60 /* CLRSELDI|CLRSELDO */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main loop for information transfer phases. If BSY is false, then
|
|
|
|
* we have a bus free condition, expected or not. Otherwise, wait
|
|
|
|
* for the target to assert REQ before checking MSG, C/D and I/O
|
|
|
|
* for the bus phase.
|
|
|
|
*
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
ITloop:
|
1996-01-03 06:25:32 +00:00
|
|
|
test SSTAT1,BUSFREE jnz p_busfree
|
|
|
|
test SSTAT1,REQINIT jz ITloop
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
and A,PHASE_MASK,SCSISIGI
|
1996-01-29 03:12:06 +00:00
|
|
|
mov LASTPHASE,A
|
|
|
|
mov SCSISIGO,A
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
cmp ALLZEROS,A je p_dataout
|
1996-01-03 06:25:32 +00:00
|
|
|
cmp A,P_DATAIN je p_datain
|
|
|
|
cmp A,P_COMMAND je p_command
|
|
|
|
cmp A,P_MESGOUT je p_mesgout
|
|
|
|
cmp A,P_STATUS je p_status
|
|
|
|
cmp A,P_MESGIN je p_mesgin
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi INTSTAT,BAD_PHASE /* unknown phase - signal driver */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
p_dataout:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi DMAPARAMS,0x7d /*
|
|
|
|
* WIDEODD|SCSIEN|SDMAEN|HDMAEN|
|
|
|
|
* DIRECTION|FIFORESET
|
|
|
|
*/
|
1995-08-05 17:31:39 +00:00
|
|
|
jmp data_phase_init
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* If we re-enter the data phase after going through another phase, the
|
|
|
|
* STCNT may have been cleared, so restore it from the residual field.
|
|
|
|
*/
|
1995-08-05 17:31:39 +00:00
|
|
|
data_phase_reinit:
|
1996-01-29 03:12:06 +00:00
|
|
|
mov STCNT0,SCB_RESID_DCNT0
|
|
|
|
mov STCNT1,SCB_RESID_DCNT1
|
|
|
|
mov STCNT2,SCB_RESID_DCNT2
|
1995-08-05 17:31:39 +00:00
|
|
|
jmp data_phase_loop
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-08-05 17:31:39 +00:00
|
|
|
p_datain:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi DMAPARAMS,0x79 /*
|
|
|
|
* WIDEODD|SCSIEN|SDMAEN|HDMAEN|
|
|
|
|
* !DIRECTION|FIFORESET
|
|
|
|
*/
|
1995-08-05 17:31:39 +00:00
|
|
|
data_phase_init:
|
|
|
|
call assert
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-08-05 17:31:39 +00:00
|
|
|
test FLAGS, DPHASE jnz data_phase_reinit
|
|
|
|
call sg_scb2ram
|
1996-01-03 06:25:32 +00:00
|
|
|
or FLAGS, DPHASE /* We have seen a data phase */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-08-05 17:31:39 +00:00
|
|
|
data_phase_loop:
|
1996-01-03 06:25:32 +00:00
|
|
|
/* If we are the last SG block, don't set wideodd. */
|
1995-08-05 17:31:39 +00:00
|
|
|
cmp SG_COUNT,0x01 jne data_phase_wideodd
|
1996-01-03 06:25:32 +00:00
|
|
|
and DMAPARAMS, 0xbf /* Turn off WIDEODD */
|
1995-08-05 17:31:39 +00:00
|
|
|
data_phase_wideodd:
|
|
|
|
mov DMAPARAMS call dma
|
1995-03-31 14:06:02 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/* Exit if we had an underrun */
|
|
|
|
test SSTAT0,SDONE jz data_phase_finish /* underrun STCNT != 0 */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Advance the scatter-gather pointers if needed
|
|
|
|
*/
|
1995-08-05 17:31:39 +00:00
|
|
|
sg_advance:
|
1996-01-03 06:25:32 +00:00
|
|
|
dec SG_COUNT /* one less segment to go */
|
|
|
|
|
|
|
|
test SG_COUNT, 0xff jz data_phase_finish /* Are we done? */
|
|
|
|
|
|
|
|
clr A /* add sizeof(struct scatter) */
|
|
|
|
add SG_NEXT0,SG_SIZEOF,SG_NEXT0
|
|
|
|
adc SG_NEXT1,A,SG_NEXT1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Load a struct scatter and set up the data address and length.
|
|
|
|
* If the working value of the SG count is nonzero, then
|
|
|
|
* we need to load a new set of values.
|
|
|
|
*
|
|
|
|
* This, like all DMA's, assumes a little-endian host data storage.
|
|
|
|
*/
|
1995-08-05 17:31:39 +00:00
|
|
|
sg_load:
|
1996-01-03 06:25:32 +00:00
|
|
|
clr HCNT2
|
|
|
|
clr HCNT1
|
|
|
|
mvi HCNT0,SG_SIZEOF
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
mov HADDR0,SG_NEXT0
|
|
|
|
mov HADDR1,SG_NEXT1
|
|
|
|
mov HADDR2,SG_NEXT2
|
|
|
|
mov HADDR3,SG_NEXT3
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
or DFCNTRL,0xd /* HDMAEN|DIRECTION|FIFORESET */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Wait for DMA from host memory to data FIFO to complete, then disable
|
|
|
|
* DMA and wait for it to acknowledge that it's off.
|
|
|
|
*/
|
1996-01-29 03:12:06 +00:00
|
|
|
dma_finish:
|
|
|
|
test DFSTATUS,HDONE jz dma_finish
|
|
|
|
/* Turn off DMA preserving WIDEODD */
|
|
|
|
and DFCNTRL,WIDEODD
|
|
|
|
dma_finish2:
|
|
|
|
test DFCNTRL,HDMAENACK jnz dma_finish2
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Copy data from FIFO into SCB data pointer and data count. This assumes
|
|
|
|
* that the struct scatterlist has this structure (this and sizeof(struct
|
1996-03-10 07:02:32 +00:00
|
|
|
* scatterlist) == 12 are asserted in aic7xxx.c for the Linux driver):
|
1996-01-03 06:25:32 +00:00
|
|
|
*
|
|
|
|
* struct scatterlist {
|
|
|
|
* char *address; four bytes, little-endian order
|
|
|
|
* ... four bytes, ignored
|
|
|
|
* unsigned short length; two bytes, little-endian order
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
*
|
1996-03-10 07:02:32 +00:00
|
|
|
* In FreeBSD, the scatter list entry is only 8 bytes.
|
1996-01-03 06:25:32 +00:00
|
|
|
*
|
|
|
|
* struct ahc_dma_seg {
|
|
|
|
* physaddr addr; four bytes, little-endian order
|
|
|
|
* long len; four bytes, little endian order
|
|
|
|
* };
|
|
|
|
*/
|
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
mov HADDR0,DFDAT
|
|
|
|
mov HADDR1,DFDAT
|
|
|
|
mov HADDR2,DFDAT
|
|
|
|
mov HADDR3,DFDAT
|
1996-03-10 07:02:32 +00:00
|
|
|
/*
|
|
|
|
* For Linux, we must throw away four bytes since there is a 32bit gap
|
|
|
|
* in the middle of a struct scatterlist.
|
|
|
|
*/
|
|
|
|
#ifdef linux
|
1996-01-03 06:25:32 +00:00
|
|
|
mov NONE,DFDAT
|
|
|
|
mov NONE,DFDAT
|
|
|
|
mov NONE,DFDAT
|
|
|
|
mov NONE,DFDAT
|
1996-03-10 07:02:32 +00:00
|
|
|
#endif
|
1996-01-29 03:12:06 +00:00
|
|
|
mov HCNT0,DFDAT
|
|
|
|
mov HCNT1,DFDAT
|
|
|
|
mov HCNT2,DFDAT
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/* Load STCNT as well. It is a mirror of HCNT */
|
1996-01-29 03:12:06 +00:00
|
|
|
mov STCNT0,HCNT0
|
|
|
|
mov STCNT1,HCNT1
|
|
|
|
mov STCNT2,HCNT2
|
1995-08-05 17:31:39 +00:00
|
|
|
test SSTAT1,PHASEMIS jz data_phase_loop
|
|
|
|
|
|
|
|
data_phase_finish:
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* After a DMA finishes, save the SG and STCNT residuals back into the SCB
|
|
|
|
* We use STCNT instead of HCNT, since it's a reflection of how many bytes
|
|
|
|
* were transferred on the SCSI (as opposed to the host) bus.
|
|
|
|
*/
|
1996-01-29 03:12:06 +00:00
|
|
|
mov SCB_RESID_DCNT0,STCNT0
|
|
|
|
mov SCB_RESID_DCNT1,STCNT1
|
|
|
|
mov SCB_RESID_DCNT2,STCNT2
|
1996-01-03 06:25:32 +00:00
|
|
|
mov SCB_RESID_SGCNT, SG_COUNT
|
1994-11-17 20:19:10 +00:00
|
|
|
jmp ITloop
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Command phase. Set up the DMA registers and let 'er rip - the
|
|
|
|
* two bytes after the SCB SCSI_cmd_length are zeroed by the driver,
|
|
|
|
* so we can copy those three bytes directly into HCNT.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
p_command:
|
|
|
|
call assert
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Load HADDR and HCNT. We can do this in one bcopy since they are neighbors
|
|
|
|
*/
|
1996-01-29 03:12:06 +00:00
|
|
|
mov HADDR0, SCB_CMDPTR0
|
|
|
|
mov HADDR1, SCB_CMDPTR1
|
|
|
|
mov HADDR2, SCB_CMDPTR2
|
|
|
|
mov HADDR3, SCB_CMDPTR3
|
|
|
|
mov HCNT0, SCB_CMDLEN
|
|
|
|
clr HCNT1
|
|
|
|
clr HCNT2
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
mov STCNT0, HCNT0
|
|
|
|
mov STCNT1, HCNT1
|
|
|
|
mov STCNT2, HCNT2
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
mvi 0x3d call dma # SCSIEN|SDMAEN|HDMAEN|
|
|
|
|
# DIRECTION|FIFORESET
|
|
|
|
jmp ITloop
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Status phase. Wait for the data byte to appear, then read it
|
|
|
|
* and store it into the SCB.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
p_status:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi SCB_TARGET_STATUS call inb_first
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Message out phase. If there is no active message, but the target
|
|
|
|
* took us into this phase anyway, build a no-op message and send it.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
p_mesgout:
|
1996-01-03 06:25:32 +00:00
|
|
|
test MSG_LEN, 0xff jnz p_mesgout_start
|
|
|
|
mvi MSG_NOP call mk_mesg /* build NOP message */
|
|
|
|
|
|
|
|
p_mesgout_start:
|
|
|
|
/*
|
|
|
|
* Set up automatic PIO transfer from MSG0. Bit 3 in
|
|
|
|
* SXFRCTL0 (SPIOEN) is already on.
|
|
|
|
*/
|
|
|
|
mvi SINDEX,MSG0
|
1994-11-17 20:19:10 +00:00
|
|
|
mov DINDEX,MSG_LEN
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* When target asks for a byte, drop ATN if it's the last one in
|
|
|
|
* the message. Otherwise, keep going until the message is exhausted.
|
|
|
|
*
|
|
|
|
* Keep an eye out for a phase change, in case the target issues
|
|
|
|
* a MESSAGE REJECT.
|
|
|
|
*/
|
|
|
|
p_mesgout_loop:
|
1996-01-07 19:18:28 +00:00
|
|
|
test SSTAT1,PHASEMIS jnz p_mesgout_phasemis
|
1996-01-03 06:25:32 +00:00
|
|
|
test SSTAT0,SPIORDY jz p_mesgout_loop
|
|
|
|
cmp DINDEX,1 jne p_mesgout_outb /* last byte? */
|
|
|
|
mvi CLRSINT1,CLRATNO /* drop ATN */
|
|
|
|
p_mesgout_outb:
|
|
|
|
dec DINDEX
|
1996-01-11 06:17:49 +00:00
|
|
|
or CLRSINT0, CLRSPIORDY
|
1994-11-17 20:19:10 +00:00
|
|
|
mov SCSIDATL,SINDIR
|
1996-01-07 19:18:28 +00:00
|
|
|
|
1994-11-17 20:19:10 +00:00
|
|
|
p_mesgout4:
|
1996-01-03 06:25:32 +00:00
|
|
|
test DINDEX,0xff jnz p_mesgout_loop
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the next bus phase after ATN drops is a message out, it means
|
|
|
|
* that the target is requesting that the last message(s) be resent.
|
|
|
|
*/
|
|
|
|
p_mesgout_snoop:
|
|
|
|
test SSTAT1,BUSFREE jnz p_mesgout_done
|
|
|
|
test SSTAT1,REQINIT jz p_mesgout_snoop
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
test SSTAT1,PHASEMIS jnz p_mesgout_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
or SCSISIGO,ATNO /* turn on ATNO */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
jmp ITloop
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
p_mesgout_phasemis:
|
|
|
|
mvi CLRSINT1,CLRATNO /* Be sure turn ATNO off */
|
|
|
|
p_mesgout_done:
|
|
|
|
clr MSG_LEN /* no active msg */
|
1994-11-17 20:19:10 +00:00
|
|
|
jmp ITloop
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Message in phase. Bytes are read using Automatic PIO mode.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
p_mesgin:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi A call inb_first /* read the 1st message byte */
|
|
|
|
mov REJBYTE,A /* save it for the driver */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
test A,MSG_IDENTIFY jnz mesgin_identify
|
|
|
|
cmp A,MSG_DISCONNECT je mesgin_disconnect
|
|
|
|
cmp A,MSG_SDPTRS je mesgin_sdptrs
|
|
|
|
cmp ALLZEROS,A je mesgin_complete
|
|
|
|
cmp A,MSG_RDPTRS je mesgin_rdptrs
|
|
|
|
cmp A,MSG_EXTENDED je mesgin_extended
|
|
|
|
cmp A,MSG_REJECT je mesgin_reject
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-08-06 05:15:45 +00:00
|
|
|
rej_mesgin:
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* We have no idea what this message in is, and there's no way
|
|
|
|
* to pass it up to the kernel, so we issue a message reject and
|
|
|
|
* hope for the best. Since we're now using manual PIO mode to
|
|
|
|
* read in the message, there should no longer be a race condition
|
|
|
|
* present when we assert ATN. In any case, rejection should be a
|
|
|
|
* rare occurrence - signal the driver when it happens.
|
|
|
|
*/
|
1996-01-29 03:12:06 +00:00
|
|
|
or SCSISIGO,ATNO /* turn on ATNO */
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi INTSTAT,SEND_REJECT /* let driver know */
|
1995-08-06 05:15:45 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi MSG_REJECT call mk_mesg
|
1995-08-06 05:15:45 +00:00
|
|
|
|
|
|
|
mesgin_done:
|
1996-01-03 06:25:32 +00:00
|
|
|
call inb_last /*ack & turn auto PIO back on*/
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp ITloop
|
|
|
|
|
|
|
|
|
|
|
|
mesgin_complete:
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* We got a "command complete" message, so put the SCB pointer
|
1996-01-29 03:12:06 +00:00
|
|
|
* into QUEUEOUT, and trigger a completion interrupt.
|
1996-01-03 06:25:32 +00:00
|
|
|
* Check status for non zero return and interrupt driver if needed
|
|
|
|
* This allows the driver to interpret errors only when they occur
|
|
|
|
* instead of always uploading the scb. If the status is SCSI_CHECK,
|
|
|
|
* the driver will download a new scb requesting sense to replace
|
|
|
|
* the old one, modify the "waiting for selection" SCB list and set
|
|
|
|
* RETURN_1 to 0x80. If RETURN_1 is set to 0x80 the sequencer imediately
|
|
|
|
* jumps to main loop where it will run down the waiting SCB list.
|
|
|
|
* If the kernel driver does not wish to request sense, it need
|
|
|
|
* only clear RETURN_1, and the command is allowed to complete. We don't
|
|
|
|
* bother to post to the QOUTFIFO in the error case since it would require
|
|
|
|
* extra work in the kernel driver to ensure that the entry was removed
|
|
|
|
* before the command complete code tried processing it.
|
|
|
|
*
|
|
|
|
* First check for residuals
|
|
|
|
*/
|
|
|
|
test SCB_RESID_SGCNT,0xff jz check_status
|
|
|
|
/*
|
|
|
|
* If we have a residual count, interrupt and tell the host. Other
|
|
|
|
* alternatives are to pause the sequencer on all command completes (yuck),
|
|
|
|
* dma the resid directly to the host (slick, we may have space to do it now)
|
|
|
|
* or have the sequencer pause itself when it encounters a non-zero resid
|
|
|
|
* (unecessary pause just to flag the command -yuck-, but takes one instruction
|
|
|
|
* and since it shouldn't happen that often is good enough for our purposes).
|
|
|
|
*/
|
|
|
|
resid:
|
|
|
|
mvi INTSTAT,RESIDUAL
|
1995-03-31 14:06:02 +00:00
|
|
|
|
|
|
|
check_status:
|
1996-01-03 06:25:32 +00:00
|
|
|
test SCB_TARGET_STATUS,0xff jz status_ok /* Good Status? */
|
|
|
|
mvi INTSTAT,BAD_STATUS /* let driver know */
|
|
|
|
cmp RETURN_1, SEND_SENSE jne status_ok
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-12-31 19:26:54 +00:00
|
|
|
|
1994-11-17 20:19:10 +00:00
|
|
|
status_ok:
|
1996-01-03 06:25:32 +00:00
|
|
|
/* First, mark this target as free. */
|
|
|
|
test SCB_CONTROL,TAG_ENB jnz test_immediate /*
|
|
|
|
* Tagged commands
|
|
|
|
* don't busy the
|
|
|
|
* target.
|
|
|
|
*/
|
|
|
|
mov FUNCTION1,SCB_TCL
|
1994-12-31 19:26:54 +00:00
|
|
|
mov A,FUNCTION1
|
1996-01-03 06:25:32 +00:00
|
|
|
test SCB_TCL,0x88 jz clear_a
|
1994-12-31 19:26:54 +00:00
|
|
|
xor ACTIVE_B,A
|
1996-01-03 06:25:32 +00:00
|
|
|
jmp test_immediate
|
1994-12-31 19:26:54 +00:00
|
|
|
|
|
|
|
clear_a:
|
|
|
|
xor ACTIVE_A,A
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
test_immediate:
|
|
|
|
test SCB_CMDLEN,0xff jnz complete /* Immediate message complete */
|
|
|
|
/*
|
|
|
|
* Pause the sequencer until the driver gets around to handling the command
|
|
|
|
* complete. This is so that any action that might require carefull timing
|
|
|
|
* with the completion of this command can occur.
|
|
|
|
*/
|
1995-07-31 08:21:59 +00:00
|
|
|
mvi INTSTAT,IMMEDDONE
|
1996-01-03 06:25:32 +00:00
|
|
|
jmp start
|
1994-12-31 19:26:54 +00:00
|
|
|
complete:
|
1994-11-17 20:19:10 +00:00
|
|
|
mov QOUTFIFO,SCBPTR
|
1995-03-31 14:06:02 +00:00
|
|
|
mvi INTSTAT,CMDCMPLT
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-03-31 14:06:02 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Is it an extended message? We only support the synchronous and wide data
|
|
|
|
* transfer request messages, which will probably be in response to
|
|
|
|
* WDTR or SDTR message outs from us. If it's not SDTR or WDTR, reject it -
|
|
|
|
* apparently this can be done after any message in byte, according
|
|
|
|
* to the SCSI-2 spec.
|
|
|
|
*/
|
1995-08-06 05:15:45 +00:00
|
|
|
mesgin_extended:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi ARG_1 call inb_next /* extended message length */
|
|
|
|
mvi A call inb_next /* extended message code */
|
1995-01-13 02:22:11 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
cmp A,MSG_SDTR je p_mesginSDTR
|
|
|
|
cmp A,MSG_WDTR je p_mesginWDTR
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp rej_mesgin
|
1995-01-13 02:22:11 +00:00
|
|
|
|
|
|
|
p_mesginWDTR:
|
1996-01-03 06:25:32 +00:00
|
|
|
cmp ARG_1,2 jne rej_mesgin /* extended mesg length=2 */
|
|
|
|
mvi ARG_1 call inb_next /* Width of bus */
|
|
|
|
mvi INTSTAT,WDTR_MSG /* let driver know */
|
|
|
|
test RETURN_1,0xff jz mesgin_done /* Do we need to send WDTR? */
|
|
|
|
cmp RETURN_1,SEND_REJ je rej_mesgin /*
|
|
|
|
* Bus width was too large
|
|
|
|
* Reject it.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* We didn't initiate the wide negotiation, so we must respond to the request */
|
|
|
|
and RETURN_1,0x7f /* Clear the SEND_WDTR Flag */
|
|
|
|
mvi DINDEX,MSG0
|
|
|
|
mvi MSG0 call mk_wdtr /* build WDTR message */
|
1996-01-29 03:12:06 +00:00
|
|
|
or SCSISIGO,ATNO /* turn on ATNO */
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-01-13 02:22:11 +00:00
|
|
|
p_mesginSDTR:
|
1996-01-03 06:25:32 +00:00
|
|
|
cmp ARG_1,3 jne rej_mesgin /* extended mesg length=3 */
|
|
|
|
mvi ARG_1 call inb_next /* xfer period */
|
|
|
|
mvi A call inb_next /* REQ/ACK offset */
|
|
|
|
mvi INTSTAT,SDTR_MSG /* call driver to convert */
|
|
|
|
|
|
|
|
test RETURN_1,0xff jz mesgin_done /* Do we need to mk_sdtr/rej */
|
|
|
|
cmp RETURN_1,SEND_REJ je rej_mesgin /*
|
|
|
|
* Requested SDTR too small
|
|
|
|
* Reject it.
|
|
|
|
*/
|
|
|
|
mvi DINDEX, MSG0
|
|
|
|
mvi MSG0 call mk_sdtr
|
1996-01-29 03:12:06 +00:00
|
|
|
or SCSISIGO,ATNO /* turn on ATNO */
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Is it a disconnect message? Set a flag in the SCB to remind us
|
|
|
|
* and await the bus going free.
|
|
|
|
*/
|
1995-08-06 05:15:45 +00:00
|
|
|
mesgin_disconnect:
|
1996-01-03 06:25:32 +00:00
|
|
|
or SCB_CONTROL,DISCONNECTED
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Save data pointers message? Copy working values into the SCB,
|
|
|
|
* usually in preparation for a disconnect.
|
|
|
|
*/
|
1995-08-06 05:15:45 +00:00
|
|
|
mesgin_sdptrs:
|
1994-11-17 20:19:10 +00:00
|
|
|
call sg_ram2scb
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Restore pointers message? Data pointers are recopied from the
|
|
|
|
* SCB anytime we enter a data phase for the first time, so all
|
|
|
|
* we need to do is clear the DPHASE flag and let the data phase
|
|
|
|
* code do the rest.
|
|
|
|
*/
|
1995-08-06 05:15:45 +00:00
|
|
|
mesgin_rdptrs:
|
1996-01-03 06:25:32 +00:00
|
|
|
and FLAGS,0xfb /*
|
|
|
|
* !DPHASE we'll reload them
|
|
|
|
* the next time through
|
|
|
|
*/
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Identify message? For a reconnecting target, this tells us the lun
|
|
|
|
* that the reconnection is for - find the correct SCB and switch to it,
|
|
|
|
* clearing the "disconnected" bit so we don't "find" it by accident later.
|
|
|
|
*/
|
1995-08-06 05:15:45 +00:00
|
|
|
mesgin_identify:
|
1996-01-03 06:25:32 +00:00
|
|
|
test A,0x78 jnz rej_mesgin /*!DiscPriv|!LUNTAR|!Reserved*/
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
and A,0x07 /* lun in lower three bits */
|
1995-02-22 01:37:52 +00:00
|
|
|
or SAVED_TCL,A,SELID
|
|
|
|
and SAVED_TCL,0xf7
|
1996-01-03 06:25:32 +00:00
|
|
|
and A,SELBUSB,SBLKCTL /* B Channel?? */
|
1995-02-22 01:37:52 +00:00
|
|
|
or SAVED_TCL,A
|
1996-01-03 06:25:32 +00:00
|
|
|
call inb_last /* ACK */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Here we "snoop" the bus looking for a SIMPLE QUEUE TAG message.
|
|
|
|
* If we get one, we use the tag returned to switch to the proper
|
|
|
|
* SCB. Otherwise, we just use the findSCB method.
|
|
|
|
*/
|
|
|
|
snoop_tag_loop:
|
|
|
|
test SSTAT1,BUSFREE jnz use_findSCB
|
|
|
|
test SSTAT1,REQINIT jz snoop_tag_loop
|
|
|
|
test SSTAT1,PHASEMIS jnz use_findSCB
|
|
|
|
mvi A call inb_first
|
|
|
|
cmp A,MSG_SIMPLE_TAG je get_tag
|
|
|
|
use_findSCB:
|
|
|
|
mov ALLZEROS call findSCB /* Have to search */
|
1995-02-22 01:37:52 +00:00
|
|
|
setup_SCB:
|
1996-01-03 06:25:32 +00:00
|
|
|
and SCB_CONTROL,0xfb /* clear disconnect bit in SCB */
|
|
|
|
or FLAGS,IDENTIFY_SEEN /* make note of IDENTIFY */
|
1995-02-22 01:37:52 +00:00
|
|
|
jmp ITloop
|
|
|
|
get_tag:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi ARG_1 call inb_next /* tag value */
|
|
|
|
/*
|
|
|
|
* See if the tag is in range. The tag is < SCBCOUNT if we add
|
|
|
|
* the complement of SCBCOUNT to the incomming tag and there is
|
|
|
|
* no carry.
|
|
|
|
*/
|
|
|
|
mov A,COMP_SCBCOUNT
|
|
|
|
add SINDEX,A,ARG_1
|
|
|
|
jc abort_tag
|
|
|
|
|
|
|
|
/*
|
1996-01-29 03:12:06 +00:00
|
|
|
* Ensure that the SCB the tag points to is for a SCB transaction
|
1996-01-03 06:25:32 +00:00
|
|
|
* to the reconnecting target.
|
|
|
|
*/
|
|
|
|
mov SCBPTR,ARG_1
|
1995-02-22 01:37:52 +00:00
|
|
|
mov A,SAVED_TCL
|
1996-01-03 06:25:32 +00:00
|
|
|
cmp SCB_TCL,A jne abort_tag
|
|
|
|
test SCB_CONTROL,TAG_ENB jz abort_tag
|
|
|
|
call inb_last /* Ack Successful tag */
|
|
|
|
jmp setup_SCB
|
1995-04-09 06:40:16 +00:00
|
|
|
abort_tag:
|
1996-01-29 03:12:06 +00:00
|
|
|
or SCSISIGO,ATNO /* turn on ATNO */
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi INTSTAT,ABORT_TAG /* let driver know */
|
|
|
|
mvi 0xd call mk_mesg /* ABORT TAG message */
|
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Message reject? Let the kernel driver handle this. If we have an
|
|
|
|
* outstanding WDTR or SDTR negotiation, assume that it's a response from
|
|
|
|
* the target selecting 8bit or asynchronous transfer, otherwise just ignore
|
|
|
|
* it since we have no clue what it pertains to.
|
|
|
|
*/
|
1995-08-06 05:15:45 +00:00
|
|
|
mesgin_reject:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi INTSTAT, REJECT_MSG
|
1995-08-06 05:15:45 +00:00
|
|
|
jmp mesgin_done
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* [ ADD MORE MESSAGE HANDLING HERE ]
|
|
|
|
*/
|
1995-02-22 01:37:52 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Bus free phase. It might be useful to interrupt the device
|
|
|
|
* driver if we aren't expecting this. For now, make sure that
|
|
|
|
* ATN isn't being asserted and look for a new command.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
p_busfree:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi CLRSINT1,CLRATNO
|
1996-03-10 07:02:32 +00:00
|
|
|
clr LASTPHASE
|
1996-01-03 06:25:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* if this is an immediate command, perform a psuedo command complete to
|
|
|
|
* notify the driver.
|
|
|
|
*/
|
|
|
|
test SCB_CMDLEN,0xff jz status_ok
|
|
|
|
jmp start
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Locking the driver out, build a one-byte message passed in SINDEX
|
|
|
|
* if there is no active message already. SINDEX is returned intact.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
mk_mesg:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi SEQCTL,0x50 /* PAUSEDIS|FASTMODE */
|
|
|
|
test MSG_LEN,0xff jz mk_mesg1 /* Should always succeed */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hmmm. For some reason the mesg buffer is in use.
|
|
|
|
* Tell the driver. It should look at SINDEX to find
|
|
|
|
* out what we wanted to use the buffer for and resolve
|
|
|
|
* the conflict.
|
|
|
|
*/
|
|
|
|
mvi SEQCTL,0x10 /* !PAUSEDIS|FASTMODE */
|
1996-01-29 03:12:06 +00:00
|
|
|
mvi INTSTAT,MSG_BUFFER_BUSY
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
mk_mesg1:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi MSG_LEN,1 /* length = 1 */
|
|
|
|
mov MSG0,SINDEX /* 1-byte message */
|
|
|
|
mvi SEQCTL,0x10 ret /* !PAUSEDIS|FASTMODE */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions to read data in Automatic PIO mode.
|
|
|
|
*
|
|
|
|
* According to Adaptec's documentation, an ACK is not sent on input from
|
|
|
|
* the target until SCSIDATL is read from. So we wait until SCSIDATL is
|
|
|
|
* latched (the usual way), then read the data byte directly off the bus
|
|
|
|
* using SCSIBUSL. When we have pulled the ATN line, or we just want to
|
|
|
|
* acknowledge the byte, then we do a dummy read from SCISDATL. The SCSI
|
|
|
|
* spec guarantees that the target will hold the data byte on the bus until
|
|
|
|
* we send our ACK.
|
|
|
|
*
|
|
|
|
* The assumption here is that these are called in a particular sequence,
|
|
|
|
* and that REQ is already set when inb_first is called. inb_{first,next}
|
|
|
|
* use the same calling convention as inb.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
inb_next:
|
1996-01-11 06:17:49 +00:00
|
|
|
or CLRSINT0, CLRSPIORDY
|
1996-01-09 16:14:03 +00:00
|
|
|
mov NONE,SCSIDATL /*dummy read from latch to ACK*/
|
|
|
|
inb_next_wait:
|
1996-01-07 19:18:28 +00:00
|
|
|
test SSTAT1,PHASEMIS jnz mesgin_phasemis
|
1996-01-09 16:14:03 +00:00
|
|
|
test SSTAT0,SPIORDY jz inb_next_wait /* wait for next byte */
|
|
|
|
inb_first:
|
1996-01-03 06:25:32 +00:00
|
|
|
mov DINDEX,SINDEX
|
|
|
|
mov DINDIR,SCSIBUSL ret /*read byte directly from bus*/
|
|
|
|
inb_last:
|
1996-01-09 16:14:03 +00:00
|
|
|
mov NONE,SCSIDATL ret /*dummy read from latch to ACK*/
|
1996-01-05 16:11:49 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
mesgin_phasemis:
|
|
|
|
/*
|
|
|
|
* We expected to receive another byte, but the target changed phase
|
|
|
|
*/
|
|
|
|
mvi INTSTAT, MSGIN_PHASEMIS
|
|
|
|
jmp ITloop
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* DMA data transfer. HADDR and HCNT must be loaded first, and
|
|
|
|
* SINDEX should contain the value to load DFCNTRL with - 0x3d for
|
|
|
|
* host->scsi, or 0x39 for scsi->host. The SCSI channel is cleared
|
|
|
|
* during initialization.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
dma:
|
|
|
|
mov DFCNTRL,SINDEX
|
|
|
|
dma1:
|
1996-01-03 06:25:32 +00:00
|
|
|
test SSTAT0,DMADONE jnz dma3
|
|
|
|
test SSTAT1,PHASEMIS jz dma1 /* ie. underrun */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We will be "done" DMAing when the transfer count goes to zero, or
|
|
|
|
* the target changes the phase (in light of this, it makes sense that
|
|
|
|
* the DMA circuitry doesn't ACK when PHASEMIS is active). If we are
|
|
|
|
* doing a SCSI->Host transfer, the data FIFO should be flushed auto-
|
|
|
|
* magically on STCNT=0 or a phase change, so just wait for FIFO empty
|
|
|
|
* status.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
dma3:
|
1996-01-03 06:25:32 +00:00
|
|
|
test SINDEX,DIRECTION jnz dma5
|
1994-11-17 20:19:10 +00:00
|
|
|
dma4:
|
1996-01-03 06:25:32 +00:00
|
|
|
test DFSTATUS,FIFOEMP jz dma4
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Now shut the DMA enables off and make sure that the DMA enables are
|
|
|
|
* actually off first lest we get an ILLSADDR.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
dma5:
|
1996-01-03 06:25:32 +00:00
|
|
|
/* disable DMA, but maintain WIDEODD */
|
1996-01-29 03:12:06 +00:00
|
|
|
and DFCNTRL,WIDEODD
|
1994-11-17 20:19:10 +00:00
|
|
|
dma6:
|
1996-01-03 06:25:32 +00:00
|
|
|
test DFCNTRL,0x38 jnz dma6 /* SCSIENACK|SDMAENACK|HDMAENACK */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
|
|
|
ret
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Common SCSI initialization for selection and reselection. Expects
|
|
|
|
* the target SCSI ID to be in the upper four bits of SINDEX, and A's
|
|
|
|
* contents are stomped on return.
|
|
|
|
*/
|
1995-04-27 17:44:27 +00:00
|
|
|
initialize_scsiid:
|
1996-01-03 06:25:32 +00:00
|
|
|
and SINDEX,0xf0 /* Get target ID */
|
1995-01-22 00:46:53 +00:00
|
|
|
and A,0x0f,SCSIID
|
|
|
|
or SINDEX,A
|
1995-04-27 17:44:27 +00:00
|
|
|
mov SCSIID,SINDEX ret
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Assert that if we've been reselected, then we've seen an IDENTIFY
|
|
|
|
* message.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
assert:
|
1996-01-03 06:25:32 +00:00
|
|
|
test FLAGS,RESELECTED jz return /* reselected? */
|
|
|
|
test FLAGS,IDENTIFY_SEEN jnz return /* seen IDENTIFY? */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi INTSTAT,NO_IDENT ret /* no - cause a kernel panic */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Locate the SCB matching the target ID/channel/lun in SAVED_TCL and switch
|
|
|
|
* the SCB to it. Have the kernel print a warning message if it can't be
|
|
|
|
* found, and generate an ABORT message to the target. SINDEX should be
|
|
|
|
* cleared on call.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
findSCB:
|
1995-02-22 01:37:52 +00:00
|
|
|
mov A,SAVED_TCL
|
1996-01-03 06:25:32 +00:00
|
|
|
mov SCBPTR,SINDEX /* switch to new SCB */
|
|
|
|
cmp SCB_TCL,A jne findSCB1 /* target ID/channel/lun match? */
|
|
|
|
test SCB_CONTROL,DISCONNECTED jz findSCB1 /*should be disconnected*/
|
1994-11-17 20:19:10 +00:00
|
|
|
ret
|
|
|
|
|
1995-02-22 01:37:52 +00:00
|
|
|
findSCB1:
|
1994-11-17 20:19:10 +00:00
|
|
|
inc SINDEX
|
|
|
|
mov A,SCBCOUNT
|
1995-02-22 01:37:52 +00:00
|
|
|
cmp SINDEX,A jne findSCB
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi INTSTAT,NO_MATCH /* not found - signal kernel */
|
|
|
|
mvi MSG_ABORT call mk_mesg /* ABORT message */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
or SCSISIGO,ATNO ret /* assert ATNO */
|
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Make a working copy of the scatter-gather parameters from the SCB.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
sg_scb2ram:
|
1996-01-29 03:12:06 +00:00
|
|
|
mov HADDR0, SCB_DATAPTR0
|
|
|
|
mov HADDR1, SCB_DATAPTR1
|
|
|
|
mov HADDR2, SCB_DATAPTR2
|
|
|
|
mov HADDR3, SCB_DATAPTR3
|
|
|
|
mov HCNT0, SCB_DATACNT0
|
|
|
|
mov HCNT1, SCB_DATACNT1
|
|
|
|
mov HCNT2, SCB_DATACNT2
|
|
|
|
|
|
|
|
mov STCNT0, HCNT0
|
|
|
|
mov STCNT1, HCNT1
|
|
|
|
mov STCNT2, HCNT2
|
1995-08-05 17:31:39 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
mov SG_COUNT,SCB_SGCOUNT
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
mov SG_NEXT0, SCB_SGPTR0
|
|
|
|
mov SG_NEXT1, SCB_SGPTR1
|
|
|
|
mov SG_NEXT2, SCB_SGPTR2
|
|
|
|
mov SG_NEXT3, SCB_SGPTR3 ret
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Copying RAM values back to SCB, for Save Data Pointers message, but
|
|
|
|
* only if we've actually been into a data phase to change them. This
|
|
|
|
* protects against bogus data in scratch ram and the residual counts
|
|
|
|
* since they are only initialized when we go into data_in or data_out.
|
|
|
|
*/
|
1994-11-17 20:19:10 +00:00
|
|
|
sg_ram2scb:
|
1995-08-05 17:31:39 +00:00
|
|
|
test FLAGS, DPHASE jz return
|
1996-01-03 06:25:32 +00:00
|
|
|
mov SCB_SGCOUNT,SG_COUNT
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
mov SCB_SGPTR0,SG_NEXT0
|
|
|
|
mov SCB_SGPTR1,SG_NEXT1
|
|
|
|
mov SCB_SGPTR2,SG_NEXT2
|
|
|
|
mov SCB_SGPTR3,SG_NEXT3
|
1995-08-05 17:31:39 +00:00
|
|
|
|
1996-01-29 03:12:06 +00:00
|
|
|
mov SCB_DATAPTR0,SHADDR0
|
|
|
|
mov SCB_DATAPTR1,SHADDR1
|
|
|
|
mov SCB_DATAPTR2,SHADDR2
|
|
|
|
mov SCB_DATAPTR3,SHADDR3
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Use the residual number since STCNT is corrupted by any message transfer
|
|
|
|
*/
|
1996-01-29 03:12:06 +00:00
|
|
|
mov SCB_DATACNT0,SCB_RESID_DCNT0
|
|
|
|
mov SCB_DATACNT1,SCB_RESID_DCNT1
|
|
|
|
mov SCB_DATACNT2,SCB_RESID_DCNT2 ret
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* Add the array base TARG_SCRATCH to the target offset (the target address
|
|
|
|
* is in SCSIID), and return the result in SINDEX. The accumulator
|
|
|
|
* contains the 3->8 decoding of the target ID on return.
|
|
|
|
*/
|
1995-01-13 02:22:11 +00:00
|
|
|
ndx_dtr:
|
1994-11-17 20:19:10 +00:00
|
|
|
shr A,SCSIID,4
|
1996-01-03 06:25:32 +00:00
|
|
|
test SBLKCTL,SELBUSB jz ndx_dtr_2
|
|
|
|
or A,0x08 /* Channel B entries add 8 */
|
1995-01-13 02:22:11 +00:00
|
|
|
ndx_dtr_2:
|
1996-01-29 03:12:06 +00:00
|
|
|
add SINDEX,TARG_SCRATCH,A ret
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* If we need to negotiate transfer parameters, build the WDTR or SDTR message
|
|
|
|
* starting at the address passed in SINDEX. DINDEX is modified on return.
|
|
|
|
* The SCSI-II spec requires that Wide negotiation occur first and you can
|
|
|
|
* only negotiat one or the other at a time otherwise in the event of a message
|
|
|
|
* reject, you wouldn't be able to tell which message was the culpret.
|
|
|
|
*/
|
1995-01-13 02:22:11 +00:00
|
|
|
mk_dtr:
|
1996-01-03 06:25:32 +00:00
|
|
|
test SCB_CONTROL,NEEDWDTR jnz mk_wdtr_16bit
|
|
|
|
or FLAGS, MAXOFFSET /* Force an offset of 15 or 8 if WIDE */
|
1995-01-13 02:22:11 +00:00
|
|
|
|
|
|
|
mk_sdtr:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi DINDIR,1 /* extended message */
|
|
|
|
mvi DINDIR,3 /* extended message length = 3 */
|
|
|
|
mvi DINDIR,1 /* SDTR code */
|
1995-01-13 02:22:11 +00:00
|
|
|
call sdtr_to_rate
|
1996-01-03 06:25:32 +00:00
|
|
|
mov DINDIR,RETURN_1 /* REQ/ACK transfer period */
|
|
|
|
test FLAGS, MAXOFFSET jnz mk_sdtr_max_offset
|
|
|
|
and DINDIR,0x0f,SINDIR /* Sync Offset */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
1995-03-31 14:06:02 +00:00
|
|
|
mk_sdtr_done:
|
1996-01-03 06:25:32 +00:00
|
|
|
add MSG_LEN,COMP_MSG0,DINDEX ret /* update message length */
|
1994-11-17 20:19:10 +00:00
|
|
|
|
Fixes to the aic7xxx sequencer code and device driver from Justin Gibbs:
1) If a target initiated a sync negotiation with us and happened to chose a
value above 15, the old code inadvertantly truncated it with an "& 0x0f".
If the periferal picked something really bad like 0x32, you'd end up with
an offset of 2 which would hang the drive since it didn't expect to ever
get something so low. We now do a MIN(maxoffset, given_offset).
2) In the case of Wide cards, we were turning on sync transfers after a
sucessfull wide negotiation. Now we leave the offset alone in the per
target scratch space (which implies asyncronous transfers since we initialize
it that way) until a syncronous negotation occurs.
3) We were advertizing a max offset of 15 instead of 8 for wide devices.
4) If the upper level SCSI code sent down a "SCSI_RESET", it would hang the
system because we would end up sending a null command to the sequencer. Now
we handle SCSI_RESET correctly by having the sequencer interrupt us when it
is about to fill the message buffer so that we can fill it in ourselves.
The sequencer will also "simulate" a command complete for these "message only"
SCBs so that the kernel driver can finish up properly. The cdplay utility
will send a "SCSI_REST" to the cdplayer if you use the reset command.
5) The code that handles SCSIINTs was broken in that if more than one type
of error was true at once, we'd do outbs without the card being paused.
The else clause after the busfree case was also an accident waiting to
happen. I've now turned this into an if, else if, else type of thing, since
in most cases when we handle one type of error, it should be okay to ignore
the rest (ie if we have a SELTO, who cares if there was a parity error on
the transaction?), but the section should really be rewritten after 2.0.5.
This fix was the least obtrusive way to patch the problem.
6) Only tag either SDTR or WDTR negotiation on an SCB. The real problem is
that I don't account for the case when an SCB that is tagged to do a particular
type of negotiation completes or SELTOs (selection timeout) without the
negotiation taking place, so the accounting of sdtrpending and wdtrpending
gets screwed up. In the wide case, if we tag it to do both wdtr and sdtr,
it only performs wdtr (since wdtr must occur first and we spread out the
negotiation over two commands) so we always have sdtrpending set for that
target and we never do a real SDTR. I fill properly fix the accounting
after 2.0.5 goes out the door, but this works (as confirmed by Dan) on
wide targets.
Other stuff that is also included:
1) Don't do a bzero when recycling SCBs. The only thing that must explicitly
be set to zero is the scb control byte which is done in ahc_get_scb. We also
need to set the SG_list_pointer and SG_list_count to 0 for commands that do
not transfer data.
2) Mask the interrupt type printout for the aic7870 case. The bit we were
using to determine interrupt type is only valid for the aic7770.
Submitted by: Justin Gibbs
1995-05-17 07:06:02 +00:00
|
|
|
mk_sdtr_max_offset:
|
1996-01-03 06:25:32 +00:00
|
|
|
/*
|
|
|
|
* We're initiating sync negotiation, so request the max offset we can (15 or 8)
|
|
|
|
*/
|
|
|
|
xor FLAGS, MAXOFFSET
|
|
|
|
|
|
|
|
/* Talking to a WIDE device? */
|
|
|
|
test SCSIRATE, WIDEXFER jnz wmax_offset
|
Fixes to the aic7xxx sequencer code and device driver from Justin Gibbs:
1) If a target initiated a sync negotiation with us and happened to chose a
value above 15, the old code inadvertantly truncated it with an "& 0x0f".
If the periferal picked something really bad like 0x32, you'd end up with
an offset of 2 which would hang the drive since it didn't expect to ever
get something so low. We now do a MIN(maxoffset, given_offset).
2) In the case of Wide cards, we were turning on sync transfers after a
sucessfull wide negotiation. Now we leave the offset alone in the per
target scratch space (which implies asyncronous transfers since we initialize
it that way) until a syncronous negotation occurs.
3) We were advertizing a max offset of 15 instead of 8 for wide devices.
4) If the upper level SCSI code sent down a "SCSI_RESET", it would hang the
system because we would end up sending a null command to the sequencer. Now
we handle SCSI_RESET correctly by having the sequencer interrupt us when it
is about to fill the message buffer so that we can fill it in ourselves.
The sequencer will also "simulate" a command complete for these "message only"
SCBs so that the kernel driver can finish up properly. The cdplay utility
will send a "SCSI_REST" to the cdplayer if you use the reset command.
5) The code that handles SCSIINTs was broken in that if more than one type
of error was true at once, we'd do outbs without the card being paused.
The else clause after the busfree case was also an accident waiting to
happen. I've now turned this into an if, else if, else type of thing, since
in most cases when we handle one type of error, it should be okay to ignore
the rest (ie if we have a SELTO, who cares if there was a parity error on
the transaction?), but the section should really be rewritten after 2.0.5.
This fix was the least obtrusive way to patch the problem.
6) Only tag either SDTR or WDTR negotiation on an SCB. The real problem is
that I don't account for the case when an SCB that is tagged to do a particular
type of negotiation completes or SELTOs (selection timeout) without the
negotiation taking place, so the accounting of sdtrpending and wdtrpending
gets screwed up. In the wide case, if we tag it to do both wdtr and sdtr,
it only performs wdtr (since wdtr must occur first and we spread out the
negotiation over two commands) so we always have sdtrpending set for that
target and we never do a real SDTR. I fill properly fix the accounting
after 2.0.5 goes out the door, but this works (as confirmed by Dan) on
wide targets.
Other stuff that is also included:
1) Don't do a bzero when recycling SCBs. The only thing that must explicitly
be set to zero is the scb control byte which is done in ahc_get_scb. We also
need to set the SG_list_pointer and SG_list_count to 0 for commands that do
not transfer data.
2) Mask the interrupt type printout for the aic7870 case. The bit we were
using to determine interrupt type is only valid for the aic7770.
Submitted by: Justin Gibbs
1995-05-17 07:06:02 +00:00
|
|
|
mvi DINDIR, MAX_OFFSET_8BIT
|
|
|
|
jmp mk_sdtr_done
|
|
|
|
|
|
|
|
wmax_offset:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi DINDIR, MAX_OFFSET_16BIT
|
1995-03-31 14:06:02 +00:00
|
|
|
jmp mk_sdtr_done
|
|
|
|
|
|
|
|
mk_wdtr_16bit:
|
|
|
|
mvi ARG_1,BUS_16_BIT
|
|
|
|
mk_wdtr:
|
1996-01-03 06:25:32 +00:00
|
|
|
mvi DINDIR,1 /* extended message */
|
|
|
|
mvi DINDIR,2 /* extended message length = 2 */
|
|
|
|
mvi DINDIR,3 /* WDTR code */
|
|
|
|
mov DINDIR,ARG_1 /* bus width */
|
1995-03-31 14:06:02 +00:00
|
|
|
|
1996-01-03 06:25:32 +00:00
|
|
|
add MSG_LEN,COMP_MSG0,DINDEX ret /* update message length */
|
1995-03-31 14:06:02 +00:00
|
|
|
|
1995-01-13 02:22:11 +00:00
|
|
|
sdtr_to_rate:
|
1996-01-03 06:25:32 +00:00
|
|
|
call ndx_dtr /* index scratch space for target */
|
1995-01-13 02:22:11 +00:00
|
|
|
shr A,SINDIR,0x4
|
1996-01-03 06:25:32 +00:00
|
|
|
dec SINDEX /* Preserve SINDEX */
|
1995-01-13 02:22:11 +00:00
|
|
|
and A,0x7
|
|
|
|
clr RETURN_1
|
|
|
|
sdtr_to_rate_loop:
|
|
|
|
test A,0x0f jz sdtr_to_rate_done
|
1996-01-03 06:25:32 +00:00
|
|
|
add RETURN_1,0x19
|
1995-01-13 02:22:11 +00:00
|
|
|
dec A
|
|
|
|
jmp sdtr_to_rate_loop
|
|
|
|
sdtr_to_rate_done:
|
|
|
|
shr RETURN_1,0x2
|
1996-01-03 06:25:32 +00:00
|
|
|
add RETURN_1,0x19
|
1995-10-26 23:54:13 +00:00
|
|
|
test SXFRCTL0,ULTRAEN jz return
|
|
|
|
shr RETURN_1,0x1
|
1995-03-31 14:06:02 +00:00
|
|
|
return:
|
|
|
|
ret
|