1 /*==========================================================================
2 NinjaSCSI-3 message handler
3 By: YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
5 This software may be used and distributed according to the terms of
6 the GNU General Public License.
9 /* $Id: nsp_message.c,v 1.6 2003/07/26 14:21:09 elca Exp $ */
11 static void nsp_message_in(Scsi_Cmnd
*SCpnt
)
13 unsigned int base
= SCpnt
->device
->host
->io_port
;
14 nsp_hw_data
*data
= (nsp_hw_data
*)SCpnt
->device
->host
->hostdata
;
15 unsigned char data_reg
, control_reg
;
20 * NSP invoke interrupts only in the case of scsi phase changes,
21 * therefore we should poll the scsi phase here to catch
22 * the next "msg in" if exists (no scsi phase changes).
27 nsp_dbg(NSP_DEBUG_MSGINOCCUR
, "msgin loop");
30 data_reg
= nsp_index_read(base
, SCSIDATAIN
);
33 control_reg
= nsp_index_read(base
, SCSIBUSCTRL
);
34 control_reg
|= SCSI_ACK
;
35 nsp_index_write(base
, SCSIBUSCTRL
, control_reg
);
36 nsp_negate_signal(SCpnt
, BUSMON_REQ
, "msgin<REQ>");
38 data
->MsgBuffer
[len
] = data_reg
; len
++;
41 control_reg
= nsp_index_read(base
, SCSIBUSCTRL
);
42 control_reg
&= ~SCSI_ACK
;
43 nsp_index_write(base
, SCSIBUSCTRL
, control_reg
);
45 /* catch a next signal */
46 ret
= nsp_expect_signal(SCpnt
, BUSPHASE_MESSAGE_IN
, BUSMON_REQ
);
47 } while (ret
> 0 && MSGBUF_SIZE
> len
);
53 static void nsp_message_out(Scsi_Cmnd
*SCpnt
)
55 nsp_hw_data
*data
= (nsp_hw_data
*)SCpnt
->device
->host
->hostdata
;
57 int len
= data
->MsgLen
;
61 * NSP invoke interrupts only in the case of scsi phase changes,
62 * therefore we should poll the scsi phase here to catch
63 * the next "msg out" if exists (no scsi phase changes).
66 nsp_dbg(NSP_DEBUG_MSGOUTOCCUR
, "msgout loop");
68 if (nsp_xfer(SCpnt
, BUSPHASE_MESSAGE_OUT
)) {
69 nsp_msg(KERN_DEBUG
, "msgout: xfer short");
72 /* catch a next signal */
73 ret
= nsp_expect_signal(SCpnt
, BUSPHASE_MESSAGE_OUT
, BUSMON_REQ
);
74 } while (ret
> 0 && len
-- > 0);