aboutsummaryrefslogtreecommitdiff
path: root/hw/scsi/esp.c
AgeCommit message (Expand)AuthorFilesLines
2024-09-13hw: Use device_class_set_legacy_reset() instead of opencodingPeter Maydell1-1/+1
2024-07-23util/fifo8: Introduce fifo8_drop()Philippe Mathieu-Daudé1-1/+1
2024-07-23util/fifo8: Expose fifo8_pop_buf()Philippe Mathieu-Daudé1-33/+3
2024-07-23util/fifo8: Rename fifo8_pop_buf() -> fifo8_pop_bufptr()Philippe Mathieu-Daudé1-2/+2
2024-07-23util/fifo8: Rename fifo8_peek_buf() -> fifo8_peek_bufptr()Philippe Mathieu-Daudé1-1/+1
2024-07-16esp: remove transfer size check from DMA DATA IN and DATA OUT transfersMark Cave-Ayland1-2/+2
2024-04-04esp.c: remove explicit setting of DRQ within ESP state machineMark Cave-Ayland1-9/+0
2024-04-04esp.c: ensure esp_pdma_write() always calls esp_fifo_push()Mark Cave-Ayland1-6/+4
2024-04-04esp.c: update esp_fifo_{push, pop}() to call esp_update_drq()Mark Cave-Ayland1-4/+10
2024-04-04esp.c: introduce esp_update_drq() and update esp_fifo_{push, pop}_buf() to us...Mark Cave-Ayland1-1/+47
2024-04-04esp.c: move esp_set_phase() and esp_get_phase() towards the beginning of the ...Mark Cave-Ayland1-18/+18
2024-04-04esp.c: prevent cmdfifo overflow in esp_cdb_ready()Mark Cave-Ayland1-1/+11
2024-04-04esp.c: rework esp_cdb_length() into esp_cdb_ready()Mark Cave-Ayland1-16/+14
2024-04-04esp.c: don't assert() if FIFO empty when executing non-DMA SELATNSMark Cave-Ayland1-1/+2
2024-04-04esp.c: introduce esp_fifo_push_buf() function for pushing to the FIFOMark Cave-Ayland1-3/+8
2024-04-04esp.c: change esp_fifo_pop_buf() to take ESPStateMark Cave-Ayland1-12/+12
2024-04-04esp.c: use esp_fifo_push() instead of fifo8_push()Mark Cave-Ayland1-3/+3
2024-04-04esp.c: change esp_fifo_pop() to take ESPStateMark Cave-Ayland1-5/+5
2024-04-04esp.c: change esp_fifo_push() to take ESPStateMark Cave-Ayland1-5/+5
2024-04-04esp.c: replace cmdfifo use of esp_fifo_pop() in do_message_phase()Mark Cave-Ayland1-1/+2
2024-04-04esp.c: replace esp_fifo_pop_buf() with esp_fifo8_pop_buf() in do_message_phase()Mark Cave-Ayland1-1/+1
2024-04-04esp.c: replace esp_fifo_pop_buf() with esp_fifo8_pop_buf() in do_command_phase()Mark Cave-Ayland1-1/+1
2024-04-04esp.c: move esp_fifo_pop_buf() internals to new esp_fifo8_pop_buf() functionMark Cave-Ayland1-1/+6
2024-02-13esp.c: add my copyright to the fileMark Cave-Ayland1-0/+1
2024-02-13esp.c: switch TypeInfo registration to use DEFINE_TYPES() macroMark Cave-Ayland1-22/+17
2024-02-13esp.c: keep track of the DRQ state during DMAMark Cave-Ayland1-4/+11
2024-02-13esp.c: rename irq_data IRQ to drq_irqMark Cave-Ayland1-4/+4
2024-02-13esp.c: implement DMA Transfer Pad command for DATA phasesMark Cave-Ayland1-28/+69
2024-02-13esp.c: replace n variable with len in esp_do_nodma()Mark Cave-Ayland1-20/+20
2024-02-13esp.c: consolidate DMA and PDMA logic in STATUS and MESSAGE IN phasesMark Cave-Ayland1-4/+3
2024-02-13esp.c: remove redundant n variable in PDMA COMMAND phaseMark Cave-Ayland1-5/+3
2024-02-13esp.c: consolidate DMA and PDMA logic in MESSAGE OUT phaseMark Cave-Ayland1-7/+5
2024-02-13esp.c: consolidate DMA and PDMA logic in DATA IN phaseMark Cave-Ayland1-34/+17
2024-02-13esp.c: consolidate DMA and PDMA logic in DATA OUT phaseMark Cave-Ayland1-23/+12
2024-02-13esp.c: only transfer non-DMA MESSAGE OUT phase data for specific commandsMark Cave-Ayland1-6/+15
2024-02-13esp.c: only transfer non-DMA COMMAND phase data for specific commandsMark Cave-Ayland1-6/+15
2024-02-13esp.c: improve ESP_RSEQ logic consolidationMark Cave-Ayland1-6/+8
2024-02-13esp.c: handle non-DMA FIFO writes used to terminate DMA commandsMark Cave-Ayland1-0/+10
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