/freebsd/sys/arm/xilinx/ |
H A D | uart_dev_cdnc.c | 559 uint32_t istatus; in cdnc_uart_bus_ipend() local 563 istatus = RD4(bas, CDNC_UART_ISTAT_REG); in cdnc_uart_bus_ipend() 566 WR4(bas, CDNC_UART_ISTAT_REG, istatus & in cdnc_uart_bus_ipend() 572 if ((istatus & (CDNC_UART_INT_RXTRIG | CDNC_UART_INT_RXTMOUT)) != 0) in cdnc_uart_bus_ipend() 576 if (sc->sc_txbusy && (istatus & CDNC_UART_INT_TXEMPTY) != 0) { in cdnc_uart_bus_ipend() 583 if ((istatus & CDNC_UART_INT_TXOVR) != 0) in cdnc_uart_bus_ipend() 587 if ((istatus & CDNC_UART_INT_RXOVR) != 0) in cdnc_uart_bus_ipend() 591 if ((istatus & CDNC_UART_INT_DMSI) != 0) { in cdnc_uart_bus_ipend()
|
H A D | zy7_spi.c | 216 uint32_t istatus; in zy7_spi_intr() local 222 istatus = RD4(sc, ZY7_SPI_INTR_STAT_REG); in zy7_spi_intr() 231 if ((istatus & ZY7_SPI_INTR_RX_OVERFLOW) != 0) { in zy7_spi_intr() 242 (istatus & ZY7_SPI_INTR_RX_FIFO_NOT_EMPTY) != 0) { in zy7_spi_intr() 252 if ((istatus & ZY7_SPI_INTR_TX_FIFO_UNDERFLOW) != 0) { in zy7_spi_intr() 262 (istatus & ZY7_SPI_INTR_TX_FIFO_NOT_FULL) != 0) { in zy7_spi_intr()
|
H A D | zy7_qspi.c | 331 uint32_t istatus; in zy7_qspi_intr() local 337 istatus = RD4(sc, ZY7_QSPI_INTR_STAT_REG); in zy7_qspi_intr() 346 if ((istatus & ZY7_QSPI_INTR_RX_OVERFLOW) != 0) { in zy7_qspi_intr() 357 (istatus & ZY7_QSPI_INTR_RX_FIFO_NOT_EMPTY) != 0) { in zy7_qspi_intr() 371 if ((istatus & ZY7_QSPI_INTR_TX_FIFO_UNDERFLOW) != 0) { in zy7_qspi_intr() 381 (istatus & ZY7_QSPI_INTR_TX_FIFO_NOT_FULL) != 0) { in zy7_qspi_intr()
|
H A D | zy7_devcfg.c | 645 uint32_t istatus, imask; in zy7_devcfg_intr() local 649 istatus = RD4(sc, ZY7_DEVCFG_INT_STATUS); in zy7_devcfg_intr() 655 if ((istatus & imask) == 0) { in zy7_devcfg_intr() 661 if ((istatus & ZY7_DEVCFG_INT_DMA_DONE) != 0) in zy7_devcfg_intr() 665 if ((istatus & ZY7_DEVCFG_INT_PCFG_INIT_PE) != 0) in zy7_devcfg_intr()
|
/freebsd/sys/dev/ata/chipsets/ |
H A D | ata-nvidia.c | 287 u_int32_t istatus; in ata_nvidia_status() local 291 istatus = ATA_INL(ctlr->r_res2, offset); in ata_nvidia_status() 293 istatus = ATA_INB(ctlr->r_res2, offset); in ata_nvidia_status() 296 if (istatus & (0x0c << shift)) in ata_nvidia_status() 306 return (istatus & (0x01 << shift)); in ata_nvidia_status()
|
/freebsd/sys/powerpc/mpc85xx/ |
H A D | fsl_sata.c | 65 static void fsl_sata_intr_main(struct fsl_sata_channel *ch, uint32_t istatus); 743 uint32_t istatus; in fsl_sata_intr() local 747 istatus = ATA_INL(ch->r_mem, FSL_SATA_P_HSTS) & 0x7ffff; in fsl_sata_intr() 748 if ((istatus & 0x3f) == 0) in fsl_sata_intr() 753 fsl_sata_intr_main(ch, istatus); in fsl_sata_intr() 766 ATA_OUTL(ch->r_mem, FSL_SATA_P_HSTS, istatus & 0x3f); in fsl_sata_intr() 788 fsl_sata_intr_main(struct fsl_sata_channel *ch, uint32_t istatus) in fsl_sata_intr_main() argument 806 if (istatus & FSL_SATA_P_HSTS_SNTFU) in fsl_sata_intr_main() 811 if (istatus & (FSL_SATA_P_HSTS_PR)) { in fsl_sata_intr_main() 817 err = (istatus & (FSL_SATA_P_HSTS_FE | FSL_SATA_P_HSTS_DE)); in fsl_sata_intr_main() [all …]
|
/freebsd/sys/dev/ahci/ |
H A D | ahci.c | 64 static void ahci_ch_intr_main(struct ahci_channel *ch, uint32_t istatus); 1319 uint32_t istatus; in ahci_ch_intr() local 1322 istatus = ATA_INL(ch->r_mem, AHCI_P_IS); in ahci_ch_intr() 1325 ahci_ch_intr_main(ch, istatus); in ahci_ch_intr() 1334 uint32_t istatus; in ahci_ch_intr_direct() local 1338 istatus = ATA_INL(ch->r_mem, AHCI_P_IS); in ahci_ch_intr_direct() 1342 ahci_ch_intr_main(ch, istatus); in ahci_ch_intr_direct() 1373 ahci_ch_intr_main(struct ahci_channel *ch, uint32_t istatus) in ahci_ch_intr_main() argument 1380 ATA_OUTL(ch->r_mem, AHCI_P_IS, istatus); in ahci_ch_intr_main() 1389 if ((istatus & AHCI_P_IX_SDB) && in ahci_ch_intr_main() [all …]
|
/freebsd/sys/dev/cadence/ |
H A D | if_cgem.c | 980 uint32_t istatus; in cgem_intr() local 990 istatus = RD4(sc, CGEM_INTR_STAT); in cgem_intr() 991 WR4(sc, CGEM_INTR_STAT, istatus); in cgem_intr() 994 if ((istatus & CGEM_INTR_RX_COMPLETE) != 0) in cgem_intr() 1001 if ((istatus & CGEM_INTR_HRESP_NOT_OK) != 0) { in cgem_intr() 1009 if ((istatus & CGEM_INTR_RX_OVERRUN) != 0) { in cgem_intr() 1016 if ((istatus & CGEM_INTR_RX_USED_READ) != 0) { in cgem_intr()
|
/freebsd/sys/dev/siis/ |
H A D | siis.c | 852 uint32_t istatus, sstatus, ctx, estatus, ok; in siis_ch_intr() local 869 istatus = ATA_INL(ch->r_mem, SIIS_P_IS) & in siis_ch_intr() 871 ATA_OUTL(ch->r_mem, SIIS_P_IS, istatus); in siis_ch_intr() 873 if (istatus & SIIS_P_IX_PHYRDYCHG) in siis_ch_intr() 876 if (istatus & SIIS_P_IX_SDBN) in siis_ch_intr() 879 if (istatus & SIIS_P_IX_COMMERR) { in siis_ch_intr()
|
/freebsd/contrib/wpa/src/ap/ |
H A D | drv_callbacks.c | 2260 int istatus, in hostapd_event_wds_sta_interface_status() argument 2268 if (istatus == INTERFACE_ADDED) in hostapd_event_wds_sta_interface_status() 2275 istatus == INTERFACE_ADDED ? in hostapd_event_wds_sta_interface_status() 2728 hapd, data->wds_sta_interface.istatus, in wpa_supplicant_event()
|
/freebsd/sys/dev/aic7xxx/ |
H A D | aic79xx.h | 460 struct initiator_status istatus; member
|
H A D | aic79xx.c | 8094 if (scb->hscb->shared_data.istatus.scsi_status != 0) { in ahd_handle_scb_status() 8147 aic_set_scsi_status(scb, hscb->shared_data.istatus.scsi_status); in ahd_handle_scsi_status() 8148 switch (hscb->shared_data.istatus.scsi_status) { in ahd_handle_scsi_status() 8370 spkt = &hscb->shared_data.istatus; in ahd_calc_residual()
|
/freebsd/contrib/wpa/src/drivers/ |
H A D | driver.h | 6776 } istatus; member
|
H A D | driver_nl80211.c | 8452 event.wds_sta_interface.istatus = INTERFACE_ADDED; in i802_set_wds_sta() 8477 event.wds_sta_interface.istatus = INTERFACE_REMOVED; in i802_set_wds_sta()
|