Home
last modified time | relevance | path

Searched refs:NCR_700_readb (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/drivers/scsi/
D53c700.c380 hostdata->rev = (NCR_700_readb(host, CTEST8_REG)>>4) & 0x0f; in NCR_700_detect()
382 hostdata->rev = (NCR_700_readb(host, CTEST7_REG)>>4) & 0x0f; in NCR_700_detect()
383 hostdata->fast = (NCR_700_readb(host, CTEST9_REG) == 0); in NCR_700_detect()
445 count = ((NCR_700_readb(host, DFIFO_REG) & 0x7f) - in NCR_700_data_residual()
448 count = ((NCR_700_readb(host, DFIFO_REG) & 0x3f) - in NCR_700_data_residual()
453 synchronous = NCR_700_readb(host, SXFER_REG) & 0x0f; in NCR_700_data_residual()
456 ddir = NCR_700_readb(host, CTEST0_REG) & 0x01; in NCR_700_data_residual()
461 count += (NCR_700_readb(host, SSTAT2_REG) & 0xf0) >> 4; in NCR_700_data_residual()
463 if (NCR_700_readb(host, SSTAT1_REG) & SIDL_REG_FULL) in NCR_700_data_residual()
467 __u8 sstat = NCR_700_readb(host, SSTAT1_REG); in NCR_700_data_residual()
[all …]
D53c700.h477 NCR_700_readb(struct Scsi_Host *host, __u32 reg) in NCR_700_readb() function