aboutsummaryrefslogtreecommitdiff
path: root/hw/scsi
AgeCommit message (Expand)AuthorFilesLines
2024-02-13esp.c: remove restriction on FIFO read access when DMA memory routines definedMark Cave-Ayland1-8/+1
2024-02-13esp.c: handle TC underflow for DMA SCSI requestsMark Cave-Ayland1-1/+24
2024-02-13esp.c: don't clear the SCSI phase when reading ESP_RINTRMark Cave-Ayland1-1/+1
2024-02-13esp.c: ensure that STAT_INT is cleared when reading ESP_RINTRMark Cave-Ayland1-1/+1
2024-02-13esp.c: consolidate end of command sequence after ICCS commandMark Cave-Ayland1-4/+3
2024-02-13esp.c: move write_response() non-DMA logic to esp_do_nodma()Mark Cave-Ayland1-9/+23
2024-02-13esp.c: replace get_cmd() with esp_do_nodma()Mark Cave-Ayland1-50/+4
2024-02-13esp.c: process non-DMA FIFO writes in esp_do_nodma()Mark Cave-Ayland1-35/+86
2024-02-13esp.c: move non-DMA TI logic to separate esp_nodma_ti_dataout() functionMark Cave-Ayland1-22/+29
2024-02-13esp.c: don't raise INTR_BS interrupt in DATA IN phase until TI command issuedMark Cave-Ayland1-0/+5
2024-02-13esp.c: remove unneeded ti_cmd fieldMark Cave-Ayland1-6/+13
2024-02-13esp.c: zero command register when TI command terminates due to phase changeMark Cave-Ayland1-0/+8
2024-02-13esp.c: remove DATA IN phase logic when reading from FIFOMark Cave-Ayland1-11/+0
2024-02-13esp.c: use deferred interrupts for both DATA IN and DATA OUT phasesMark Cave-Ayland1-17/+18
2024-02-13esp.c: separate logic based upon ESP command in esp_transfer_data()Mark Cave-Ayland1-6/+26
2024-02-13esp.c: separate logic based upon ESP command in esp_command_complete()Mark Cave-Ayland1-14/+16
2024-02-13esp.c: rename data_in_ready to to data_readyMark Cave-Ayland1-4/+4
2024-02-13esp.c: remove unused PDMA callback implementationMark Cave-Ayland1-50/+5
2024-02-13esp.c: always use esp_do_dma() in pdma_cb()Mark Cave-Ayland1-7/+1
2024-02-13esp.c: move CMD_ICCS command logic to esp_do_dma()Mark Cave-Ayland1-25/+57
2024-02-13esp.c: replace do_dma_pdma_cb() with esp_do_dma()Mark Cave-Ayland1-137/+1
2024-02-13esp.c: move CMD_SELATNS end of command logic to esp_do_dma() and do_dma_pdma_...Mark Cave-Ayland1-41/+41
2024-02-13esp.c: don't use get_cmd() for CMD_SEL DMA commandsMark Cave-Ayland1-12/+10
2024-02-13esp.c: move CMD_TI end of message phase detection to esp_do_dma() and do_dma_...Mark Cave-Ayland1-14/+18
2024-02-13esp.c: move CMD_SELATN end of message phase detection to esp_do_dma() and do_...Mark Cave-Ayland1-32/+43
2024-02-13esp.c: untangle MESSAGE OUT and COMMAND phase logic in esp_do_nodma()Mark Cave-Ayland1-17/+23
2024-02-13esp.c: untangle MESSAGE OUT and COMMAND phase logic in do_dma_pdma_cb()Mark Cave-Ayland1-24/+42
2024-02-13esp.c: untangle MESSAGE OUT and COMMAND phase logic in esp_do_dma()Mark Cave-Ayland1-22/+26
2024-02-13esp.c: remove do_cmd from ESPStateMark Cave-Ayland1-13/+0
2024-02-13esp.c: convert esp_reg_write() do_cmd path to check for SCSI phase insteadMark Cave-Ayland1-1/+1
2024-02-13esp.c: convert esp_do_nodma() do_cmd path to check for SCSI phase insteadMark Cave-Ayland1-4/+4
2024-02-13esp.c: convert do_dma_pdma_cb() do_cmd path to check for SCSI phase insteadMark Cave-Ayland1-4/+4
2024-02-13esp.c: convert esp_do_dma() do_cmd path to check for SCSI phase insteadMark Cave-Ayland1-8/+5
2024-02-13esp.c: convert esp_do_nodma() to switch statement based upon SCSI phaseMark Cave-Ayland1-19/+35
2024-02-13esp.c: convert do_dma_pdma_db() to switch statement based upon SCSI phaseMark Cave-Ayland1-7/+12
2024-02-13esp.c: convert esp_do_dma() to switch statement based upon SCSI phaseMark Cave-Ayland1-13/+27
2024-02-13esp.c: introduce esp_get_phase() functionMark Cave-Ayland1-9/+14
2024-02-13esp.c: remove s_without_satn_pdma_cb() PDMA callbackMark Cave-Ayland1-21/+1
2024-02-13esp.c: move end of SCSI transfer check after TC adjustment in do_dma_pdma_cb()Mark Cave-Ayland1-9/+9
2024-02-13esp.c: update esp_do_dma() bypass if async_len is zero to include non-zero tr...Mark Cave-Ayland1-1/+1
2024-02-13esp.c: copy logic for do_cmd transfers from do_dma_pdma_cb() to esp_do_dma()Mark Cave-Ayland1-1/+10
2024-02-13esp.c: copy PDMA logic for transfers to device from do_dma_pdma_cb() to esp_d...Mark Cave-Ayland1-0/+9
2024-02-13esp.c: rename esp_dma_done() to esp_dma_ti_check()Mark Cave-Ayland1-9/+9
2024-02-13esp.c: move TC and FIFO check logic into esp_dma_done()Mark Cave-Ayland1-28/+11
2024-02-13esp.c: fix premature end of phase logic esp_command_completeMark Cave-Ayland1-5/+17
2024-02-13esp.c: consolidate async_len and TC == 0 checks in do_dma_pdma_cb() and esp_d...Mark Cave-Ayland1-13/+31
2024-02-13esp.c: update end of transfer logic at the end of esp_transfer_data()Mark Cave-Ayland1-10/+4
2024-02-13esp.c: remove unneeded if() check in esp_transfer_data()Mark Cave-Ayland1-10/+7
2024-02-13esp.c: remove unaligned adjustment in do_dma_pdma_cb() to device pathMark Cave-Ayland1-9/+0
2024-02-13esp.c: remove TC adjustment in esp_do_dma() from device pathMark Cave-Ayland1-5/+0