Home
last modified time | relevance | path

Searched refs:PORT_IRQ_ERROR (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/drivers/ata/
H A Dsata_sil.h151 PORT_IRQ_ERROR = (1 << 1), /* command execution error */ enumerator
163 DEF_PORT_IRQ = PORT_IRQ_COMPLETE | PORT_IRQ_ERROR |
H A Dsata_sil.c139 writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR, port + PORT_IRQ_ENABLE_CLR); in sil_exec_cmd()
145 irq_mask = (PORT_IRQ_COMPLETE | PORT_IRQ_ERROR) << PORT_IRQ_RAW_SHIFT; in sil_exec_cmd()
158 if (irq_stat & PORT_IRQ_ERROR) in sil_exec_cmd()
/openbmc/qemu/hw/ide/
H A Dahci-internal.h164 #define PORT_IRQ_ERROR (PORT_IRQ_FREEZE | PORT_IRQ_TF_ERR | \ macro
166 #define DEF_PORT_IRQ (PORT_IRQ_ERROR | PORT_IRQ_SG_DONE | \
/openbmc/linux/drivers/ata/
H A Dsata_sil24.c156 PORT_IRQ_ERROR = (1 << 1), /* command execution error */ enumerator
168 DEF_PORT_IRQ = PORT_IRQ_COMPLETE | PORT_IRQ_ERROR |
614 writel(PORT_IRQ_COMPLETE | PORT_IRQ_ERROR, port + PORT_IRQ_ENABLE_CLR); in sil24_exec_polled_cmd()
624 irq_mask = (PORT_IRQ_COMPLETE | PORT_IRQ_ERROR) << PORT_IRQ_RAW_SHIFT; in sil24_exec_polled_cmd()
637 if (irq_stat & PORT_IRQ_ERROR) in sil24_exec_polled_cmd()
1011 if (irq_stat & PORT_IRQ_ERROR) { in sil24_error_intr()
H A Dahci.h157 PORT_IRQ_ERROR = PORT_IRQ_FREEZE | enumerator
160 DEF_PORT_IRQ = PORT_IRQ_ERROR | PORT_IRQ_SG_DONE |
H A Dlibahci.c1911 if (unlikely(status & PORT_IRQ_ERROR)) { in ahci_handle_port_interrupt()