summary refs log tree commit diff stats
path: root/hw/scsi (follow)
Commit message (Expand)AuthorAgeFilesLines
* esp.c: remove explicit setting of DRQ within ESP state machineMark Cave-Ayland2024-04-041-9/+0
* esp.c: ensure esp_pdma_write() always calls esp_fifo_push()Mark Cave-Ayland2024-04-041-6/+4
* esp.c: update esp_fifo_{push, pop}() to call esp_update_drq()Mark Cave-Ayland2024-04-041-4/+10
* esp.c: introduce esp_update_drq() and update esp_fifo_{push, pop}_buf() to us...Mark Cave-Ayland2024-04-041-1/+47
* esp.c: move esp_set_phase() and esp_get_phase() towards the beginning of the ...Mark Cave-Ayland2024-04-041-18/+18
* esp.c: prevent cmdfifo overflow in esp_cdb_ready()Mark Cave-Ayland2024-04-041-1/+11
* esp.c: rework esp_cdb_length() into esp_cdb_ready()Mark Cave-Ayland2024-04-041-16/+14
* esp.c: don't assert() if FIFO empty when executing non-DMA SELATNSMark Cave-Ayland2024-04-041-1/+2
* esp.c: introduce esp_fifo_push_buf() function for pushing to the FIFOMark Cave-Ayland2024-04-041-3/+8
* esp.c: change esp_fifo_pop_buf() to take ESPStateMark Cave-Ayland2024-04-041-12/+12
* esp.c: use esp_fifo_push() instead of fifo8_push()Mark Cave-Ayland2024-04-041-3/+3
* esp.c: change esp_fifo_pop() to take ESPStateMark Cave-Ayland2024-04-041-5/+5
* esp.c: change esp_fifo_push() to take ESPStateMark Cave-Ayland2024-04-041-5/+5
* esp.c: replace cmdfifo use of esp_fifo_pop() in do_message_phase()Mark Cave-Ayland2024-04-041-1/+2
* esp.c: replace esp_fifo_pop_buf() with esp_fifo8_pop_buf() in do_message_phase()Mark Cave-Ayland2024-04-041-1/+1
* esp.c: replace esp_fifo_pop_buf() with esp_fifo8_pop_buf() in do_command_phase()Mark Cave-Ayland2024-04-041-1/+1
* esp.c: move esp_fifo_pop_buf() internals to new esp_fifo8_pop_buf() functionMark Cave-Ayland2024-04-041-1/+6
* lsi53c895a: avoid out of bounds access to s->msg[]Paolo Bonzini2024-04-021-7/+12
* hw/scsi/scsi-generic: Fix io_timeout property not applyingLorenz Brun2024-03-261-1/+0
* hw/scsi/vhost-scsi: Fix missing ERRP_GUARD() for error_prepend()Zhao Liu2024-03-121-0/+1
* Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into stagingPeter Maydell2024-03-091-1/+1
|\
| * hw/scsi/lsi53c895a: Fix typo in commentBALATON Zoltan2024-03-091-1/+1
* | hw/scsi/lsi53c895a: stop script on phase mismatchSven Schnelle2024-03-081-4/+12
* | hw/scsi/lsi53c895a: add timer to scripts processingSven Schnelle2024-03-082-10/+35
|/
* esp.c: add my copyright to the fileMark Cave-Ayland2024-02-131-0/+1
* esp.c: switch TypeInfo registration to use DEFINE_TYPES() macroMark Cave-Ayland2024-02-131-22/+17
* esp.c: keep track of the DRQ state during DMAMark Cave-Ayland2024-02-131-4/+11
* esp.c: rename irq_data IRQ to drq_irqMark Cave-Ayland2024-02-131-4/+4
* esp.c: implement DMA Transfer Pad command for DATA phasesMark Cave-Ayland2024-02-131-28/+69
* esp.c: replace n variable with len in esp_do_nodma()Mark Cave-Ayland2024-02-131-20/+20
* esp.c: consolidate DMA and PDMA logic in STATUS and MESSAGE IN phasesMark Cave-Ayland2024-02-131-4/+3
* esp.c: remove redundant n variable in PDMA COMMAND phaseMark Cave-Ayland2024-02-131-5/+3
* esp.c: consolidate DMA and PDMA logic in MESSAGE OUT phaseMark Cave-Ayland2024-02-131-7/+5
* esp.c: consolidate DMA and PDMA logic in DATA IN phaseMark Cave-Ayland2024-02-131-34/+17
* esp.c: consolidate DMA and PDMA logic in DATA OUT phaseMark Cave-Ayland2024-02-131-23/+12
* esp.c: only transfer non-DMA MESSAGE OUT phase data for specific commandsMark Cave-Ayland2024-02-131-6/+15
* esp.c: only transfer non-DMA COMMAND phase data for specific commandsMark Cave-Ayland2024-02-131-6/+15
* esp.c: improve ESP_RSEQ logic consolidationMark Cave-Ayland2024-02-131-6/+8
* esp.c: handle non-DMA FIFO writes used to terminate DMA commandsMark Cave-Ayland2024-02-131-0/+10
* esp.c: remove restriction on FIFO read access when DMA memory routines definedMark Cave-Ayland2024-02-131-8/+1
* esp.c: handle TC underflow for DMA SCSI requestsMark Cave-Ayland2024-02-131-1/+24
* esp.c: don't clear the SCSI phase when reading ESP_RINTRMark Cave-Ayland2024-02-131-1/+1
* esp.c: ensure that STAT_INT is cleared when reading ESP_RINTRMark Cave-Ayland2024-02-131-1/+1
* esp.c: consolidate end of command sequence after ICCS commandMark Cave-Ayland2024-02-131-4/+3
* esp.c: move write_response() non-DMA logic to esp_do_nodma()Mark Cave-Ayland2024-02-131-9/+23
* esp.c: replace get_cmd() with esp_do_nodma()Mark Cave-Ayland2024-02-131-50/+4
* esp.c: process non-DMA FIFO writes in esp_do_nodma()Mark Cave-Ayland2024-02-131-35/+86
* esp.c: move non-DMA TI logic to separate esp_nodma_ti_dataout() functionMark Cave-Ayland2024-02-131-22/+29
* esp.c: don't raise INTR_BS interrupt in DATA IN phase until TI command issuedMark Cave-Ayland2024-02-131-0/+5
* esp.c: remove unneeded ti_cmd fieldMark Cave-Ayland2024-02-131-6/+13