1 /* pluto.h: SparcSTORAGE Array SCSI host adapter driver definitions.
3 * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
9 #include "../fc4/fcp_impl.h"
12 /* This must be first */
19 struct pluto_inquiry {
21 u8 removable:1, qualifier:7;
22 u8 iso:2, ecma:3, ansi:3;
23 u8 aenc:1, trmiop:1, :2, rdf:4;
27 u8 reladdr:1, wbus32:1, wbus16:1, sync:1, linked:1, :1, cmdque:1, softreset:1;
38 /* This is the max number of outstanding SCSI commands per pluto */
39 #define PLUTO_CAN_QUEUE 254
41 int pluto_detect(struct scsi_host_template *);
42 int pluto_release(struct Scsi_Host *);
43 const char * pluto_info(struct Scsi_Host *);
44 int pluto_slave_configure(struct scsi_device *);
46 #endif /* !(_PLUTO_H) */