2 * QEMU LSI53C895A SCSI Host Bus Adapter emulation
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licensed under the LGPL.
10 /* ??? Need to check if the {read,write}[wl] routines work properly on
11 big-endian targets. */
18 #include "block_int.h"
22 //#define DEBUG_LSI_REG
25 #define DPRINTF(fmt, ...) \
26 do { printf("lsi_scsi: " fmt , ## __VA_ARGS__); } while (0)
27 #define BADF(fmt, ...) \
28 do { fprintf(stderr, "lsi_scsi: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
30 #define DPRINTF(fmt, ...) do {} while(0)
31 #define BADF(fmt, ...) \
32 do { fprintf(stderr, "lsi_scsi: error: " fmt , ## __VA_ARGS__);} while (0)
35 #define LSI_MAX_DEVS 7
37 #define LSI_SCNTL0_TRG 0x01
38 #define LSI_SCNTL0_AAP 0x02
39 #define LSI_SCNTL0_EPC 0x08
40 #define LSI_SCNTL0_WATN 0x10
41 #define LSI_SCNTL0_START 0x20
43 #define LSI_SCNTL1_SST 0x01
44 #define LSI_SCNTL1_IARB 0x02
45 #define LSI_SCNTL1_AESP 0x04
46 #define LSI_SCNTL1_RST 0x08
47 #define LSI_SCNTL1_CON 0x10
48 #define LSI_SCNTL1_DHP 0x20
49 #define LSI_SCNTL1_ADB 0x40
50 #define LSI_SCNTL1_EXC 0x80
52 #define LSI_SCNTL2_WSR 0x01
53 #define LSI_SCNTL2_VUE0 0x02
54 #define LSI_SCNTL2_VUE1 0x04
55 #define LSI_SCNTL2_WSS 0x08
56 #define LSI_SCNTL2_SLPHBEN 0x10
57 #define LSI_SCNTL2_SLPMD 0x20
58 #define LSI_SCNTL2_CHM 0x40
59 #define LSI_SCNTL2_SDU 0x80
61 #define LSI_ISTAT0_DIP 0x01
62 #define LSI_ISTAT0_SIP 0x02
63 #define LSI_ISTAT0_INTF 0x04
64 #define LSI_ISTAT0_CON 0x08
65 #define LSI_ISTAT0_SEM 0x10
66 #define LSI_ISTAT0_SIGP 0x20
67 #define LSI_ISTAT0_SRST 0x40
68 #define LSI_ISTAT0_ABRT 0x80
70 #define LSI_ISTAT1_SI 0x01
71 #define LSI_ISTAT1_SRUN 0x02
72 #define LSI_ISTAT1_FLSH 0x04
74 #define LSI_SSTAT0_SDP0 0x01
75 #define LSI_SSTAT0_RST 0x02
76 #define LSI_SSTAT0_WOA 0x04
77 #define LSI_SSTAT0_LOA 0x08
78 #define LSI_SSTAT0_AIP 0x10
79 #define LSI_SSTAT0_OLF 0x20
80 #define LSI_SSTAT0_ORF 0x40
81 #define LSI_SSTAT0_ILF 0x80
83 #define LSI_SIST0_PAR 0x01
84 #define LSI_SIST0_RST 0x02
85 #define LSI_SIST0_UDC 0x04
86 #define LSI_SIST0_SGE 0x08
87 #define LSI_SIST0_RSL 0x10
88 #define LSI_SIST0_SEL 0x20
89 #define LSI_SIST0_CMP 0x40
90 #define LSI_SIST0_MA 0x80
92 #define LSI_SIST1_HTH 0x01
93 #define LSI_SIST1_GEN 0x02
94 #define LSI_SIST1_STO 0x04
95 #define LSI_SIST1_SBMC 0x10
97 #define LSI_SOCL_IO 0x01
98 #define LSI_SOCL_CD 0x02
99 #define LSI_SOCL_MSG 0x04
100 #define LSI_SOCL_ATN 0x08
101 #define LSI_SOCL_SEL 0x10
102 #define LSI_SOCL_BSY 0x20
103 #define LSI_SOCL_ACK 0x40
104 #define LSI_SOCL_REQ 0x80
106 #define LSI_DSTAT_IID 0x01
107 #define LSI_DSTAT_SIR 0x04
108 #define LSI_DSTAT_SSI 0x08
109 #define LSI_DSTAT_ABRT 0x10
110 #define LSI_DSTAT_BF 0x20
111 #define LSI_DSTAT_MDPE 0x40
112 #define LSI_DSTAT_DFE 0x80
114 #define LSI_DCNTL_COM 0x01
115 #define LSI_DCNTL_IRQD 0x02
116 #define LSI_DCNTL_STD 0x04
117 #define LSI_DCNTL_IRQM 0x08
118 #define LSI_DCNTL_SSM 0x10
119 #define LSI_DCNTL_PFEN 0x20
120 #define LSI_DCNTL_PFF 0x40
121 #define LSI_DCNTL_CLSE 0x80
123 #define LSI_DMODE_MAN 0x01
124 #define LSI_DMODE_BOF 0x02
125 #define LSI_DMODE_ERMP 0x04
126 #define LSI_DMODE_ERL 0x08
127 #define LSI_DMODE_DIOM 0x10
128 #define LSI_DMODE_SIOM 0x20
130 #define LSI_CTEST2_DACK 0x01
131 #define LSI_CTEST2_DREQ 0x02
132 #define LSI_CTEST2_TEOP 0x04
133 #define LSI_CTEST2_PCICIE 0x08
134 #define LSI_CTEST2_CM 0x10
135 #define LSI_CTEST2_CIO 0x20
136 #define LSI_CTEST2_SIGP 0x40
137 #define LSI_CTEST2_DDIR 0x80
139 #define LSI_CTEST5_BL2 0x04
140 #define LSI_CTEST5_DDIR 0x08
141 #define LSI_CTEST5_MASR 0x10
142 #define LSI_CTEST5_DFSN 0x20
143 #define LSI_CTEST5_BBCK 0x40
144 #define LSI_CTEST5_ADCK 0x80
146 #define LSI_CCNTL0_DILS 0x01
147 #define LSI_CCNTL0_DISFC 0x10
148 #define LSI_CCNTL0_ENNDJ 0x20
149 #define LSI_CCNTL0_PMJCTL 0x40
150 #define LSI_CCNTL0_ENPMJ 0x80
152 #define LSI_CCNTL1_EN64DBMV 0x01
153 #define LSI_CCNTL1_EN64TIBMV 0x02
154 #define LSI_CCNTL1_64TIMOD 0x04
155 #define LSI_CCNTL1_DDAC 0x08
156 #define LSI_CCNTL1_ZMOD 0x80
158 /* Enable Response to Reselection */
159 #define LSI_SCID_RRE 0x60
161 #define LSI_CCNTL1_40BIT (LSI_CCNTL1_EN64TIBMV|LSI_CCNTL1_64TIMOD)
171 /* Maximum length of MSG IN data. */
172 #define LSI_MAX_MSGIN_LEN 8
174 /* Flag set if this is a tagged command. */
175 #define LSI_TAG_VALID (1 << 16)
177 typedef struct lsi_request
{
184 QTAILQ_ENTRY(lsi_request
) next
;
189 MemoryRegion mmio_io
;
193 int carry
; /* ??? Should this be an a visible register somewhere? */
195 /* Action to take at the end of a MSG IN phase.
196 0 = COMMAND, 1 = disconnect, 2 = DATA OUT, 3 = DATA IN. */
199 uint8_t msg
[LSI_MAX_MSGIN_LEN
];
200 /* 0 if SCRIPTS are running or stopped.
201 * 1 if a Wait Reselect instruction has been issued.
202 * 2 if processing DMA from lsi_execute_script.
203 * 3 if a DMA operation is in progress. */
207 /* The tag is a combination of the device ID and the SCSI tag. */
209 int command_complete
;
210 QTAILQ_HEAD(, lsi_request
) queue
;
211 lsi_request
*current
;
272 uint32_t scratch
[18]; /* SCRATCHA-SCRATCHR */
275 /* Script ram is stored as 32-bit words in host byteorder. */
276 uint32_t script_ram
[2048];
279 static inline int lsi_irq_on_rsl(LSIState
*s
)
281 return (s
->sien0
& LSI_SIST0_RSL
) && (s
->scid
& LSI_SCID_RRE
);
284 static void lsi_soft_reset(LSIState
*s
)
298 memset(s
->scratch
, 0, sizeof(s
->scratch
));
302 s
->dstat
= LSI_DSTAT_DFE
;
311 s
->ctest2
= LSI_CTEST2_DACK
;
354 while (!QTAILQ_EMPTY(&s
->queue
)) {
355 p
= QTAILQ_FIRST(&s
->queue
);
356 QTAILQ_REMOVE(&s
->queue
, p
, next
);
365 static int lsi_dma_40bit(LSIState
*s
)
367 if ((s
->ccntl1
& LSI_CCNTL1_40BIT
) == LSI_CCNTL1_40BIT
)
372 static int lsi_dma_ti64bit(LSIState
*s
)
374 if ((s
->ccntl1
& LSI_CCNTL1_EN64TIBMV
) == LSI_CCNTL1_EN64TIBMV
)
379 static int lsi_dma_64bit(LSIState
*s
)
381 if ((s
->ccntl1
& LSI_CCNTL1_EN64DBMV
) == LSI_CCNTL1_EN64DBMV
)
386 static uint8_t lsi_reg_readb(LSIState
*s
, int offset
);
387 static void lsi_reg_writeb(LSIState
*s
, int offset
, uint8_t val
);
388 static void lsi_execute_script(LSIState
*s
);
389 static void lsi_reselect(LSIState
*s
, lsi_request
*p
);
391 static inline uint32_t read_dword(LSIState
*s
, uint32_t addr
)
395 pci_dma_read(&s
->dev
, addr
, (uint8_t *)&buf
, 4);
396 return cpu_to_le32(buf
);
399 static void lsi_stop_script(LSIState
*s
)
401 s
->istat1
&= ~LSI_ISTAT1_SRUN
;
404 static void lsi_update_irq(LSIState
*s
)
407 static int last_level
;
410 /* It's unclear whether the DIP/SIP bits should be cleared when the
411 Interrupt Status Registers are cleared or when istat0 is read.
412 We currently do the formwer, which seems to work. */
415 if (s
->dstat
& s
->dien
)
417 s
->istat0
|= LSI_ISTAT0_DIP
;
419 s
->istat0
&= ~LSI_ISTAT0_DIP
;
422 if (s
->sist0
|| s
->sist1
) {
423 if ((s
->sist0
& s
->sien0
) || (s
->sist1
& s
->sien1
))
425 s
->istat0
|= LSI_ISTAT0_SIP
;
427 s
->istat0
&= ~LSI_ISTAT0_SIP
;
429 if (s
->istat0
& LSI_ISTAT0_INTF
)
432 if (level
!= last_level
) {
433 DPRINTF("Update IRQ level %d dstat %02x sist %02x%02x\n",
434 level
, s
->dstat
, s
->sist1
, s
->sist0
);
437 qemu_set_irq(s
->dev
.irq
[0], level
);
439 if (!level
&& lsi_irq_on_rsl(s
) && !(s
->scntl1
& LSI_SCNTL1_CON
)) {
440 DPRINTF("Handled IRQs & disconnected, looking for pending "
442 QTAILQ_FOREACH(p
, &s
->queue
, next
) {
451 /* Stop SCRIPTS execution and raise a SCSI interrupt. */
452 static void lsi_script_scsi_interrupt(LSIState
*s
, int stat0
, int stat1
)
457 DPRINTF("SCSI Interrupt 0x%02x%02x prev 0x%02x%02x\n",
458 stat1
, stat0
, s
->sist1
, s
->sist0
);
461 /* Stop processor on fatal or unmasked interrupt. As a special hack
462 we don't stop processing when raising STO. Instead continue
463 execution and stop at the next insn that accesses the SCSI bus. */
464 mask0
= s
->sien0
| ~(LSI_SIST0_CMP
| LSI_SIST0_SEL
| LSI_SIST0_RSL
);
465 mask1
= s
->sien1
| ~(LSI_SIST1_GEN
| LSI_SIST1_HTH
);
466 mask1
&= ~LSI_SIST1_STO
;
467 if (s
->sist0
& mask0
|| s
->sist1
& mask1
) {
473 /* Stop SCRIPTS execution and raise a DMA interrupt. */
474 static void lsi_script_dma_interrupt(LSIState
*s
, int stat
)
476 DPRINTF("DMA Interrupt 0x%x prev 0x%x\n", stat
, s
->dstat
);
482 static inline void lsi_set_phase(LSIState
*s
, int phase
)
484 s
->sstat1
= (s
->sstat1
& ~PHASE_MASK
) | phase
;
487 static void lsi_bad_phase(LSIState
*s
, int out
, int new_phase
)
489 /* Trigger a phase mismatch. */
490 if (s
->ccntl0
& LSI_CCNTL0_ENPMJ
) {
491 if ((s
->ccntl0
& LSI_CCNTL0_PMJCTL
)) {
492 s
->dsp
= out
? s
->pmjad1
: s
->pmjad2
;
494 s
->dsp
= (s
->scntl2
& LSI_SCNTL2_WSR
? s
->pmjad2
: s
->pmjad1
);
496 DPRINTF("Data phase mismatch jump to %08x\n", s
->dsp
);
498 DPRINTF("Phase mismatch interrupt\n");
499 lsi_script_scsi_interrupt(s
, LSI_SIST0_MA
, 0);
502 lsi_set_phase(s
, new_phase
);
506 /* Resume SCRIPTS execution after a DMA operation. */
507 static void lsi_resume_script(LSIState
*s
)
509 if (s
->waiting
!= 2) {
511 lsi_execute_script(s
);
517 static void lsi_disconnect(LSIState
*s
)
519 s
->scntl1
&= ~LSI_SCNTL1_CON
;
520 s
->sstat1
&= ~PHASE_MASK
;
523 static void lsi_bad_selection(LSIState
*s
, uint32_t id
)
525 DPRINTF("Selected absent target %d\n", id
);
526 lsi_script_scsi_interrupt(s
, 0, LSI_SIST1_STO
);
530 /* Initiate a SCSI layer data transfer. */
531 static void lsi_do_dma(LSIState
*s
, int out
)
538 if (!s
->current
->dma_len
) {
539 /* Wait until data is available. */
540 DPRINTF("DMA no data available\n");
544 dev
= s
->current
->req
->dev
;
548 if (count
> s
->current
->dma_len
)
549 count
= s
->current
->dma_len
;
552 /* both 40 and Table Indirect 64-bit DMAs store upper bits in dnad64 */
553 if (lsi_dma_40bit(s
) || lsi_dma_ti64bit(s
))
554 addr
|= ((uint64_t)s
->dnad64
<< 32);
556 addr
|= ((uint64_t)s
->dbms
<< 32);
558 addr
|= ((uint64_t)s
->sbms
<< 32);
560 DPRINTF("DMA addr=0x" DMA_ADDR_FMT
" len=%d\n", addr
, count
);
564 if (s
->current
->dma_buf
== NULL
) {
565 s
->current
->dma_buf
= scsi_req_get_buf(s
->current
->req
);
567 /* ??? Set SFBR to first data byte. */
569 pci_dma_read(&s
->dev
, addr
, s
->current
->dma_buf
, count
);
571 pci_dma_write(&s
->dev
, addr
, s
->current
->dma_buf
, count
);
573 s
->current
->dma_len
-= count
;
574 if (s
->current
->dma_len
== 0) {
575 s
->current
->dma_buf
= NULL
;
576 scsi_req_continue(s
->current
->req
);
578 s
->current
->dma_buf
+= count
;
579 lsi_resume_script(s
);
584 /* Add a command to the queue. */
585 static void lsi_queue_command(LSIState
*s
)
587 lsi_request
*p
= s
->current
;
589 DPRINTF("Queueing tag=0x%x\n", p
->tag
);
590 assert(s
->current
!= NULL
);
591 assert(s
->current
->dma_len
== 0);
592 QTAILQ_INSERT_TAIL(&s
->queue
, s
->current
, next
);
596 p
->out
= (s
->sstat1
& PHASE_MASK
) == PHASE_DO
;
599 /* Queue a byte for a MSG IN phase. */
600 static void lsi_add_msg_byte(LSIState
*s
, uint8_t data
)
602 if (s
->msg_len
>= LSI_MAX_MSGIN_LEN
) {
603 BADF("MSG IN data too long\n");
605 DPRINTF("MSG IN 0x%02x\n", data
);
606 s
->msg
[s
->msg_len
++] = data
;
610 /* Perform reselection to continue a command. */
611 static void lsi_reselect(LSIState
*s
, lsi_request
*p
)
615 assert(s
->current
== NULL
);
616 QTAILQ_REMOVE(&s
->queue
, p
, next
);
619 id
= (p
->tag
>> 8) & 0xf;
621 /* LSI53C700 Family Compatibility, see LSI53C895A 4-73 */
622 if (!(s
->dcntl
& LSI_DCNTL_COM
)) {
623 s
->sfbr
= 1 << (id
& 0x7);
625 DPRINTF("Reselected target %d\n", id
);
626 s
->scntl1
|= LSI_SCNTL1_CON
;
627 lsi_set_phase(s
, PHASE_MI
);
628 s
->msg_action
= p
->out
? 2 : 3;
629 s
->current
->dma_len
= p
->pending
;
630 lsi_add_msg_byte(s
, 0x80);
631 if (s
->current
->tag
& LSI_TAG_VALID
) {
632 lsi_add_msg_byte(s
, 0x20);
633 lsi_add_msg_byte(s
, p
->tag
& 0xff);
636 if (lsi_irq_on_rsl(s
)) {
637 lsi_script_scsi_interrupt(s
, LSI_SIST0_RSL
, 0);
641 static lsi_request
*lsi_find_by_tag(LSIState
*s
, uint32_t tag
)
645 QTAILQ_FOREACH(p
, &s
->queue
, next
) {
654 static void lsi_request_cancelled(SCSIRequest
*req
)
656 LSIState
*s
= DO_UPCAST(LSIState
, dev
.qdev
, req
->bus
->qbus
.parent
);
657 lsi_request
*p
= req
->hba_private
;
659 if (s
->current
&& req
== s
->current
->req
) {
667 QTAILQ_REMOVE(&s
->queue
, p
, next
);
673 /* Record that data is available for a queued command. Returns zero if
674 the device was reselected, nonzero if the IO is deferred. */
675 static int lsi_queue_req(LSIState
*s
, SCSIRequest
*req
, uint32_t len
)
677 lsi_request
*p
= req
->hba_private
;
680 BADF("Multiple IO pending for request %p\n", p
);
683 /* Reselect if waiting for it, or if reselection triggers an IRQ
685 Since no interrupt stacking is implemented in the emulation, it
686 is also required that there are no pending interrupts waiting
687 for service from the device driver. */
688 if (s
->waiting
== 1 ||
689 (lsi_irq_on_rsl(s
) && !(s
->scntl1
& LSI_SCNTL1_CON
) &&
690 !(s
->istat0
& (LSI_ISTAT0_SIP
| LSI_ISTAT0_DIP
)))) {
691 /* Reselect device. */
695 DPRINTF("Queueing IO tag=0x%x\n", p
->tag
);
701 /* Callback to indicate that the SCSI layer has completed a command. */
702 static void lsi_command_complete(SCSIRequest
*req
, uint32_t status
)
704 LSIState
*s
= DO_UPCAST(LSIState
, dev
.qdev
, req
->bus
->qbus
.parent
);
707 out
= (s
->sstat1
& PHASE_MASK
) == PHASE_DO
;
708 DPRINTF("Command complete status=%d\n", (int)status
);
710 s
->command_complete
= 2;
711 if (s
->waiting
&& s
->dbc
!= 0) {
712 /* Raise phase mismatch for short transfers. */
713 lsi_bad_phase(s
, out
, PHASE_ST
);
715 lsi_set_phase(s
, PHASE_ST
);
718 if (s
->current
&& req
== s
->current
->req
) {
719 scsi_req_unref(s
->current
->req
);
723 lsi_resume_script(s
);
726 /* Callback to indicate that the SCSI layer has completed a transfer. */
727 static void lsi_transfer_data(SCSIRequest
*req
, uint32_t len
)
729 LSIState
*s
= DO_UPCAST(LSIState
, dev
.qdev
, req
->bus
->qbus
.parent
);
732 if (s
->waiting
== 1 || !s
->current
|| req
->hba_private
!= s
->current
||
733 (lsi_irq_on_rsl(s
) && !(s
->scntl1
& LSI_SCNTL1_CON
))) {
734 if (lsi_queue_req(s
, req
, len
)) {
739 out
= (s
->sstat1
& PHASE_MASK
) == PHASE_DO
;
741 /* host adapter (re)connected */
742 DPRINTF("Data ready tag=0x%x len=%d\n", req
->tag
, len
);
743 s
->current
->dma_len
= len
;
744 s
->command_complete
= 1;
746 if (s
->waiting
== 1 || s
->dbc
== 0) {
747 lsi_resume_script(s
);
754 static void lsi_do_command(LSIState
*s
)
761 DPRINTF("Send command len=%d\n", s
->dbc
);
764 pci_dma_read(&s
->dev
, s
->dnad
, buf
, s
->dbc
);
766 s
->command_complete
= 0;
768 id
= (s
->select_tag
>> 8) & 0xf;
769 dev
= scsi_device_find(&s
->bus
, 0, id
, s
->current_lun
);
771 lsi_bad_selection(s
, id
);
775 assert(s
->current
== NULL
);
776 s
->current
= g_malloc0(sizeof(lsi_request
));
777 s
->current
->tag
= s
->select_tag
;
778 s
->current
->req
= scsi_req_new(dev
, s
->current
->tag
, s
->current_lun
, buf
,
781 n
= scsi_req_enqueue(s
->current
->req
);
784 lsi_set_phase(s
, PHASE_DI
);
786 lsi_set_phase(s
, PHASE_DO
);
788 scsi_req_continue(s
->current
->req
);
790 if (!s
->command_complete
) {
792 /* Command did not complete immediately so disconnect. */
793 lsi_add_msg_byte(s
, 2); /* SAVE DATA POINTER */
794 lsi_add_msg_byte(s
, 4); /* DISCONNECT */
796 lsi_set_phase(s
, PHASE_MI
);
798 lsi_queue_command(s
);
800 /* wait command complete */
801 lsi_set_phase(s
, PHASE_DI
);
806 static void lsi_do_status(LSIState
*s
)
809 DPRINTF("Get status len=%d status=%d\n", s
->dbc
, s
->status
);
811 BADF("Bad Status move\n");
815 pci_dma_write(&s
->dev
, s
->dnad
, &status
, 1);
816 lsi_set_phase(s
, PHASE_MI
);
818 lsi_add_msg_byte(s
, 0); /* COMMAND COMPLETE */
821 static void lsi_do_msgin(LSIState
*s
)
824 DPRINTF("Message in len=%d/%d\n", s
->dbc
, s
->msg_len
);
829 pci_dma_write(&s
->dev
, s
->dnad
, s
->msg
, len
);
830 /* Linux drivers rely on the last byte being in the SIDL. */
831 s
->sidl
= s
->msg
[len
- 1];
834 memmove(s
->msg
, s
->msg
+ len
, s
->msg_len
);
836 /* ??? Check if ATN (not yet implemented) is asserted and maybe
837 switch to PHASE_MO. */
838 switch (s
->msg_action
) {
840 lsi_set_phase(s
, PHASE_CMD
);
846 lsi_set_phase(s
, PHASE_DO
);
849 lsi_set_phase(s
, PHASE_DI
);
857 /* Read the next byte during a MSGOUT phase. */
858 static uint8_t lsi_get_msgbyte(LSIState
*s
)
861 pci_dma_read(&s
->dev
, s
->dnad
, &data
, 1);
867 /* Skip the next n bytes during a MSGOUT phase. */
868 static void lsi_skip_msgbytes(LSIState
*s
, unsigned int n
)
874 static void lsi_do_msgout(LSIState
*s
)
878 uint32_t current_tag
;
879 lsi_request
*current_req
, *p
, *p_next
;
882 current_tag
= s
->current
->tag
;
883 current_req
= s
->current
;
885 current_tag
= s
->select_tag
;
886 current_req
= lsi_find_by_tag(s
, current_tag
);
889 DPRINTF("MSG out len=%d\n", s
->dbc
);
891 msg
= lsi_get_msgbyte(s
);
896 DPRINTF("MSG: Disconnect\n");
900 DPRINTF("MSG: No Operation\n");
901 lsi_set_phase(s
, PHASE_CMD
);
904 len
= lsi_get_msgbyte(s
);
905 msg
= lsi_get_msgbyte(s
);
906 (void)len
; /* avoid a warning about unused variable*/
907 DPRINTF("Extended message 0x%x (len %d)\n", msg
, len
);
910 DPRINTF("SDTR (ignored)\n");
911 lsi_skip_msgbytes(s
, 2);
914 DPRINTF("WDTR (ignored)\n");
915 lsi_skip_msgbytes(s
, 1);
921 case 0x20: /* SIMPLE queue */
922 s
->select_tag
|= lsi_get_msgbyte(s
) | LSI_TAG_VALID
;
923 DPRINTF("SIMPLE queue tag=0x%x\n", s
->select_tag
& 0xff);
925 case 0x21: /* HEAD of queue */
926 BADF("HEAD queue not implemented\n");
927 s
->select_tag
|= lsi_get_msgbyte(s
) | LSI_TAG_VALID
;
929 case 0x22: /* ORDERED queue */
930 BADF("ORDERED queue not implemented\n");
931 s
->select_tag
|= lsi_get_msgbyte(s
) | LSI_TAG_VALID
;
934 /* The ABORT TAG message clears the current I/O process only. */
935 DPRINTF("MSG: ABORT TAG tag=0x%x\n", current_tag
);
937 scsi_req_cancel(current_req
->req
);
944 /* The ABORT message clears all I/O processes for the selecting
945 initiator on the specified logical unit of the target. */
947 DPRINTF("MSG: ABORT tag=0x%x\n", current_tag
);
949 /* The CLEAR QUEUE message clears all I/O processes for all
950 initiators on the specified logical unit of the target. */
952 DPRINTF("MSG: CLEAR QUEUE tag=0x%x\n", current_tag
);
954 /* The BUS DEVICE RESET message clears all I/O processes for all
955 initiators on all logical units of the target. */
957 DPRINTF("MSG: BUS DEVICE RESET tag=0x%x\n", current_tag
);
960 /* clear the current I/O process */
962 scsi_req_cancel(s
->current
->req
);
965 /* As the current implemented devices scsi_disk and scsi_generic
966 only support one LUN, we don't need to keep track of LUNs.
967 Clearing I/O processes for other initiators could be possible
968 for scsi_generic by sending a SG_SCSI_RESET to the /dev/sgX
969 device, but this is currently not implemented (and seems not
970 to be really necessary). So let's simply clear all queued
971 commands for the current device: */
972 QTAILQ_FOREACH_SAFE(p
, &s
->queue
, next
, p_next
) {
973 if ((p
->tag
& 0x0000ff00) == (current_tag
& 0x0000ff00)) {
974 scsi_req_cancel(p
->req
);
981 if ((msg
& 0x80) == 0) {
984 s
->current_lun
= msg
& 7;
985 DPRINTF("Select LUN %d\n", s
->current_lun
);
986 lsi_set_phase(s
, PHASE_CMD
);
992 BADF("Unimplemented message 0x%02x\n", msg
);
993 lsi_set_phase(s
, PHASE_MI
);
994 lsi_add_msg_byte(s
, 7); /* MESSAGE REJECT */
998 /* Sign extend a 24-bit value. */
999 static inline int32_t sxt24(int32_t n
)
1001 return (n
<< 8) >> 8;
1004 #define LSI_BUF_SIZE 4096
1005 static void lsi_memcpy(LSIState
*s
, uint32_t dest
, uint32_t src
, int count
)
1008 uint8_t buf
[LSI_BUF_SIZE
];
1010 DPRINTF("memcpy dest 0x%08x src 0x%08x count %d\n", dest
, src
, count
);
1012 n
= (count
> LSI_BUF_SIZE
) ? LSI_BUF_SIZE
: count
;
1013 pci_dma_read(&s
->dev
, src
, buf
, n
);
1014 pci_dma_write(&s
->dev
, dest
, buf
, n
);
1021 static void lsi_wait_reselect(LSIState
*s
)
1025 DPRINTF("Wait Reselect\n");
1027 QTAILQ_FOREACH(p
, &s
->queue
, next
) {
1033 if (s
->current
== NULL
) {
1038 static void lsi_execute_script(LSIState
*s
)
1041 uint32_t addr
, addr_high
;
1043 int insn_processed
= 0;
1045 s
->istat1
|= LSI_ISTAT1_SRUN
;
1048 insn
= read_dword(s
, s
->dsp
);
1050 /* If we receive an empty opcode increment the DSP by 4 bytes
1051 instead of 8 and execute the next opcode at that location */
1055 addr
= read_dword(s
, s
->dsp
+ 4);
1057 DPRINTF("SCRIPTS dsp=%08x opcode %08x arg %08x\n", s
->dsp
, insn
, addr
);
1059 s
->dcmd
= insn
>> 24;
1061 switch (insn
>> 30) {
1062 case 0: /* Block move. */
1063 if (s
->sist1
& LSI_SIST1_STO
) {
1064 DPRINTF("Delayed select timeout\n");
1068 s
->dbc
= insn
& 0xffffff;
1072 if (insn
& (1 << 29)) {
1073 /* Indirect addressing. */
1074 addr
= read_dword(s
, addr
);
1075 } else if (insn
& (1 << 28)) {
1078 /* Table indirect addressing. */
1080 /* 32-bit Table indirect */
1081 offset
= sxt24(addr
);
1082 pci_dma_read(&s
->dev
, s
->dsa
+ offset
, (uint8_t *)buf
, 8);
1083 /* byte count is stored in bits 0:23 only */
1084 s
->dbc
= cpu_to_le32(buf
[0]) & 0xffffff;
1086 addr
= cpu_to_le32(buf
[1]);
1088 /* 40-bit DMA, upper addr bits [39:32] stored in first DWORD of
1089 * table, bits [31:24] */
1090 if (lsi_dma_40bit(s
))
1091 addr_high
= cpu_to_le32(buf
[0]) >> 24;
1092 else if (lsi_dma_ti64bit(s
)) {
1093 int selector
= (cpu_to_le32(buf
[0]) >> 24) & 0x1f;
1096 /* offset index into scratch registers since
1097 * TI64 mode can use registers C to R */
1098 addr_high
= s
->scratch
[2 + selector
];
1101 addr_high
= s
->mmrs
;
1104 addr_high
= s
->mmws
;
1113 addr_high
= s
->sbms
;
1116 addr_high
= s
->dbms
;
1119 BADF("Illegal selector specified (0x%x > 0x15)"
1120 " for 64-bit DMA block move", selector
);
1124 } else if (lsi_dma_64bit(s
)) {
1125 /* fetch a 3rd dword if 64-bit direct move is enabled and
1126 only if we're not doing table indirect or indirect addressing */
1127 s
->dbms
= read_dword(s
, s
->dsp
);
1129 s
->ia
= s
->dsp
- 12;
1131 if ((s
->sstat1
& PHASE_MASK
) != ((insn
>> 24) & 7)) {
1132 DPRINTF("Wrong phase got %d expected %d\n",
1133 s
->sstat1
& PHASE_MASK
, (insn
>> 24) & 7);
1134 lsi_script_scsi_interrupt(s
, LSI_SIST0_MA
, 0);
1138 s
->dnad64
= addr_high
;
1139 switch (s
->sstat1
& 0x7) {
1165 BADF("Unimplemented phase %d\n", s
->sstat1
& PHASE_MASK
);
1168 s
->dfifo
= s
->dbc
& 0xff;
1169 s
->ctest5
= (s
->ctest5
& 0xfc) | ((s
->dbc
>> 8) & 3);
1172 s
->ua
= addr
+ s
->dbc
;
1175 case 1: /* IO or Read/Write instruction. */
1176 opcode
= (insn
>> 27) & 7;
1180 if (insn
& (1 << 25)) {
1181 id
= read_dword(s
, s
->dsa
+ sxt24(insn
));
1185 id
= (id
>> 16) & 0xf;
1186 if (insn
& (1 << 26)) {
1187 addr
= s
->dsp
+ sxt24(addr
);
1191 case 0: /* Select */
1193 if (s
->scntl1
& LSI_SCNTL1_CON
) {
1194 DPRINTF("Already reselected, jumping to alternative address\n");
1198 s
->sstat0
|= LSI_SSTAT0_WOA
;
1199 s
->scntl1
&= ~LSI_SCNTL1_IARB
;
1200 if (!scsi_device_find(&s
->bus
, 0, id
, 0)) {
1201 lsi_bad_selection(s
, id
);
1204 DPRINTF("Selected target %d%s\n",
1205 id
, insn
& (1 << 3) ? " ATN" : "");
1206 /* ??? Linux drivers compain when this is set. Maybe
1207 it only applies in low-level mode (unimplemented).
1208 lsi_script_scsi_interrupt(s, LSI_SIST0_CMP, 0); */
1209 s
->select_tag
= id
<< 8;
1210 s
->scntl1
|= LSI_SCNTL1_CON
;
1211 if (insn
& (1 << 3)) {
1212 s
->socl
|= LSI_SOCL_ATN
;
1214 lsi_set_phase(s
, PHASE_MO
);
1216 case 1: /* Disconnect */
1217 DPRINTF("Wait Disconnect\n");
1218 s
->scntl1
&= ~LSI_SCNTL1_CON
;
1220 case 2: /* Wait Reselect */
1221 if (!lsi_irq_on_rsl(s
)) {
1222 lsi_wait_reselect(s
);
1226 DPRINTF("Set%s%s%s%s\n",
1227 insn
& (1 << 3) ? " ATN" : "",
1228 insn
& (1 << 6) ? " ACK" : "",
1229 insn
& (1 << 9) ? " TM" : "",
1230 insn
& (1 << 10) ? " CC" : "");
1231 if (insn
& (1 << 3)) {
1232 s
->socl
|= LSI_SOCL_ATN
;
1233 lsi_set_phase(s
, PHASE_MO
);
1235 if (insn
& (1 << 9)) {
1236 BADF("Target mode not implemented\n");
1239 if (insn
& (1 << 10))
1243 DPRINTF("Clear%s%s%s%s\n",
1244 insn
& (1 << 3) ? " ATN" : "",
1245 insn
& (1 << 6) ? " ACK" : "",
1246 insn
& (1 << 9) ? " TM" : "",
1247 insn
& (1 << 10) ? " CC" : "");
1248 if (insn
& (1 << 3)) {
1249 s
->socl
&= ~LSI_SOCL_ATN
;
1251 if (insn
& (1 << 10))
1262 static const char *opcode_names
[3] =
1263 {"Write", "Read", "Read-Modify-Write"};
1264 static const char *operator_names
[8] =
1265 {"MOV", "SHL", "OR", "XOR", "AND", "SHR", "ADD", "ADC"};
1268 reg
= ((insn
>> 16) & 0x7f) | (insn
& 0x80);
1269 data8
= (insn
>> 8) & 0xff;
1270 opcode
= (insn
>> 27) & 7;
1271 operator = (insn
>> 24) & 7;
1272 DPRINTF("%s reg 0x%x %s data8=0x%02x sfbr=0x%02x%s\n",
1273 opcode_names
[opcode
- 5], reg
,
1274 operator_names
[operator], data8
, s
->sfbr
,
1275 (insn
& (1 << 23)) ? " SFBR" : "");
1278 case 5: /* From SFBR */
1282 case 6: /* To SFBR */
1284 op0
= lsi_reg_readb(s
, reg
);
1287 case 7: /* Read-modify-write */
1289 op0
= lsi_reg_readb(s
, reg
);
1290 if (insn
& (1 << 23)) {
1302 case 1: /* Shift left */
1304 op0
= (op0
<< 1) | s
->carry
;
1318 op0
= (op0
>> 1) | (s
->carry
<< 7);
1323 s
->carry
= op0
< op1
;
1326 op0
+= op1
+ s
->carry
;
1328 s
->carry
= op0
<= op1
;
1330 s
->carry
= op0
< op1
;
1335 case 5: /* From SFBR */
1336 case 7: /* Read-modify-write */
1337 lsi_reg_writeb(s
, reg
, op0
);
1339 case 6: /* To SFBR */
1346 case 2: /* Transfer Control. */
1351 if ((insn
& 0x002e0000) == 0) {
1355 if (s
->sist1
& LSI_SIST1_STO
) {
1356 DPRINTF("Delayed select timeout\n");
1360 cond
= jmp
= (insn
& (1 << 19)) != 0;
1361 if (cond
== jmp
&& (insn
& (1 << 21))) {
1362 DPRINTF("Compare carry %d\n", s
->carry
== jmp
);
1363 cond
= s
->carry
!= 0;
1365 if (cond
== jmp
&& (insn
& (1 << 17))) {
1366 DPRINTF("Compare phase %d %c= %d\n",
1367 (s
->sstat1
& PHASE_MASK
),
1369 ((insn
>> 24) & 7));
1370 cond
= (s
->sstat1
& PHASE_MASK
) == ((insn
>> 24) & 7);
1372 if (cond
== jmp
&& (insn
& (1 << 18))) {
1375 mask
= (~insn
>> 8) & 0xff;
1376 DPRINTF("Compare data 0x%x & 0x%x %c= 0x%x\n",
1377 s
->sfbr
, mask
, jmp
? '=' : '!', insn
& mask
);
1378 cond
= (s
->sfbr
& mask
) == (insn
& mask
);
1381 if (insn
& (1 << 23)) {
1382 /* Relative address. */
1383 addr
= s
->dsp
+ sxt24(addr
);
1385 switch ((insn
>> 27) & 7) {
1387 DPRINTF("Jump to 0x%08x\n", addr
);
1391 DPRINTF("Call 0x%08x\n", addr
);
1395 case 2: /* Return */
1396 DPRINTF("Return to 0x%08x\n", s
->temp
);
1399 case 3: /* Interrupt */
1400 DPRINTF("Interrupt 0x%08x\n", s
->dsps
);
1401 if ((insn
& (1 << 20)) != 0) {
1402 s
->istat0
|= LSI_ISTAT0_INTF
;
1405 lsi_script_dma_interrupt(s
, LSI_DSTAT_SIR
);
1409 DPRINTF("Illegal transfer control\n");
1410 lsi_script_dma_interrupt(s
, LSI_DSTAT_IID
);
1414 DPRINTF("Control condition failed\n");
1420 if ((insn
& (1 << 29)) == 0) {
1423 /* ??? The docs imply the destination address is loaded into
1424 the TEMP register. However the Linux drivers rely on
1425 the value being presrved. */
1426 dest
= read_dword(s
, s
->dsp
);
1428 lsi_memcpy(s
, dest
, addr
, insn
& 0xffffff);
1435 if (insn
& (1 << 28)) {
1436 addr
= s
->dsa
+ sxt24(addr
);
1439 reg
= (insn
>> 16) & 0xff;
1440 if (insn
& (1 << 24)) {
1441 pci_dma_read(&s
->dev
, addr
, data
, n
);
1442 DPRINTF("Load reg 0x%x size %d addr 0x%08x = %08x\n", reg
, n
,
1443 addr
, *(int *)data
);
1444 for (i
= 0; i
< n
; i
++) {
1445 lsi_reg_writeb(s
, reg
+ i
, data
[i
]);
1448 DPRINTF("Store reg 0x%x size %d addr 0x%08x\n", reg
, n
, addr
);
1449 for (i
= 0; i
< n
; i
++) {
1450 data
[i
] = lsi_reg_readb(s
, reg
+ i
);
1452 pci_dma_write(&s
->dev
, addr
, data
, n
);
1456 if (insn_processed
> 10000 && !s
->waiting
) {
1457 /* Some windows drivers make the device spin waiting for a memory
1458 location to change. If we have been executed a lot of code then
1459 assume this is the case and force an unexpected device disconnect.
1460 This is apparently sufficient to beat the drivers into submission.
1462 if (!(s
->sien0
& LSI_SIST0_UDC
))
1463 fprintf(stderr
, "inf. loop with UDC masked\n");
1464 lsi_script_scsi_interrupt(s
, LSI_SIST0_UDC
, 0);
1466 } else if (s
->istat1
& LSI_ISTAT1_SRUN
&& !s
->waiting
) {
1467 if (s
->dcntl
& LSI_DCNTL_SSM
) {
1468 lsi_script_dma_interrupt(s
, LSI_DSTAT_SSI
);
1473 DPRINTF("SCRIPTS execution stopped\n");
1476 static uint8_t lsi_reg_readb(LSIState
*s
, int offset
)
1479 #define CASE_GET_REG24(name, addr) \
1480 case addr: return s->name & 0xff; \
1481 case addr + 1: return (s->name >> 8) & 0xff; \
1482 case addr + 2: return (s->name >> 16) & 0xff;
1484 #define CASE_GET_REG32(name, addr) \
1485 case addr: return s->name & 0xff; \
1486 case addr + 1: return (s->name >> 8) & 0xff; \
1487 case addr + 2: return (s->name >> 16) & 0xff; \
1488 case addr + 3: return (s->name >> 24) & 0xff;
1490 #ifdef DEBUG_LSI_REG
1491 DPRINTF("Read reg %x\n", offset
);
1494 case 0x00: /* SCNTL0 */
1496 case 0x01: /* SCNTL1 */
1498 case 0x02: /* SCNTL2 */
1500 case 0x03: /* SCNTL3 */
1502 case 0x04: /* SCID */
1504 case 0x05: /* SXFER */
1506 case 0x06: /* SDID */
1508 case 0x07: /* GPREG0 */
1510 case 0x08: /* Revision ID */
1512 case 0xa: /* SSID */
1514 case 0xb: /* SBCL */
1515 /* ??? This is not correct. However it's (hopefully) only
1516 used for diagnostics, so should be ok. */
1518 case 0xc: /* DSTAT */
1519 tmp
= s
->dstat
| 0x80;
1520 if ((s
->istat0
& LSI_ISTAT0_INTF
) == 0)
1524 case 0x0d: /* SSTAT0 */
1526 case 0x0e: /* SSTAT1 */
1528 case 0x0f: /* SSTAT2 */
1529 return s
->scntl1
& LSI_SCNTL1_CON
? 0 : 2;
1530 CASE_GET_REG32(dsa
, 0x10)
1531 case 0x14: /* ISTAT0 */
1533 case 0x15: /* ISTAT1 */
1535 case 0x16: /* MBOX0 */
1537 case 0x17: /* MBOX1 */
1539 case 0x18: /* CTEST0 */
1541 case 0x19: /* CTEST1 */
1543 case 0x1a: /* CTEST2 */
1544 tmp
= s
->ctest2
| LSI_CTEST2_DACK
| LSI_CTEST2_CM
;
1545 if (s
->istat0
& LSI_ISTAT0_SIGP
) {
1546 s
->istat0
&= ~LSI_ISTAT0_SIGP
;
1547 tmp
|= LSI_CTEST2_SIGP
;
1550 case 0x1b: /* CTEST3 */
1552 CASE_GET_REG32(temp
, 0x1c)
1553 case 0x20: /* DFIFO */
1555 case 0x21: /* CTEST4 */
1557 case 0x22: /* CTEST5 */
1559 case 0x23: /* CTEST6 */
1561 CASE_GET_REG24(dbc
, 0x24)
1562 case 0x27: /* DCMD */
1564 CASE_GET_REG32(dnad
, 0x28)
1565 CASE_GET_REG32(dsp
, 0x2c)
1566 CASE_GET_REG32(dsps
, 0x30)
1567 CASE_GET_REG32(scratch
[0], 0x34)
1568 case 0x38: /* DMODE */
1570 case 0x39: /* DIEN */
1572 case 0x3a: /* SBR */
1574 case 0x3b: /* DCNTL */
1576 case 0x40: /* SIEN0 */
1578 case 0x41: /* SIEN1 */
1580 case 0x42: /* SIST0 */
1585 case 0x43: /* SIST1 */
1590 case 0x46: /* MACNTL */
1592 case 0x47: /* GPCNTL0 */
1594 case 0x48: /* STIME0 */
1596 case 0x4a: /* RESPID0 */
1598 case 0x4b: /* RESPID1 */
1600 case 0x4d: /* STEST1 */
1602 case 0x4e: /* STEST2 */
1604 case 0x4f: /* STEST3 */
1606 case 0x50: /* SIDL */
1607 /* This is needed by the linux drivers. We currently only update it
1608 during the MSG IN phase. */
1610 case 0x52: /* STEST4 */
1612 case 0x56: /* CCNTL0 */
1614 case 0x57: /* CCNTL1 */
1616 case 0x58: /* SBDL */
1617 /* Some drivers peek at the data bus during the MSG IN phase. */
1618 if ((s
->sstat1
& PHASE_MASK
) == PHASE_MI
)
1621 case 0x59: /* SBDL high */
1623 CASE_GET_REG32(mmrs
, 0xa0)
1624 CASE_GET_REG32(mmws
, 0xa4)
1625 CASE_GET_REG32(sfs
, 0xa8)
1626 CASE_GET_REG32(drs
, 0xac)
1627 CASE_GET_REG32(sbms
, 0xb0)
1628 CASE_GET_REG32(dbms
, 0xb4)
1629 CASE_GET_REG32(dnad64
, 0xb8)
1630 CASE_GET_REG32(pmjad1
, 0xc0)
1631 CASE_GET_REG32(pmjad2
, 0xc4)
1632 CASE_GET_REG32(rbc
, 0xc8)
1633 CASE_GET_REG32(ua
, 0xcc)
1634 CASE_GET_REG32(ia
, 0xd4)
1635 CASE_GET_REG32(sbc
, 0xd8)
1636 CASE_GET_REG32(csbc
, 0xdc)
1638 if (offset
>= 0x5c && offset
< 0xa0) {
1641 n
= (offset
- 0x58) >> 2;
1642 shift
= (offset
& 3) * 8;
1643 return (s
->scratch
[n
] >> shift
) & 0xff;
1645 BADF("readb 0x%x\n", offset
);
1647 #undef CASE_GET_REG24
1648 #undef CASE_GET_REG32
1651 static void lsi_reg_writeb(LSIState
*s
, int offset
, uint8_t val
)
1653 #define CASE_SET_REG24(name, addr) \
1654 case addr : s->name &= 0xffffff00; s->name |= val; break; \
1655 case addr + 1: s->name &= 0xffff00ff; s->name |= val << 8; break; \
1656 case addr + 2: s->name &= 0xff00ffff; s->name |= val << 16; break;
1658 #define CASE_SET_REG32(name, addr) \
1659 case addr : s->name &= 0xffffff00; s->name |= val; break; \
1660 case addr + 1: s->name &= 0xffff00ff; s->name |= val << 8; break; \
1661 case addr + 2: s->name &= 0xff00ffff; s->name |= val << 16; break; \
1662 case addr + 3: s->name &= 0x00ffffff; s->name |= val << 24; break;
1664 #ifdef DEBUG_LSI_REG
1665 DPRINTF("Write reg %x = %02x\n", offset
, val
);
1668 case 0x00: /* SCNTL0 */
1670 if (val
& LSI_SCNTL0_START
) {
1671 BADF("Start sequence not implemented\n");
1674 case 0x01: /* SCNTL1 */
1675 s
->scntl1
= val
& ~LSI_SCNTL1_SST
;
1676 if (val
& LSI_SCNTL1_IARB
) {
1677 BADF("Immediate Arbritration not implemented\n");
1679 if (val
& LSI_SCNTL1_RST
) {
1680 if (!(s
->sstat0
& LSI_SSTAT0_RST
)) {
1683 QTAILQ_FOREACH(dev
, &s
->bus
.qbus
.children
, sibling
) {
1684 dev
->info
->reset(dev
);
1686 s
->sstat0
|= LSI_SSTAT0_RST
;
1687 lsi_script_scsi_interrupt(s
, LSI_SIST0_RST
, 0);
1690 s
->sstat0
&= ~LSI_SSTAT0_RST
;
1693 case 0x02: /* SCNTL2 */
1694 val
&= ~(LSI_SCNTL2_WSR
| LSI_SCNTL2_WSS
);
1697 case 0x03: /* SCNTL3 */
1700 case 0x04: /* SCID */
1703 case 0x05: /* SXFER */
1706 case 0x06: /* SDID */
1707 if ((val
& 0xf) != (s
->ssid
& 0xf))
1708 BADF("Destination ID does not match SSID\n");
1709 s
->sdid
= val
& 0xf;
1711 case 0x07: /* GPREG0 */
1713 case 0x08: /* SFBR */
1714 /* The CPU is not allowed to write to this register. However the
1715 SCRIPTS register move instructions are. */
1718 case 0x0a: case 0x0b:
1719 /* Openserver writes to these readonly registers on startup */
1721 case 0x0c: case 0x0d: case 0x0e: case 0x0f:
1722 /* Linux writes to these readonly registers on startup. */
1724 CASE_SET_REG32(dsa
, 0x10)
1725 case 0x14: /* ISTAT0 */
1726 s
->istat0
= (s
->istat0
& 0x0f) | (val
& 0xf0);
1727 if (val
& LSI_ISTAT0_ABRT
) {
1728 lsi_script_dma_interrupt(s
, LSI_DSTAT_ABRT
);
1730 if (val
& LSI_ISTAT0_INTF
) {
1731 s
->istat0
&= ~LSI_ISTAT0_INTF
;
1734 if (s
->waiting
== 1 && val
& LSI_ISTAT0_SIGP
) {
1735 DPRINTF("Woken by SIGP\n");
1738 lsi_execute_script(s
);
1740 if (val
& LSI_ISTAT0_SRST
) {
1744 case 0x16: /* MBOX0 */
1747 case 0x17: /* MBOX1 */
1750 case 0x1a: /* CTEST2 */
1751 s
->ctest2
= val
& LSI_CTEST2_PCICIE
;
1753 case 0x1b: /* CTEST3 */
1754 s
->ctest3
= val
& 0x0f;
1756 CASE_SET_REG32(temp
, 0x1c)
1757 case 0x21: /* CTEST4 */
1759 BADF("Unimplemented CTEST4-FBL 0x%x\n", val
);
1763 case 0x22: /* CTEST5 */
1764 if (val
& (LSI_CTEST5_ADCK
| LSI_CTEST5_BBCK
)) {
1765 BADF("CTEST5 DMA increment not implemented\n");
1769 CASE_SET_REG24(dbc
, 0x24)
1770 CASE_SET_REG32(dnad
, 0x28)
1771 case 0x2c: /* DSP[0:7] */
1772 s
->dsp
&= 0xffffff00;
1775 case 0x2d: /* DSP[8:15] */
1776 s
->dsp
&= 0xffff00ff;
1779 case 0x2e: /* DSP[16:23] */
1780 s
->dsp
&= 0xff00ffff;
1781 s
->dsp
|= val
<< 16;
1783 case 0x2f: /* DSP[24:31] */
1784 s
->dsp
&= 0x00ffffff;
1785 s
->dsp
|= val
<< 24;
1786 if ((s
->dmode
& LSI_DMODE_MAN
) == 0
1787 && (s
->istat1
& LSI_ISTAT1_SRUN
) == 0)
1788 lsi_execute_script(s
);
1790 CASE_SET_REG32(dsps
, 0x30)
1791 CASE_SET_REG32(scratch
[0], 0x34)
1792 case 0x38: /* DMODE */
1793 if (val
& (LSI_DMODE_SIOM
| LSI_DMODE_DIOM
)) {
1794 BADF("IO mappings not implemented\n");
1798 case 0x39: /* DIEN */
1802 case 0x3a: /* SBR */
1805 case 0x3b: /* DCNTL */
1806 s
->dcntl
= val
& ~(LSI_DCNTL_PFF
| LSI_DCNTL_STD
);
1807 if ((val
& LSI_DCNTL_STD
) && (s
->istat1
& LSI_ISTAT1_SRUN
) == 0)
1808 lsi_execute_script(s
);
1810 case 0x40: /* SIEN0 */
1814 case 0x41: /* SIEN1 */
1818 case 0x47: /* GPCNTL0 */
1820 case 0x48: /* STIME0 */
1823 case 0x49: /* STIME1 */
1825 DPRINTF("General purpose timer not implemented\n");
1826 /* ??? Raising the interrupt immediately seems to be sufficient
1827 to keep the FreeBSD driver happy. */
1828 lsi_script_scsi_interrupt(s
, 0, LSI_SIST1_GEN
);
1831 case 0x4a: /* RESPID0 */
1834 case 0x4b: /* RESPID1 */
1837 case 0x4d: /* STEST1 */
1840 case 0x4e: /* STEST2 */
1842 BADF("Low level mode not implemented\n");
1846 case 0x4f: /* STEST3 */
1848 BADF("SCSI FIFO test mode not implemented\n");
1852 case 0x56: /* CCNTL0 */
1855 case 0x57: /* CCNTL1 */
1858 CASE_SET_REG32(mmrs
, 0xa0)
1859 CASE_SET_REG32(mmws
, 0xa4)
1860 CASE_SET_REG32(sfs
, 0xa8)
1861 CASE_SET_REG32(drs
, 0xac)
1862 CASE_SET_REG32(sbms
, 0xb0)
1863 CASE_SET_REG32(dbms
, 0xb4)
1864 CASE_SET_REG32(dnad64
, 0xb8)
1865 CASE_SET_REG32(pmjad1
, 0xc0)
1866 CASE_SET_REG32(pmjad2
, 0xc4)
1867 CASE_SET_REG32(rbc
, 0xc8)
1868 CASE_SET_REG32(ua
, 0xcc)
1869 CASE_SET_REG32(ia
, 0xd4)
1870 CASE_SET_REG32(sbc
, 0xd8)
1871 CASE_SET_REG32(csbc
, 0xdc)
1873 if (offset
>= 0x5c && offset
< 0xa0) {
1876 n
= (offset
- 0x58) >> 2;
1877 shift
= (offset
& 3) * 8;
1878 s
->scratch
[n
] &= ~(0xff << shift
);
1879 s
->scratch
[n
] |= (val
& 0xff) << shift
;
1881 BADF("Unhandled writeb 0x%x = 0x%x\n", offset
, val
);
1884 #undef CASE_SET_REG24
1885 #undef CASE_SET_REG32
1888 static void lsi_mmio_write(void *opaque
, target_phys_addr_t addr
,
1889 uint64_t val
, unsigned size
)
1891 LSIState
*s
= opaque
;
1893 lsi_reg_writeb(s
, addr
& 0xff, val
);
1896 static uint64_t lsi_mmio_read(void *opaque
, target_phys_addr_t addr
,
1899 LSIState
*s
= opaque
;
1901 return lsi_reg_readb(s
, addr
& 0xff);
1904 static const MemoryRegionOps lsi_mmio_ops
= {
1905 .read
= lsi_mmio_read
,
1906 .write
= lsi_mmio_write
,
1907 .endianness
= DEVICE_NATIVE_ENDIAN
,
1909 .min_access_size
= 1,
1910 .max_access_size
= 1,
1914 static void lsi_ram_write(void *opaque
, target_phys_addr_t addr
,
1915 uint64_t val
, unsigned size
)
1917 LSIState
*s
= opaque
;
1922 newval
= s
->script_ram
[addr
>> 2];
1923 shift
= (addr
& 3) * 8;
1924 mask
= ((uint64_t)1 << (size
* 8)) - 1;
1925 newval
&= ~(mask
<< shift
);
1926 newval
|= val
<< shift
;
1927 s
->script_ram
[addr
>> 2] = newval
;
1930 static uint64_t lsi_ram_read(void *opaque
, target_phys_addr_t addr
,
1933 LSIState
*s
= opaque
;
1937 val
= s
->script_ram
[addr
>> 2];
1938 mask
= ((uint64_t)1 << (size
* 8)) - 1;
1939 val
>>= (addr
& 3) * 8;
1943 static const MemoryRegionOps lsi_ram_ops
= {
1944 .read
= lsi_ram_read
,
1945 .write
= lsi_ram_write
,
1946 .endianness
= DEVICE_NATIVE_ENDIAN
,
1949 static uint64_t lsi_io_read(void *opaque
, target_phys_addr_t addr
,
1952 LSIState
*s
= opaque
;
1953 return lsi_reg_readb(s
, addr
& 0xff);
1956 static void lsi_io_write(void *opaque
, target_phys_addr_t addr
,
1957 uint64_t val
, unsigned size
)
1959 LSIState
*s
= opaque
;
1960 lsi_reg_writeb(s
, addr
& 0xff, val
);
1963 static const MemoryRegionOps lsi_io_ops
= {
1964 .read
= lsi_io_read
,
1965 .write
= lsi_io_write
,
1966 .endianness
= DEVICE_NATIVE_ENDIAN
,
1968 .min_access_size
= 1,
1969 .max_access_size
= 1,
1973 static void lsi_scsi_reset(DeviceState
*dev
)
1975 LSIState
*s
= DO_UPCAST(LSIState
, dev
.qdev
, dev
);
1980 static void lsi_pre_save(void *opaque
)
1982 LSIState
*s
= opaque
;
1985 assert(s
->current
->dma_buf
== NULL
);
1986 assert(s
->current
->dma_len
== 0);
1988 assert(QTAILQ_EMPTY(&s
->queue
));
1991 static const VMStateDescription vmstate_lsi_scsi
= {
1994 .minimum_version_id
= 0,
1995 .minimum_version_id_old
= 0,
1996 .pre_save
= lsi_pre_save
,
1997 .fields
= (VMStateField
[]) {
1998 VMSTATE_PCI_DEVICE(dev
, LSIState
),
2000 VMSTATE_INT32(carry
, LSIState
),
2001 VMSTATE_INT32(status
, LSIState
),
2002 VMSTATE_INT32(msg_action
, LSIState
),
2003 VMSTATE_INT32(msg_len
, LSIState
),
2004 VMSTATE_BUFFER(msg
, LSIState
),
2005 VMSTATE_INT32(waiting
, LSIState
),
2007 VMSTATE_UINT32(dsa
, LSIState
),
2008 VMSTATE_UINT32(temp
, LSIState
),
2009 VMSTATE_UINT32(dnad
, LSIState
),
2010 VMSTATE_UINT32(dbc
, LSIState
),
2011 VMSTATE_UINT8(istat0
, LSIState
),
2012 VMSTATE_UINT8(istat1
, LSIState
),
2013 VMSTATE_UINT8(dcmd
, LSIState
),
2014 VMSTATE_UINT8(dstat
, LSIState
),
2015 VMSTATE_UINT8(dien
, LSIState
),
2016 VMSTATE_UINT8(sist0
, LSIState
),
2017 VMSTATE_UINT8(sist1
, LSIState
),
2018 VMSTATE_UINT8(sien0
, LSIState
),
2019 VMSTATE_UINT8(sien1
, LSIState
),
2020 VMSTATE_UINT8(mbox0
, LSIState
),
2021 VMSTATE_UINT8(mbox1
, LSIState
),
2022 VMSTATE_UINT8(dfifo
, LSIState
),
2023 VMSTATE_UINT8(ctest2
, LSIState
),
2024 VMSTATE_UINT8(ctest3
, LSIState
),
2025 VMSTATE_UINT8(ctest4
, LSIState
),
2026 VMSTATE_UINT8(ctest5
, LSIState
),
2027 VMSTATE_UINT8(ccntl0
, LSIState
),
2028 VMSTATE_UINT8(ccntl1
, LSIState
),
2029 VMSTATE_UINT32(dsp
, LSIState
),
2030 VMSTATE_UINT32(dsps
, LSIState
),
2031 VMSTATE_UINT8(dmode
, LSIState
),
2032 VMSTATE_UINT8(dcntl
, LSIState
),
2033 VMSTATE_UINT8(scntl0
, LSIState
),
2034 VMSTATE_UINT8(scntl1
, LSIState
),
2035 VMSTATE_UINT8(scntl2
, LSIState
),
2036 VMSTATE_UINT8(scntl3
, LSIState
),
2037 VMSTATE_UINT8(sstat0
, LSIState
),
2038 VMSTATE_UINT8(sstat1
, LSIState
),
2039 VMSTATE_UINT8(scid
, LSIState
),
2040 VMSTATE_UINT8(sxfer
, LSIState
),
2041 VMSTATE_UINT8(socl
, LSIState
),
2042 VMSTATE_UINT8(sdid
, LSIState
),
2043 VMSTATE_UINT8(ssid
, LSIState
),
2044 VMSTATE_UINT8(sfbr
, LSIState
),
2045 VMSTATE_UINT8(stest1
, LSIState
),
2046 VMSTATE_UINT8(stest2
, LSIState
),
2047 VMSTATE_UINT8(stest3
, LSIState
),
2048 VMSTATE_UINT8(sidl
, LSIState
),
2049 VMSTATE_UINT8(stime0
, LSIState
),
2050 VMSTATE_UINT8(respid0
, LSIState
),
2051 VMSTATE_UINT8(respid1
, LSIState
),
2052 VMSTATE_UINT32(mmrs
, LSIState
),
2053 VMSTATE_UINT32(mmws
, LSIState
),
2054 VMSTATE_UINT32(sfs
, LSIState
),
2055 VMSTATE_UINT32(drs
, LSIState
),
2056 VMSTATE_UINT32(sbms
, LSIState
),
2057 VMSTATE_UINT32(dbms
, LSIState
),
2058 VMSTATE_UINT32(dnad64
, LSIState
),
2059 VMSTATE_UINT32(pmjad1
, LSIState
),
2060 VMSTATE_UINT32(pmjad2
, LSIState
),
2061 VMSTATE_UINT32(rbc
, LSIState
),
2062 VMSTATE_UINT32(ua
, LSIState
),
2063 VMSTATE_UINT32(ia
, LSIState
),
2064 VMSTATE_UINT32(sbc
, LSIState
),
2065 VMSTATE_UINT32(csbc
, LSIState
),
2066 VMSTATE_BUFFER_UNSAFE(scratch
, LSIState
, 0, 18 * sizeof(uint32_t)),
2067 VMSTATE_UINT8(sbr
, LSIState
),
2069 VMSTATE_BUFFER_UNSAFE(script_ram
, LSIState
, 0, 2048 * sizeof(uint32_t)),
2070 VMSTATE_END_OF_LIST()
2074 static int lsi_scsi_uninit(PCIDevice
*d
)
2076 LSIState
*s
= DO_UPCAST(LSIState
, dev
, d
);
2078 memory_region_destroy(&s
->mmio_io
);
2079 memory_region_destroy(&s
->ram_io
);
2080 memory_region_destroy(&s
->io_io
);
2085 static const struct SCSIBusInfo lsi_scsi_info
= {
2087 .max_target
= LSI_MAX_DEVS
,
2088 .max_lun
= 0, /* LUN support is buggy */
2090 .transfer_data
= lsi_transfer_data
,
2091 .complete
= lsi_command_complete
,
2092 .cancel
= lsi_request_cancelled
2095 static int lsi_scsi_init(PCIDevice
*dev
)
2097 LSIState
*s
= DO_UPCAST(LSIState
, dev
, dev
);
2100 pci_conf
= s
->dev
.config
;
2102 /* PCI latency timer = 255 */
2103 pci_conf
[PCI_LATENCY_TIMER
] = 0xff;
2104 /* Interrupt pin A */
2105 pci_conf
[PCI_INTERRUPT_PIN
] = 0x01;
2107 memory_region_init_io(&s
->mmio_io
, &lsi_mmio_ops
, s
, "lsi-mmio", 0x400);
2108 memory_region_init_io(&s
->ram_io
, &lsi_ram_ops
, s
, "lsi-ram", 0x2000);
2109 memory_region_init_io(&s
->io_io
, &lsi_io_ops
, s
, "lsi-io", 256);
2111 pci_register_bar(&s
->dev
, 0, PCI_BASE_ADDRESS_SPACE_IO
, &s
->io_io
);
2112 pci_register_bar(&s
->dev
, 1, 0, &s
->mmio_io
);
2113 pci_register_bar(&s
->dev
, 2, PCI_BASE_ADDRESS_SPACE_MEMORY
, &s
->ram_io
);
2114 QTAILQ_INIT(&s
->queue
);
2116 scsi_bus_new(&s
->bus
, &dev
->qdev
, &lsi_scsi_info
);
2117 if (!dev
->qdev
.hotplugged
) {
2118 return scsi_bus_legacy_handle_cmdline(&s
->bus
);
2123 static PCIDeviceInfo lsi_info
= {
2124 .qdev
.name
= "lsi53c895a",
2125 .qdev
.alias
= "lsi",
2126 .qdev
.size
= sizeof(LSIState
),
2127 .qdev
.reset
= lsi_scsi_reset
,
2128 .qdev
.vmsd
= &vmstate_lsi_scsi
,
2129 .init
= lsi_scsi_init
,
2130 .exit
= lsi_scsi_uninit
,
2131 .vendor_id
= PCI_VENDOR_ID_LSI_LOGIC
,
2132 .device_id
= PCI_DEVICE_ID_LSI_53C895A
,
2133 .class_id
= PCI_CLASS_STORAGE_SCSI
,
2134 .subsystem_id
= 0x1000,
2137 static void lsi53c895a_register_devices(void)
2139 pci_qdev_register(&lsi_info
);
2142 device_init(lsi53c895a_register_devices
);