| /Linux-v5.4/Documentation/scsi/ |
| D | advansys.txt | 7 The CDB counts below indicate the number of SCSI CDB (Command 9 cache and board LRAM. A CDB is a single SCSI command. The driver 15 ABP-480 - Bus-Master CardBus (16 CDB) 18 ABP510/5150 - Bus-Master ISA (240 CDB) 19 ABP5140 - Bus-Master ISA PnP (16 CDB) 20 ABP5142 - Bus-Master ISA PnP with floppy (16 CDB) 21 ABP902/3902 - Bus-Master PCI (16 CDB) 22 ABP3905 - Bus-Master PCI (16 CDB) 23 ABP915 - Bus-Master PCI (16 CDB) 24 ABP920 - Bus-Master PCI (16 CDB) [all …]
|
| D | ChangeLog.ips | 47 - Don't Send CDB's if we already know the device is not present
|
| D | ChangeLog.megaraid_sas | 143 6. Convert 6,10,12 byte CDB's to 16 byte CDB for large LBA's for FastPath 610 i. Register 16 byte CDB capability with scsi midlayer 614 hardware supports 16 byte CDB's."
|
| /Linux-v5.4/drivers/usb/storage/ |
| D | ene_ub6250.c | 704 bcb->CDB[0] = 0xF1; in sd_scsi_read() 705 bcb->CDB[5] = (unsigned char)(bnByte); in sd_scsi_read() 706 bcb->CDB[4] = (unsigned char)(bnByte>>8); in sd_scsi_read() 707 bcb->CDB[3] = (unsigned char)(bnByte>>16); in sd_scsi_read() 708 bcb->CDB[2] = (unsigned char)(bnByte>>24); in sd_scsi_read() 744 bcb->CDB[0] = 0xF0; in sd_scsi_write() 745 bcb->CDB[5] = (unsigned char)(bnByte); in sd_scsi_write() 746 bcb->CDB[4] = (unsigned char)(bnByte>>8); in sd_scsi_write() 747 bcb->CDB[3] = (unsigned char)(bnByte>>16); in sd_scsi_write() 748 bcb->CDB[2] = (unsigned char)(bnByte>>24); in sd_scsi_write() [all …]
|
| D | initializers.c | 66 memset(bcb->CDB, 0, sizeof(bcb->CDB)); in usb_stor_ucr61s2b_init() 67 memcpy(bcb->CDB, init_string, sizeof(init_string) - 1); in usb_stor_ucr61s2b_init()
|
| D | realtek_cr.c | 221 memset(bcb->CDB, 0, sizeof(bcb->CDB)); in rts51x_bulk_transport() 222 memcpy(bcb->CDB, cmd, bcb->Length); in rts51x_bulk_transport() 310 memset(bcb->CDB, 0, sizeof(bcb->CDB)); in rts51x_bulk_transport_special() 311 memcpy(bcb->CDB, cmd, bcb->Length); in rts51x_bulk_transport_special()
|
| D | transport.c | 1132 memset(bcb->CDB, 0, sizeof(bcb->CDB)); in usb_stor_Bulk_transport() 1133 memcpy(bcb->CDB, srb->cmnd, bcb->Length); in usb_stor_Bulk_transport()
|
| /Linux-v5.4/drivers/message/fusion/ |
| D | mptscsih.c | 350 ioc->name, pReq->CDB[0], SCpnt)); in mptscsih_AddSGE() 832 if ((pScsiReq->CDB[0] == READ_6 && ((pScsiReq->CDB[1] & 0x02) == 0)) || in mptscsih_io_done() 833 pScsiReq->CDB[0] == READ_10 || in mptscsih_io_done() 834 pScsiReq->CDB[0] == READ_12 || in mptscsih_io_done() 835 (pScsiReq->CDB[0] == READ_16 && in mptscsih_io_done() 836 ((pScsiReq->CDB[1] & 0x02) == 0)) || in mptscsih_io_done() 837 pScsiReq->CDB[0] == VERIFY || in mptscsih_io_done() 838 pScsiReq->CDB[0] == VERIFY_16) { in mptscsih_io_done() 1397 pScsiReq->CDB[ii] = SCpnt->cmnd[ii]; in mptscsih_qcmd() 1400 pScsiReq->CDB[ii] = 0; in mptscsih_qcmd() [all …]
|
| /Linux-v5.4/drivers/scsi/mpt3sas/ |
| D | mpt3sas_warpdrive.c | 269 v_lba = get_unaligned_be32(&mpi_request->CDB.CDB32[2]); in mpt3sas_setup_direct_io() 271 v_lba = get_unaligned_be64(&mpi_request->CDB.CDB32[2]); in mpt3sas_setup_direct_io() 294 &mpi_request->CDB.CDB32[2]); in mpt3sas_setup_direct_io() 296 put_unaligned_be64(p_lba, &mpi_request->CDB.CDB32[2]); in mpt3sas_setup_direct_io()
|
| /Linux-v5.4/drivers/scsi/ |
| D | hpsa.c | 1124 if (!is_firmware_flash_cmd(c->Request.CDB)) in dial_down_lockup_detection_during_fw_flash() 1133 if (is_firmware_flash_cmd(c->Request.CDB) && in dial_up_lockup_detection_on_fw_flash_complete() 2634 memcpy(cp->Request.CDB, c->CDB, cp->Request.CDBLen); in complete_scsi_command() 2715 "CDB %16phN data overrun\n", cp->Request.CDB); in complete_scsi_command() 2732 cp->Request.CDB); in complete_scsi_command() 2737 cp->Request.CDB); in complete_scsi_command() 2742 cp->Request.CDB); in complete_scsi_command() 2750 cp->Request.CDB); in complete_scsi_command() 2755 cp->Request.CDB); in complete_scsi_command() 2760 cp->Request.CDB); in complete_scsi_command() [all …]
|
| D | wd719x.h | 36 u8 CDB[16]; /* 08-23 SCSI CDB (16 bytes as defined by ANSI spec. */ member
|
| D | hpsa_cmd.h | 366 u8 CDB[16]; member 481 u8 CDB[16]; /* 0x40 - 0x4F */ member
|
| D | wd719x.c | 221 memcpy(scb->CDB, cmd->cmnd, cmd->cmd_len); in wd719x_queuecommand()
|
| /Linux-v5.4/drivers/message/fusion/lsi/ |
| D | mpi_init.h | 90 U8 CDB[16]; /* 18h */ member 220 U8 CDB[20]; /* 00h */ member 230 U8 CDB[16]; /* 00h */ member 277 MPI_SCSI_IO32_CDB_UNION CDB; /* 18h */ member
|
| D | mpi_raid.h | 188 U8 CDB[16]; /* 18h */ member
|
| D | mpi_targ.h | 278 U8 CDB[16]; /* 14h */ member 301 U8 CDB[16]; /* 14h */ member
|
| /Linux-v5.4/drivers/scsi/mpt3sas/mpi/ |
| D | mpi2_init.h | 77 U8 CDB[20]; /*0x00 */ member 123 MPI2_SCSI_IO_CDB_UNION CDB; /*0x40 */ member 275 MPI25_SCSI_IO_CDB_UNION CDB; /*0x40 */ member
|
| /Linux-v5.4/include/linux/usb/ |
| D | storage.h | 61 __u8 CDB[16]; /* max command */ member
|
| /Linux-v5.4/include/uapi/linux/ |
| D | cciss_defs.h | 104 BYTE CDB[16]; member
|
| /Linux-v5.4/drivers/scsi/megaraid/ |
| D | megaraid_sas_fusion.c | 2384 u8 *cdb = io_request->CDB.CDB32; in megasas_set_pd_lba() 2392 memset(cdb, 0, sizeof(io_request->CDB.CDB32)); in megasas_set_pd_lba() 2413 io_request->CDB.EEDP32.PrimaryReferenceTag = in megasas_set_pd_lba() 2415 io_request->CDB.EEDP32.PrimaryApplicationTagMask = cpu_to_be16(0xffff); in megasas_set_pd_lba() 2456 memset(cdb, 0, sizeof(io_request->CDB.CDB32)); in megasas_set_pd_lba() 2492 memset(cdb, 0, sizeof(io_request->CDB.CDB32)); in megasas_set_pd_lba() 3225 io_request->CDB.EEDP32.PrimaryReferenceTag = 0; in megasas_build_io_fusion() 3226 io_request->CDB.EEDP32.PrimaryApplicationTagMask = 0; in megasas_build_io_fusion() 3235 memcpy(io_request->CDB.CDB32, scp->cmnd, scp->cmd_len); in megasas_build_io_fusion()
|
| D | megaraid_sas_fusion.h | 333 u8 CDB[20]; /* 0x00 */ member 526 union MPI2_SCSI_IO_CDB_UNION CDB; /* 0x40 */ member
|
| /Linux-v5.4/drivers/scsi/aic7xxx/ |
| D | aic79xx.reg | 1317 * Scb offset for the CDB length field in initiator SCBs. 1355 * Scb offset for the first byte in the CDB for initiator SCBs. 1456 * CDB Limit 1457 * The size, in bytes, of the embedded CDB field in initator SCBs. 4038 * Target-mode CDB type to CDB length table used 4105 * Only valid if CDB length is less than 13 bytes or 4106 * we are using a CDB pointer. Otherwise contains 4149 field SCB_CDB_LEN_PTR 0x80 /* CDB in host memory */
|
| D | aic79xx.seq | 902 * To speed up CDB delivery in Rev B, all CDB acks 1190 * If we are identified and have successfully sent the CDB, 1970 * In the case of DMAing a CDB from the host, the normal 1971 * CDB buffer is formatted with an 8 byte address followed 2107 * Must wait until CDB xfer is over before issuing the
|
| /Linux-v5.4/Documentation/driver-api/ |
| D | libata.rst | 488 transfers CDB and hands off processing to interrupt handler. 678 - !BSY && ERR after CDB transfer starts but before the last byte of CDB 711 - !BSY && ERR(==CHK) && !ABRT after the last byte of CDB is transferred 714 - !BSY && ERR(==CHK) && ABRT after the last byte of CDB is transferred 783 in the STATUS register after the last byte of CDB is transferred for a
|
| /Linux-v5.4/include/sound/ |
| D | emu10k1.h | 563 #define CDB 0x2b /* Cache data B register */ macro
|