Lines Matching defs:eata_ccb
267 struct eata_ccb { /* Send Command Packet structure */ struct
269 __u8 SCSI_Reset:1, /* Cause a SCSI Bus reset on the cmd */
270 HBA_Init:1, /* Cause Controller to reinitialize */
271 Auto_Req_Sen:1, /* Do Auto Request Sense on errors */
272 scatter:1, /* Data Ptr points to a SG Packet */
273 Resrvd:1, /* RFU */
274 Interpret:1, /* Interpret the SCSI cdb of own use */
275 DataOut:1, /* Data Out phase with command */
276 DataIn:1; /* Data In phase with command */
277 __u8 reqlen; /* Request Sense Length *
279 __u8 unused[3];
280 __u8 FWNEST:1, /* send cmd to phys RAID component */
281 unused2:7;
282 __u8 Phsunit:1, /* physical unit on mirrored pair */
283 I_AT:1, /* inhibit address translation */
284 I_HBA_C:1, /* HBA inhibit caching */
285 unused3:5;
287 __u8 cp_id:5, /* SCSI Device ID of target */
288 cp_channel:3; /* SCSI Channel # of HBA */
289 __u8 cp_lun:3,
294 __u8 cp_msg1; /* Message bytes 0-3 */
295 __u8 cp_msg2;
296 __u8 cp_msg3;
297 __u8 cp_cdb[12]; /* Command Descriptor Block */
298 __u32 cp_datalen; /* Data Transfer Length *
300 void *cp_viraddr; /* address of this ccb */
324 struct eata_ccb *ccb; /* Address set in COMMAND PACKET */ argument