aboutsummaryrefslogtreecommitdiff
path: root/hw/scsi
AgeCommit message (Expand)AuthorFilesLines
2021-04-12esp: don't overflow cmdfifo if TC is larger than the cmdfifo sizeMark Cave-Ayland1-0/+1
2021-04-12esp: don't overflow cmdfifo in get_cmd()Mark Cave-Ayland1-0/+2
2021-04-12esp: don't underflow cmdfifo in do_cmd()Mark Cave-Ayland1-2/+4
2021-04-12esp: ensure cmdfifo is not empty and current_dev is non-NULLMark Cave-Ayland1-0/+3
2021-04-12esp: introduce esp_fifo_pop_buf() and use it instead of fifo8_pop_buf()Mark Cave-Ayland1-12/+28
2021-04-12esp: consolidate esp_cmdfifo_pop() into esp_fifo_pop()Mark Cave-Ayland1-14/+6
2021-04-12esp: consolidate esp_cmdfifo_push() into esp_fifo_push()Mark Cave-Ayland1-19/+8
2021-04-12esp: rework write_response() to avoid using the FIFO for DMA transactionsMark Cave-Ayland1-7/+6
2021-04-12esp: always check current_req is not NULL before use in DMA callbacksMark Cave-Ayland1-5/+14
2021-04-12esp: fix setting of ESPState mig_version_id when launching QEMU with -S optionMark Cave-Ayland2-3/+5
2021-03-18hw/scsi: remove 'scsi-disk' deviceDaniel P. Berrangé1-62/+0
2021-03-09sysemu: Let VMChangeStateHandler take boolean 'running' argumentPhilippe Mathieu-Daudé1-1/+1
2021-03-09scsi: Silence gcc warningEric Blake1-0/+1
2021-03-09Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-20210307' into...Peter Maydell3-318/+715
2021-03-07esp: add support for unaligned accessesMark Cave-Ayland1-7/+41
2021-03-07esp: implement non-DMA transfers in PDMA modeMark Cave-Ayland1-36/+97
2021-03-07esp: add trivial implementation of the ESP_RFLAGS registerMark Cave-Ayland1-0/+4
2021-03-07esp: convert cmdbuf from array to Fifo8Mark Cave-Ayland1-55/+96
2021-03-07esp: convert ti_buf from array to Fifo8Mark Cave-Ayland1-44/+74
2021-03-07esp: transition to message out phase after SATN and stop commandMark Cave-Ayland1-14/+58
2021-03-07esp: add maxlen parameter to get_cmd()Mark Cave-Ayland1-9/+11
2021-03-07esp: raise interrupt after every non-DMA byte transferred to the FIFOMark Cave-Ayland1-0/+6
2021-03-07esp: remove old deferred command completion mechanismMark Cave-Ayland1-26/+9
2021-03-07esp: defer command completion interrupt on incoming data transfersMark Cave-Ayland1-13/+53
2021-03-07esp: latch individual bits in ESP_RINTR registerMark Cave-Ayland1-16/+13
2021-03-07esp: implement FIFO flush commandMark Cave-Ayland1-0/+2
2021-03-07esp: add 4 byte PDMA read and write transfersMark Cave-Ayland1-2/+4
2021-03-07esp: remove pdma_origin from ESPStateMark Cave-Ayland1-66/+8
2021-03-07esp: use FIFO for PDMA transfers between initiator and deviceMark Cave-Ayland1-34/+75
2021-03-07esp: fix PDMA target selectionMark Cave-Ayland1-19/+34
2021-03-07esp: rename get_cmd_cb() to esp_select()Mark Cave-Ayland1-5/+5
2021-03-07esp: remove CMD pdma_originMark Cave-Ayland1-10/+12
2021-03-07esp: use in-built TC to determine PDMA transfer lengthMark Cave-Ayland1-15/+13
2021-03-07esp: use ti_wptr/ti_rptr to manage the current FIFO position for PDMAMark Cave-Ayland1-15/+8
2021-03-07esp: move PDMA length adjustments into esp_pdma_read()/esp_pdma_write()Mark Cave-Ayland1-10/+14
2021-03-07esp: remove redundant pdma_start from ESPStateMark Cave-Ayland1-17/+2
2021-03-07esp: remove the buf and buflen parameters from get_cmd()Mark Cave-Ayland1-5/+6
2021-03-07esp: remove buf parameter from do_cmd()Mark Cave-Ayland1-6/+7
2021-03-07esp: accumulate SCSI commands for PDMA transfers in cmdbuf instead of pdma_bufMark Cave-Ayland1-31/+25
2021-03-07esp: move pdma_len and TC logic into esp_pdma_read()/esp_pdma_write()Mark Cave-Ayland1-18/+32
2021-03-07esp: use pdma_origin directly in esp_pdma_read()/esp_pdma_write()Mark Cave-Ayland1-6/+28
2021-03-07esp: introduce esp_pdma_read() and esp_pdma_write() functionsMark Cave-Ayland1-8/+20
2021-03-07esp: remove minlen restriction in handle_tiMark Cave-Ayland1-10/+2
2021-03-07esp: remove dma_left from ESPStateMark Cave-Ayland1-16/+31
2021-03-07esp: remove dma_counter from ESPStateMark Cave-Ayland1-3/+1
2021-03-07esp: apply transfer length adjustment when STC is zero at TC load timeMark Cave-Ayland1-4/+5
2021-03-07esp: introduce esp_get_stc()Mark Cave-Ayland1-3/+12
2021-03-07esp: introduce esp_get_tc() and esp_set_tc()Mark Cave-Ayland1-15/+23
2021-03-07esp: determine transfer direction directly from SCSI phaseMark Cave-Ayland1-3/+2
2021-03-07esp: add PDMA trace eventsMark Cave-Ayland2-0/+10