summaryrefslogtreecommitdiff
path: root/hw/scsi/esp.c
AgeCommit message (Expand)Author
2022-03-09esp: recreate ESPState current_req after migrationMark Cave-Ayland
2022-03-09esp: include the current PDMA callback in the migration streamMark Cave-Ayland
2022-03-09esp: convert ESPState pdma_cb from a function pointer to an integerMark Cave-Ayland
2022-03-09esp: introduce esp_pdma_cb() functionMark Cave-Ayland
2022-03-09esp: introduce esp_set_pdma_cb() functionMark Cave-Ayland
2021-11-19esp: ensure that async_len is reset to 0 during esp_hard_reset()Mark Cave-Ayland
2021-11-02esp: ensure in-flight SCSI requests are always cancelledMark Cave-Ayland
2021-09-30scsi: Replace scsi_bus_new() with scsi_bus_init(), scsi_bus_init_named()Peter Maydell
2021-06-15esp: store lun coming from the MESSAGE OUT phasePaolo Bonzini
2021-06-15esp: fix migration version check in esp_is_version_5()Mark Cave-Ayland
2021-06-15esp: correctly accumulate extended messages for PDMAMark Cave-Ayland
2021-06-15esp: revert 75ef849696 "esp: correctly fill bus id with requested lun"Mark Cave-Ayland
2021-06-15esp: ensure PDMA write transfers are flushed from the FIFO to the target imme...Mark Cave-Ayland
2021-06-15esp: handle non-DMA transfers from the target one byte at a timeMark Cave-Ayland
2021-06-15esp: allow non-DMA callback in esp_transfer_data() initial transferMark Cave-Ayland
2021-06-15esp: only set ESP_RSEQ at the start of the select sequenceMark Cave-Ayland
2021-06-15esp: only assert INTR_DC interrupt flag if selection failsMark Cave-Ayland
2021-04-12esp: ensure that do_cmd is set to zero before submitting an ESP select commandMark Cave-Ayland
2021-04-12esp: don't reset async_len directly in esp_select() if cancelling requestMark Cave-Ayland
2021-04-12esp: don't overflow cmdfifo if TC is larger than the cmdfifo sizeMark Cave-Ayland
2021-04-12esp: don't overflow cmdfifo in get_cmd()Mark Cave-Ayland
2021-04-12esp: don't underflow cmdfifo in do_cmd()Mark Cave-Ayland
2021-04-12esp: ensure cmdfifo is not empty and current_dev is non-NULLMark Cave-Ayland
2021-04-12esp: introduce esp_fifo_pop_buf() and use it instead of fifo8_pop_buf()Mark Cave-Ayland
2021-04-12esp: consolidate esp_cmdfifo_pop() into esp_fifo_pop()Mark Cave-Ayland
2021-04-12esp: consolidate esp_cmdfifo_push() into esp_fifo_push()Mark Cave-Ayland
2021-04-12esp: rework write_response() to avoid using the FIFO for DMA transactionsMark Cave-Ayland
2021-04-12esp: always check current_req is not NULL before use in DMA callbacksMark Cave-Ayland
2021-04-12esp: fix setting of ESPState mig_version_id when launching QEMU with -S optionMark Cave-Ayland
2021-03-07esp: add support for unaligned accessesMark Cave-Ayland
2021-03-07esp: implement non-DMA transfers in PDMA modeMark Cave-Ayland
2021-03-07esp: add trivial implementation of the ESP_RFLAGS registerMark Cave-Ayland
2021-03-07esp: convert cmdbuf from array to Fifo8Mark Cave-Ayland
2021-03-07esp: convert ti_buf from array to Fifo8Mark Cave-Ayland
2021-03-07esp: transition to message out phase after SATN and stop commandMark Cave-Ayland
2021-03-07esp: add maxlen parameter to get_cmd()Mark Cave-Ayland
2021-03-07esp: raise interrupt after every non-DMA byte transferred to the FIFOMark Cave-Ayland
2021-03-07esp: remove old deferred command completion mechanismMark Cave-Ayland
2021-03-07esp: defer command completion interrupt on incoming data transfersMark Cave-Ayland
2021-03-07esp: latch individual bits in ESP_RINTR registerMark Cave-Ayland
2021-03-07esp: implement FIFO flush commandMark Cave-Ayland
2021-03-07esp: add 4 byte PDMA read and write transfersMark Cave-Ayland
2021-03-07esp: remove pdma_origin from ESPStateMark Cave-Ayland
2021-03-07esp: use FIFO for PDMA transfers between initiator and deviceMark Cave-Ayland
2021-03-07esp: fix PDMA target selectionMark Cave-Ayland
2021-03-07esp: rename get_cmd_cb() to esp_select()Mark Cave-Ayland
2021-03-07esp: remove CMD pdma_originMark Cave-Ayland
2021-03-07esp: use in-built TC to determine PDMA transfer lengthMark Cave-Ayland
2021-03-07esp: use ti_wptr/ti_rptr to manage the current FIFO position for PDMAMark Cave-Ayland
2021-03-07esp: move PDMA length adjustments into esp_pdma_read()/esp_pdma_write()Mark Cave-Ayland