Searched refs:qoutfifo (Results 1 – 7 of 7) sorted by relevance
/drivers/scsi/aic7xxx/ |
D | aic7xxx_core.c | 426 return (((uint8_t *)&ahc->targetcmds[index]) - ahc->qoutfifo); in ahc_targetcmd_offset() 709 if (ahc->qoutfifo[ahc->qoutfifonext] != SCB_LIST_NULL) in ahc_check_cmdcmpltqueues() 889 while (ahc->qoutfifo[ahc->qoutfifonext] != SCB_LIST_NULL) { in ahc_run_qoutfifo() 891 scb_index = ahc->qoutfifo[ahc->qoutfifonext]; in ahc_run_qoutfifo() 903 *((uint32_t *)(&ahc->qoutfifo[modnext])) = 0xFFFFFFFFUL; in ahc_run_qoutfifo() 4505 ahc_dmamem_free(ahc, ahc->shared_data_dmat, ahc->qoutfifo, in ahc_free() 5147 ahc->qoutfifo[i] = SCB_LIST_NULL; in ahc_chip_init() 5378 (void **)&ahc->qoutfifo, in ahc_init() 5387 ahc->qoutfifo, driver_data_size, ahc_dmamap_cb, in ahc_init() 5391 ahc->targetcmds = (struct target_cmd *)ahc->qoutfifo; in ahc_init() [all …]
|
D | aic7xxx.h | 1000 uint8_t *qoutfifo; member
|
D | aic79xx_core.c | 561 - (uint8_t *)ahd->qoutfifo); in ahd_targetcmd_offset() 929 /*offset*/ahd->qoutfifonext * sizeof(*ahd->qoutfifo), in ahd_check_cmdcmpltqueues() 930 /*len*/sizeof(*ahd->qoutfifo), BUS_DMASYNC_POSTREAD); in ahd_check_cmdcmpltqueues() 931 if (ahd->qoutfifo[ahd->qoutfifonext].valid_tag in ahd_check_cmdcmpltqueues() 1677 completion = &ahd->qoutfifo[ahd->qoutfifonext]; in ahd_run_qoutfifo() 6168 ahd_dmamem_free(ahd, ahd->shared_data_dmat, ahd->qoutfifo, in ahd_free() 7131 driver_data_size = AHD_SCB_MAX * sizeof(*ahd->qoutfifo) in ahd_init() 7166 ahd->qoutfifo = (struct ahd_completion *)ahd->shared_data_map.vaddr; in ahd_init() 7167 next_vaddr = (uint8_t *)&ahd->qoutfifo[AHD_QOUT_SIZE]; in ahd_init() 7500 ahd->qoutfifo[i].valid_tag = 0; in ahd_chip_init() [all …]
|
D | aic79xx.h | 1147 struct ahd_completion *qoutfifo; member
|
D | aic7xxx.reg | 1545 * put into the qoutfifo. 1559 * memory. This includes the qoutfifo and target mode
|
D | aic79xx.reg | 3749 * put into the qoutfifo. 3903 * memory. This includes the qoutfifo and target mode 3912 * position in the qoutfifo.
|
/drivers/scsi/ |
D | aic7xxx_old.c | 945 volatile unsigned char *qoutfifo; member 3082 while(p->qoutfifo[(p->qoutfifonext + i) & 0xff ] != SCB_LIST_NULL) in aic7xxx_scb_on_qoutfifo() 3084 if(p->qoutfifo[(p->qoutfifonext + i) & 0xff ] == scb->hscb->tag) in aic7xxx_scb_on_qoutfifo() 6257 while (p->qoutfifo[p->qoutfifonext] != SCB_LIST_NULL) in aic7xxx_handle_command_completion_intr() 6259 scb_index = p->qoutfifo[p->qoutfifonext]; in aic7xxx_handle_command_completion_intr() 6260 p->qoutfifo[p->qoutfifonext++] = SCB_LIST_NULL; in aic7xxx_handle_command_completion_intr() 8168 p->qoutfifo = p->untagged_scbs + 256; in aic7xxx_register() 8169 p->qinfifo = p->qoutfifo + 256; in aic7xxx_register() 8174 p->qoutfifo[i] = SCB_LIST_NULL; in aic7xxx_register()
|