2 * QEMU LSI53C895A SCSI Host Bus Adapter emulation
4 * Copyright (c) 2006 CodeSourcery.
5 * Written by Paul Brook
7 * This code is licenced 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"
21 //#define DEBUG_LSI_REG
24 #define DPRINTF(fmt, ...) \
25 do { printf("lsi_scsi: " fmt , ## __VA_ARGS__); } while (0)
26 #define BADF(fmt, ...) \
27 do { fprintf(stderr, "lsi_scsi: error: " fmt , ## __VA_ARGS__); exit(1);} while (0)
29 #define DPRINTF(fmt, ...) do {} while(0)
30 #define BADF(fmt, ...) \
31 do { fprintf(stderr, "lsi_scsi: error: " fmt , ## __VA_ARGS__);} while (0)
34 #define LSI_MAX_DEVS 7
36 #define LSI_SCNTL0_TRG 0x01
37 #define LSI_SCNTL0_AAP 0x02
38 #define LSI_SCNTL0_EPC 0x08
39 #define LSI_SCNTL0_WATN 0x10
40 #define LSI_SCNTL0_START 0x20
42 #define LSI_SCNTL1_SST 0x01
43 #define LSI_SCNTL1_IARB 0x02
44 #define LSI_SCNTL1_AESP 0x04
45 #define LSI_SCNTL1_RST 0x08
46 #define LSI_SCNTL1_CON 0x10
47 #define LSI_SCNTL1_DHP 0x20
48 #define LSI_SCNTL1_ADB 0x40
49 #define LSI_SCNTL1_EXC 0x80
51 #define LSI_SCNTL2_WSR 0x01
52 #define LSI_SCNTL2_VUE0 0x02
53 #define LSI_SCNTL2_VUE1 0x04
54 #define LSI_SCNTL2_WSS 0x08
55 #define LSI_SCNTL2_SLPHBEN 0x10
56 #define LSI_SCNTL2_SLPMD 0x20
57 #define LSI_SCNTL2_CHM 0x40
58 #define LSI_SCNTL2_SDU 0x80
60 #define LSI_ISTAT0_DIP 0x01
61 #define LSI_ISTAT0_SIP 0x02
62 #define LSI_ISTAT0_INTF 0x04
63 #define LSI_ISTAT0_CON 0x08
64 #define LSI_ISTAT0_SEM 0x10
65 #define LSI_ISTAT0_SIGP 0x20
66 #define LSI_ISTAT0_SRST 0x40
67 #define LSI_ISTAT0_ABRT 0x80
69 #define LSI_ISTAT1_SI 0x01
70 #define LSI_ISTAT1_SRUN 0x02
71 #define LSI_ISTAT1_FLSH 0x04
73 #define LSI_SSTAT0_SDP0 0x01
74 #define LSI_SSTAT0_RST 0x02
75 #define LSI_SSTAT0_WOA 0x04
76 #define LSI_SSTAT0_LOA 0x08
77 #define LSI_SSTAT0_AIP 0x10
78 #define LSI_SSTAT0_OLF 0x20
79 #define LSI_SSTAT0_ORF 0x40
80 #define LSI_SSTAT0_ILF 0x80
82 #define LSI_SIST0_PAR 0x01
83 #define LSI_SIST0_RST 0x02
84 #define LSI_SIST0_UDC 0x04
85 #define LSI_SIST0_SGE 0x08
86 #define LSI_SIST0_RSL 0x10
87 #define LSI_SIST0_SEL 0x20
88 #define LSI_SIST0_CMP 0x40
89 #define LSI_SIST0_MA 0x80
91 #define LSI_SIST1_HTH 0x01
92 #define LSI_SIST1_GEN 0x02
93 #define LSI_SIST1_STO 0x04
94 #define LSI_SIST1_SBMC 0x10
96 #define LSI_SOCL_IO 0x01
97 #define LSI_SOCL_CD 0x02
98 #define LSI_SOCL_MSG 0x04
99 #define LSI_SOCL_ATN 0x08
100 #define LSI_SOCL_SEL 0x10
101 #define LSI_SOCL_BSY 0x20
102 #define LSI_SOCL_ACK 0x40
103 #define LSI_SOCL_REQ 0x80
105 #define LSI_DSTAT_IID 0x01
106 #define LSI_DSTAT_SIR 0x04
107 #define LSI_DSTAT_SSI 0x08
108 #define LSI_DSTAT_ABRT 0x10
109 #define LSI_DSTAT_BF 0x20
110 #define LSI_DSTAT_MDPE 0x40
111 #define LSI_DSTAT_DFE 0x80
113 #define LSI_DCNTL_COM 0x01
114 #define LSI_DCNTL_IRQD 0x02
115 #define LSI_DCNTL_STD 0x04
116 #define LSI_DCNTL_IRQM 0x08
117 #define LSI_DCNTL_SSM 0x10
118 #define LSI_DCNTL_PFEN 0x20
119 #define LSI_DCNTL_PFF 0x40
120 #define LSI_DCNTL_CLSE 0x80
122 #define LSI_DMODE_MAN 0x01
123 #define LSI_DMODE_BOF 0x02
124 #define LSI_DMODE_ERMP 0x04
125 #define LSI_DMODE_ERL 0x08
126 #define LSI_DMODE_DIOM 0x10
127 #define LSI_DMODE_SIOM 0x20
129 #define LSI_CTEST2_DACK 0x01
130 #define LSI_CTEST2_DREQ 0x02
131 #define LSI_CTEST2_TEOP 0x04
132 #define LSI_CTEST2_PCICIE 0x08
133 #define LSI_CTEST2_CM 0x10
134 #define LSI_CTEST2_CIO 0x20
135 #define LSI_CTEST2_SIGP 0x40
136 #define LSI_CTEST2_DDIR 0x80
138 #define LSI_CTEST5_BL2 0x04
139 #define LSI_CTEST5_DDIR 0x08
140 #define LSI_CTEST5_MASR 0x10
141 #define LSI_CTEST5_DFSN 0x20
142 #define LSI_CTEST5_BBCK 0x40
143 #define LSI_CTEST5_ADCK 0x80
145 #define LSI_CCNTL0_DILS 0x01
146 #define LSI_CCNTL0_DISFC 0x10
147 #define LSI_CCNTL0_ENNDJ 0x20
148 #define LSI_CCNTL0_PMJCTL 0x40
149 #define LSI_CCNTL0_ENPMJ 0x80
151 #define LSI_CCNTL1_EN64DBMV 0x01
152 #define LSI_CCNTL1_EN64TIBMV 0x02
153 #define LSI_CCNTL1_64TIMOD 0x04
154 #define LSI_CCNTL1_DDAC 0x08
155 #define LSI_CCNTL1_ZMOD 0x80
157 /* Enable Response to Reselection */
158 #define LSI_SCID_RRE 0x60
160 #define LSI_CCNTL1_40BIT (LSI_CCNTL1_EN64TIBMV|LSI_CCNTL1_64TIMOD)
170 /* Maximum length of MSG IN data. */
171 #define LSI_MAX_MSGIN_LEN 8
173 /* Flag set if this is a tagged command. */
174 #define LSI_TAG_VALID (1 << 16)
176 typedef struct lsi_request
{
183 QTAILQ_ENTRY(lsi_request
) next
;
190 uint32_t script_ram_base
;
192 int carry
; /* ??? Should this be an a visible register somewhere? */
194 /* Action to take at the end of a MSG IN phase.
195 0 = COMMAND, 1 = disconnect, 2 = DATA OUT, 3 = DATA IN. */
198 uint8_t msg
[LSI_MAX_MSGIN_LEN
];
199 /* 0 if SCRIPTS are running or stopped.
200 * 1 if a Wait Reselect instruction has been issued.
201 * 2 if processing DMA from lsi_execute_script.
202 * 3 if a DMA operation is in progress. */
205 SCSIDevice
*select_dev
;
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
)
294 memset(s
->scratch
, 0, sizeof(s
->scratch
));
350 static int lsi_dma_40bit(LSIState
*s
)
352 if ((s
->ccntl1
& LSI_CCNTL1_40BIT
) == LSI_CCNTL1_40BIT
)
357 static int lsi_dma_ti64bit(LSIState
*s
)
359 if ((s
->ccntl1
& LSI_CCNTL1_EN64TIBMV
) == LSI_CCNTL1_EN64TIBMV
)
364 static int lsi_dma_64bit(LSIState
*s
)
366 if ((s
->ccntl1
& LSI_CCNTL1_EN64DBMV
) == LSI_CCNTL1_EN64DBMV
)
371 static uint8_t lsi_reg_readb(LSIState
*s
, int offset
);
372 static void lsi_reg_writeb(LSIState
*s
, int offset
, uint8_t val
);
373 static void lsi_execute_script(LSIState
*s
);
374 static void lsi_reselect(LSIState
*s
, lsi_request
*p
);
376 static inline uint32_t read_dword(LSIState
*s
, uint32_t addr
)
380 /* Optimize reading from SCRIPTS RAM. */
381 if ((addr
& 0xffffe000) == s
->script_ram_base
) {
382 return s
->script_ram
[(addr
& 0x1fff) >> 2];
384 cpu_physical_memory_read(addr
, (uint8_t *)&buf
, 4);
385 return cpu_to_le32(buf
);
388 static void lsi_stop_script(LSIState
*s
)
390 s
->istat1
&= ~LSI_ISTAT1_SRUN
;
393 static void lsi_update_irq(LSIState
*s
)
396 static int last_level
;
399 /* It's unclear whether the DIP/SIP bits should be cleared when the
400 Interrupt Status Registers are cleared or when istat0 is read.
401 We currently do the formwer, which seems to work. */
404 if (s
->dstat
& s
->dien
)
406 s
->istat0
|= LSI_ISTAT0_DIP
;
408 s
->istat0
&= ~LSI_ISTAT0_DIP
;
411 if (s
->sist0
|| s
->sist1
) {
412 if ((s
->sist0
& s
->sien0
) || (s
->sist1
& s
->sien1
))
414 s
->istat0
|= LSI_ISTAT0_SIP
;
416 s
->istat0
&= ~LSI_ISTAT0_SIP
;
418 if (s
->istat0
& LSI_ISTAT0_INTF
)
421 if (level
!= last_level
) {
422 DPRINTF("Update IRQ level %d dstat %02x sist %02x%02x\n",
423 level
, s
->dstat
, s
->sist1
, s
->sist0
);
426 qemu_set_irq(s
->dev
.irq
[0], level
);
428 if (!level
&& lsi_irq_on_rsl(s
) && !(s
->scntl1
& LSI_SCNTL1_CON
)) {
429 DPRINTF("Handled IRQs & disconnected, looking for pending "
431 QTAILQ_FOREACH(p
, &s
->queue
, next
) {
440 /* Stop SCRIPTS execution and raise a SCSI interrupt. */
441 static void lsi_script_scsi_interrupt(LSIState
*s
, int stat0
, int stat1
)
446 DPRINTF("SCSI Interrupt 0x%02x%02x prev 0x%02x%02x\n",
447 stat1
, stat0
, s
->sist1
, s
->sist0
);
450 /* Stop processor on fatal or unmasked interrupt. As a special hack
451 we don't stop processing when raising STO. Instead continue
452 execution and stop at the next insn that accesses the SCSI bus. */
453 mask0
= s
->sien0
| ~(LSI_SIST0_CMP
| LSI_SIST0_SEL
| LSI_SIST0_RSL
);
454 mask1
= s
->sien1
| ~(LSI_SIST1_GEN
| LSI_SIST1_HTH
);
455 mask1
&= ~LSI_SIST1_STO
;
456 if (s
->sist0
& mask0
|| s
->sist1
& mask1
) {
462 /* Stop SCRIPTS execution and raise a DMA interrupt. */
463 static void lsi_script_dma_interrupt(LSIState
*s
, int stat
)
465 DPRINTF("DMA Interrupt 0x%x prev 0x%x\n", stat
, s
->dstat
);
471 static inline void lsi_set_phase(LSIState
*s
, int phase
)
473 s
->sstat1
= (s
->sstat1
& ~PHASE_MASK
) | phase
;
476 static void lsi_bad_phase(LSIState
*s
, int out
, int new_phase
)
478 /* Trigger a phase mismatch. */
479 if (s
->ccntl0
& LSI_CCNTL0_ENPMJ
) {
480 if ((s
->ccntl0
& LSI_CCNTL0_PMJCTL
) || out
) {
485 DPRINTF("Data phase mismatch jump to %08x\n", s
->dsp
);
487 DPRINTF("Phase mismatch interrupt\n");
488 lsi_script_scsi_interrupt(s
, LSI_SIST0_MA
, 0);
491 lsi_set_phase(s
, new_phase
);
495 /* Resume SCRIPTS execution after a DMA operation. */
496 static void lsi_resume_script(LSIState
*s
)
498 if (s
->waiting
!= 2) {
500 lsi_execute_script(s
);
506 /* Initiate a SCSI layer data transfer. */
507 static void lsi_do_dma(LSIState
*s
, int out
)
510 target_phys_addr_t addr
;
513 if (!s
->current
->dma_len
) {
514 /* Wait until data is available. */
515 DPRINTF("DMA no data available\n");
520 if (count
> s
->current
->dma_len
)
521 count
= s
->current
->dma_len
;
524 /* both 40 and Table Indirect 64-bit DMAs store upper bits in dnad64 */
525 if (lsi_dma_40bit(s
) || lsi_dma_ti64bit(s
))
526 addr
|= ((uint64_t)s
->dnad64
<< 32);
528 addr
|= ((uint64_t)s
->dbms
<< 32);
530 addr
|= ((uint64_t)s
->sbms
<< 32);
532 DPRINTF("DMA addr=0x" TARGET_FMT_plx
" len=%d\n", addr
, count
);
537 if (s
->current
->dma_buf
== NULL
) {
538 s
->current
->dma_buf
= s
->current
->dev
->info
->get_buf(s
->current
->dev
,
542 /* ??? Set SFBR to first data byte. */
544 cpu_physical_memory_read(addr
, s
->current
->dma_buf
, count
);
546 cpu_physical_memory_write(addr
, s
->current
->dma_buf
, count
);
548 s
->current
->dma_len
-= count
;
549 if (s
->current
->dma_len
== 0) {
550 s
->current
->dma_buf
= NULL
;
552 /* Write the data. */
553 s
->current
->dev
->info
->write_data(s
->current
->dev
, s
->current
->tag
);
555 /* Request any remaining data. */
556 s
->current
->dev
->info
->read_data(s
->current
->dev
, s
->current
->tag
);
559 s
->current
->dma_buf
+= count
;
560 lsi_resume_script(s
);
565 /* Add a command to the queue. */
566 static void lsi_queue_command(LSIState
*s
)
568 lsi_request
*p
= s
->current
;
570 DPRINTF("Queueing tag=0x%x\n", s
->current_tag
);
571 assert(s
->current
!= NULL
);
572 assert(s
->current
->dma_len
== 0);
573 QTAILQ_INSERT_TAIL(&s
->queue
, s
->current
, next
);
577 p
->out
= (s
->sstat1
& PHASE_MASK
) == PHASE_DO
;
580 /* Queue a byte for a MSG IN phase. */
581 static void lsi_add_msg_byte(LSIState
*s
, uint8_t data
)
583 if (s
->msg_len
>= LSI_MAX_MSGIN_LEN
) {
584 BADF("MSG IN data too long\n");
586 DPRINTF("MSG IN 0x%02x\n", data
);
587 s
->msg
[s
->msg_len
++] = data
;
591 /* Perform reselection to continue a command. */
592 static void lsi_reselect(LSIState
*s
, lsi_request
*p
)
596 assert(s
->current
== NULL
);
597 QTAILQ_REMOVE(&s
->queue
, p
, next
);
600 id
= (p
->tag
>> 8) & 0xf;
602 /* LSI53C700 Family Compatibility, see LSI53C895A 4-73 */
603 if (!(s
->dcntl
& LSI_DCNTL_COM
)) {
604 s
->sfbr
= 1 << (id
& 0x7);
606 DPRINTF("Reselected target %d\n", id
);
607 s
->scntl1
|= LSI_SCNTL1_CON
;
608 lsi_set_phase(s
, PHASE_MI
);
609 s
->msg_action
= p
->out
? 2 : 3;
610 s
->current
->dma_len
= p
->pending
;
611 lsi_add_msg_byte(s
, 0x80);
612 if (s
->current
->tag
& LSI_TAG_VALID
) {
613 lsi_add_msg_byte(s
, 0x20);
614 lsi_add_msg_byte(s
, p
->tag
& 0xff);
617 if (lsi_irq_on_rsl(s
)) {
618 lsi_script_scsi_interrupt(s
, LSI_SIST0_RSL
, 0);
622 /* Record that data is available for a queued command. Returns zero if
623 the device was reselected, nonzero if the IO is deferred. */
624 static int lsi_queue_tag(LSIState
*s
, uint32_t tag
, uint32_t arg
)
628 QTAILQ_FOREACH(p
, &s
->queue
, next
) {
631 BADF("Multiple IO pending for tag %d\n", tag
);
634 /* Reselect if waiting for it, or if reselection triggers an IRQ
636 Since no interrupt stacking is implemented in the emulation, it
637 is also required that there are no pending interrupts waiting
638 for service from the device driver. */
639 if (s
->waiting
== 1 ||
640 (lsi_irq_on_rsl(s
) && !(s
->scntl1
& LSI_SCNTL1_CON
) &&
641 !(s
->istat0
& (LSI_ISTAT0_SIP
| LSI_ISTAT0_DIP
)))) {
642 /* Reselect device. */
646 DPRINTF("Queueing IO tag=0x%x\n", tag
);
652 BADF("IO with unknown tag %d\n", tag
);
656 /* Callback to indicate that the SCSI layer has completed a transfer. */
657 static void lsi_command_complete(SCSIBus
*bus
, int reason
, uint32_t tag
,
660 LSIState
*s
= DO_UPCAST(LSIState
, dev
.qdev
, bus
->qbus
.parent
);
663 out
= (s
->sstat1
& PHASE_MASK
) == PHASE_DO
;
664 if (reason
== SCSI_REASON_DONE
) {
665 DPRINTF("Command complete sense=%d\n", (int)arg
);
667 s
->command_complete
= 2;
668 if (s
->waiting
&& s
->dbc
!= 0) {
669 /* Raise phase mismatch for short transfers. */
670 lsi_bad_phase(s
, out
, PHASE_ST
);
672 lsi_set_phase(s
, PHASE_ST
);
675 qemu_free(s
->current
);
678 lsi_resume_script(s
);
682 if (s
->waiting
== 1 || !s
->current
|| tag
!= s
->current
->tag
||
683 (lsi_irq_on_rsl(s
) && !(s
->scntl1
& LSI_SCNTL1_CON
))) {
684 if (lsi_queue_tag(s
, tag
, arg
))
688 /* host adapter (re)connected */
689 DPRINTF("Data ready tag=0x%x len=%d\n", tag
, arg
);
690 s
->current
->dma_len
= arg
;
691 s
->command_complete
= 1;
694 if (s
->waiting
== 1 || s
->dbc
== 0) {
695 lsi_resume_script(s
);
701 static void lsi_do_command(LSIState
*s
)
706 DPRINTF("Send command len=%d\n", s
->dbc
);
709 cpu_physical_memory_read(s
->dnad
, buf
, s
->dbc
);
711 s
->command_complete
= 0;
713 assert(s
->current
== NULL
);
714 s
->current
= qemu_mallocz(sizeof(lsi_request
));
715 s
->current
->tag
= s
->select_tag
;
716 s
->current
->dev
= s
->select_dev
;
718 n
= s
->current
->dev
->info
->send_command(s
->current
->dev
, s
->current
->tag
, buf
,
721 lsi_set_phase(s
, PHASE_DI
);
722 s
->current
->dev
->info
->read_data(s
->current
->dev
, s
->current
->tag
);
724 lsi_set_phase(s
, PHASE_DO
);
725 s
->current
->dev
->info
->write_data(s
->current
->dev
, s
->current
->tag
);
728 if (!s
->command_complete
) {
730 /* Command did not complete immediately so disconnect. */
731 lsi_add_msg_byte(s
, 2); /* SAVE DATA POINTER */
732 lsi_add_msg_byte(s
, 4); /* DISCONNECT */
734 lsi_set_phase(s
, PHASE_MI
);
736 lsi_queue_command(s
);
738 /* wait command complete */
739 lsi_set_phase(s
, PHASE_DI
);
744 static void lsi_do_status(LSIState
*s
)
747 DPRINTF("Get status len=%d sense=%d\n", s
->dbc
, s
->sense
);
749 BADF("Bad Status move\n");
753 cpu_physical_memory_write(s
->dnad
, &sense
, 1);
754 lsi_set_phase(s
, PHASE_MI
);
756 lsi_add_msg_byte(s
, 0); /* COMMAND COMPLETE */
759 static void lsi_disconnect(LSIState
*s
)
761 s
->scntl1
&= ~LSI_SCNTL1_CON
;
762 s
->sstat1
&= ~PHASE_MASK
;
765 static void lsi_do_msgin(LSIState
*s
)
768 DPRINTF("Message in len=%d/%d\n", s
->dbc
, s
->msg_len
);
773 cpu_physical_memory_write(s
->dnad
, s
->msg
, len
);
774 /* Linux drivers rely on the last byte being in the SIDL. */
775 s
->sidl
= s
->msg
[len
- 1];
778 memmove(s
->msg
, s
->msg
+ len
, s
->msg_len
);
780 /* ??? Check if ATN (not yet implemented) is asserted and maybe
781 switch to PHASE_MO. */
782 switch (s
->msg_action
) {
784 lsi_set_phase(s
, PHASE_CMD
);
790 lsi_set_phase(s
, PHASE_DO
);
793 lsi_set_phase(s
, PHASE_DI
);
801 /* Read the next byte during a MSGOUT phase. */
802 static uint8_t lsi_get_msgbyte(LSIState
*s
)
805 cpu_physical_memory_read(s
->dnad
, &data
, 1);
811 static void lsi_do_msgout(LSIState
*s
)
816 DPRINTF("MSG out len=%d\n", s
->dbc
);
818 msg
= lsi_get_msgbyte(s
);
823 DPRINTF("MSG: Disconnect\n");
827 DPRINTF("MSG: No Operation\n");
828 lsi_set_phase(s
, PHASE_CMD
);
831 len
= lsi_get_msgbyte(s
);
832 msg
= lsi_get_msgbyte(s
);
833 DPRINTF("Extended message 0x%x (len %d)\n", msg
, len
);
836 DPRINTF("SDTR (ignored)\n");
840 DPRINTF("WDTR (ignored)\n");
847 case 0x20: /* SIMPLE queue */
848 s
->select_tag
|= lsi_get_msgbyte(s
) | LSI_TAG_VALID
;
849 DPRINTF("SIMPLE queue tag=0x%x\n", s
->current_tag
& 0xff);
851 case 0x21: /* HEAD of queue */
852 BADF("HEAD queue not implemented\n");
853 s
->select_tag
|= lsi_get_msgbyte(s
) | LSI_TAG_VALID
;
855 case 0x22: /* ORDERED queue */
856 BADF("ORDERED queue not implemented\n");
857 s
->select_tag
|= lsi_get_msgbyte(s
) | LSI_TAG_VALID
;
860 if ((msg
& 0x80) == 0) {
863 s
->current_lun
= msg
& 7;
864 DPRINTF("Select LUN %d\n", s
->current_lun
);
865 lsi_set_phase(s
, PHASE_CMD
);
871 BADF("Unimplemented message 0x%02x\n", msg
);
872 lsi_set_phase(s
, PHASE_MI
);
873 lsi_add_msg_byte(s
, 7); /* MESSAGE REJECT */
877 /* Sign extend a 24-bit value. */
878 static inline int32_t sxt24(int32_t n
)
880 return (n
<< 8) >> 8;
883 #define LSI_BUF_SIZE 4096
884 static void lsi_memcpy(LSIState
*s
, uint32_t dest
, uint32_t src
, int count
)
887 uint8_t buf
[LSI_BUF_SIZE
];
889 DPRINTF("memcpy dest 0x%08x src 0x%08x count %d\n", dest
, src
, count
);
891 n
= (count
> LSI_BUF_SIZE
) ? LSI_BUF_SIZE
: count
;
892 cpu_physical_memory_read(src
, buf
, n
);
893 cpu_physical_memory_write(dest
, buf
, n
);
900 static void lsi_wait_reselect(LSIState
*s
)
904 DPRINTF("Wait Reselect\n");
906 QTAILQ_FOREACH(p
, &s
->queue
, next
) {
912 if (s
->current
== NULL
) {
917 static void lsi_execute_script(LSIState
*s
)
920 uint32_t addr
, addr_high
;
922 int insn_processed
= 0;
924 s
->istat1
|= LSI_ISTAT1_SRUN
;
927 insn
= read_dword(s
, s
->dsp
);
929 /* If we receive an empty opcode increment the DSP by 4 bytes
930 instead of 8 and execute the next opcode at that location */
934 addr
= read_dword(s
, s
->dsp
+ 4);
936 DPRINTF("SCRIPTS dsp=%08x opcode %08x arg %08x\n", s
->dsp
, insn
, addr
);
938 s
->dcmd
= insn
>> 24;
940 switch (insn
>> 30) {
941 case 0: /* Block move. */
942 if (s
->sist1
& LSI_SIST1_STO
) {
943 DPRINTF("Delayed select timeout\n");
947 s
->dbc
= insn
& 0xffffff;
951 if (insn
& (1 << 29)) {
952 /* Indirect addressing. */
953 addr
= read_dword(s
, addr
);
954 } else if (insn
& (1 << 28)) {
957 /* Table indirect addressing. */
959 /* 32-bit Table indirect */
960 offset
= sxt24(addr
);
961 cpu_physical_memory_read(s
->dsa
+ offset
, (uint8_t *)buf
, 8);
962 /* byte count is stored in bits 0:23 only */
963 s
->dbc
= cpu_to_le32(buf
[0]) & 0xffffff;
965 addr
= cpu_to_le32(buf
[1]);
967 /* 40-bit DMA, upper addr bits [39:32] stored in first DWORD of
968 * table, bits [31:24] */
969 if (lsi_dma_40bit(s
))
970 addr_high
= cpu_to_le32(buf
[0]) >> 24;
971 else if (lsi_dma_ti64bit(s
)) {
972 int selector
= (cpu_to_le32(buf
[0]) >> 24) & 0x1f;
975 /* offset index into scratch registers since
976 * TI64 mode can use registers C to R */
977 addr_high
= s
->scratch
[2 + selector
];
998 BADF("Illegal selector specified (0x%x > 0x15)"
999 " for 64-bit DMA block move", selector
);
1003 } else if (lsi_dma_64bit(s
)) {
1004 /* fetch a 3rd dword if 64-bit direct move is enabled and
1005 only if we're not doing table indirect or indirect addressing */
1006 s
->dbms
= read_dword(s
, s
->dsp
);
1008 s
->ia
= s
->dsp
- 12;
1010 if ((s
->sstat1
& PHASE_MASK
) != ((insn
>> 24) & 7)) {
1011 DPRINTF("Wrong phase got %d expected %d\n",
1012 s
->sstat1
& PHASE_MASK
, (insn
>> 24) & 7);
1013 lsi_script_scsi_interrupt(s
, LSI_SIST0_MA
, 0);
1017 s
->dnad64
= addr_high
;
1018 switch (s
->sstat1
& 0x7) {
1044 BADF("Unimplemented phase %d\n", s
->sstat1
& PHASE_MASK
);
1047 s
->dfifo
= s
->dbc
& 0xff;
1048 s
->ctest5
= (s
->ctest5
& 0xfc) | ((s
->dbc
>> 8) & 3);
1051 s
->ua
= addr
+ s
->dbc
;
1054 case 1: /* IO or Read/Write instruction. */
1055 opcode
= (insn
>> 27) & 7;
1059 if (insn
& (1 << 25)) {
1060 id
= read_dword(s
, s
->dsa
+ sxt24(insn
));
1064 id
= (id
>> 16) & 0xf;
1065 if (insn
& (1 << 26)) {
1066 addr
= s
->dsp
+ sxt24(addr
);
1070 case 0: /* Select */
1072 if (s
->scntl1
& LSI_SCNTL1_CON
) {
1073 DPRINTF("Already reselected, jumping to alternative address\n");
1077 s
->sstat0
|= LSI_SSTAT0_WOA
;
1078 s
->scntl1
&= ~LSI_SCNTL1_IARB
;
1079 if (id
>= LSI_MAX_DEVS
|| !s
->bus
.devs
[id
]) {
1080 DPRINTF("Selected absent target %d\n", id
);
1081 lsi_script_scsi_interrupt(s
, 0, LSI_SIST1_STO
);
1085 DPRINTF("Selected target %d%s\n",
1086 id
, insn
& (1 << 3) ? " ATN" : "");
1087 /* ??? Linux drivers compain when this is set. Maybe
1088 it only applies in low-level mode (unimplemented).
1089 lsi_script_scsi_interrupt(s, LSI_SIST0_CMP, 0); */
1090 s
->select_dev
= s
->bus
.devs
[id
];
1091 s
->select_tag
= id
<< 8;
1092 s
->scntl1
|= LSI_SCNTL1_CON
;
1093 if (insn
& (1 << 3)) {
1094 s
->socl
|= LSI_SOCL_ATN
;
1096 lsi_set_phase(s
, PHASE_MO
);
1098 case 1: /* Disconnect */
1099 DPRINTF("Wait Disconnect\n");
1100 s
->scntl1
&= ~LSI_SCNTL1_CON
;
1102 case 2: /* Wait Reselect */
1103 if (!lsi_irq_on_rsl(s
)) {
1104 lsi_wait_reselect(s
);
1108 DPRINTF("Set%s%s%s%s\n",
1109 insn
& (1 << 3) ? " ATN" : "",
1110 insn
& (1 << 6) ? " ACK" : "",
1111 insn
& (1 << 9) ? " TM" : "",
1112 insn
& (1 << 10) ? " CC" : "");
1113 if (insn
& (1 << 3)) {
1114 s
->socl
|= LSI_SOCL_ATN
;
1115 lsi_set_phase(s
, PHASE_MO
);
1117 if (insn
& (1 << 9)) {
1118 BADF("Target mode not implemented\n");
1121 if (insn
& (1 << 10))
1125 DPRINTF("Clear%s%s%s%s\n",
1126 insn
& (1 << 3) ? " ATN" : "",
1127 insn
& (1 << 6) ? " ACK" : "",
1128 insn
& (1 << 9) ? " TM" : "",
1129 insn
& (1 << 10) ? " CC" : "");
1130 if (insn
& (1 << 3)) {
1131 s
->socl
&= ~LSI_SOCL_ATN
;
1133 if (insn
& (1 << 10))
1144 static const char *opcode_names
[3] =
1145 {"Write", "Read", "Read-Modify-Write"};
1146 static const char *operator_names
[8] =
1147 {"MOV", "SHL", "OR", "XOR", "AND", "SHR", "ADD", "ADC"};
1150 reg
= ((insn
>> 16) & 0x7f) | (insn
& 0x80);
1151 data8
= (insn
>> 8) & 0xff;
1152 opcode
= (insn
>> 27) & 7;
1153 operator = (insn
>> 24) & 7;
1154 DPRINTF("%s reg 0x%x %s data8=0x%02x sfbr=0x%02x%s\n",
1155 opcode_names
[opcode
- 5], reg
,
1156 operator_names
[operator], data8
, s
->sfbr
,
1157 (insn
& (1 << 23)) ? " SFBR" : "");
1160 case 5: /* From SFBR */
1164 case 6: /* To SFBR */
1166 op0
= lsi_reg_readb(s
, reg
);
1169 case 7: /* Read-modify-write */
1171 op0
= lsi_reg_readb(s
, reg
);
1172 if (insn
& (1 << 23)) {
1184 case 1: /* Shift left */
1186 op0
= (op0
<< 1) | s
->carry
;
1200 op0
= (op0
>> 1) | (s
->carry
<< 7);
1205 s
->carry
= op0
< op1
;
1208 op0
+= op1
+ s
->carry
;
1210 s
->carry
= op0
<= op1
;
1212 s
->carry
= op0
< op1
;
1217 case 5: /* From SFBR */
1218 case 7: /* Read-modify-write */
1219 lsi_reg_writeb(s
, reg
, op0
);
1221 case 6: /* To SFBR */
1228 case 2: /* Transfer Control. */
1233 if ((insn
& 0x002e0000) == 0) {
1237 if (s
->sist1
& LSI_SIST1_STO
) {
1238 DPRINTF("Delayed select timeout\n");
1242 cond
= jmp
= (insn
& (1 << 19)) != 0;
1243 if (cond
== jmp
&& (insn
& (1 << 21))) {
1244 DPRINTF("Compare carry %d\n", s
->carry
== jmp
);
1245 cond
= s
->carry
!= 0;
1247 if (cond
== jmp
&& (insn
& (1 << 17))) {
1248 DPRINTF("Compare phase %d %c= %d\n",
1249 (s
->sstat1
& PHASE_MASK
),
1251 ((insn
>> 24) & 7));
1252 cond
= (s
->sstat1
& PHASE_MASK
) == ((insn
>> 24) & 7);
1254 if (cond
== jmp
&& (insn
& (1 << 18))) {
1257 mask
= (~insn
>> 8) & 0xff;
1258 DPRINTF("Compare data 0x%x & 0x%x %c= 0x%x\n",
1259 s
->sfbr
, mask
, jmp
? '=' : '!', insn
& mask
);
1260 cond
= (s
->sfbr
& mask
) == (insn
& mask
);
1263 if (insn
& (1 << 23)) {
1264 /* Relative address. */
1265 addr
= s
->dsp
+ sxt24(addr
);
1267 switch ((insn
>> 27) & 7) {
1269 DPRINTF("Jump to 0x%08x\n", addr
);
1273 DPRINTF("Call 0x%08x\n", addr
);
1277 case 2: /* Return */
1278 DPRINTF("Return to 0x%08x\n", s
->temp
);
1281 case 3: /* Interrupt */
1282 DPRINTF("Interrupt 0x%08x\n", s
->dsps
);
1283 if ((insn
& (1 << 20)) != 0) {
1284 s
->istat0
|= LSI_ISTAT0_INTF
;
1287 lsi_script_dma_interrupt(s
, LSI_DSTAT_SIR
);
1291 DPRINTF("Illegal transfer control\n");
1292 lsi_script_dma_interrupt(s
, LSI_DSTAT_IID
);
1296 DPRINTF("Control condition failed\n");
1302 if ((insn
& (1 << 29)) == 0) {
1305 /* ??? The docs imply the destination address is loaded into
1306 the TEMP register. However the Linux drivers rely on
1307 the value being presrved. */
1308 dest
= read_dword(s
, s
->dsp
);
1310 lsi_memcpy(s
, dest
, addr
, insn
& 0xffffff);
1317 if (insn
& (1 << 28)) {
1318 addr
= s
->dsa
+ sxt24(addr
);
1321 reg
= (insn
>> 16) & 0xff;
1322 if (insn
& (1 << 24)) {
1323 cpu_physical_memory_read(addr
, data
, n
);
1324 DPRINTF("Load reg 0x%x size %d addr 0x%08x = %08x\n", reg
, n
,
1325 addr
, *(int *)data
);
1326 for (i
= 0; i
< n
; i
++) {
1327 lsi_reg_writeb(s
, reg
+ i
, data
[i
]);
1330 DPRINTF("Store reg 0x%x size %d addr 0x%08x\n", reg
, n
, addr
);
1331 for (i
= 0; i
< n
; i
++) {
1332 data
[i
] = lsi_reg_readb(s
, reg
+ i
);
1334 cpu_physical_memory_write(addr
, data
, n
);
1338 if (insn_processed
> 10000 && !s
->waiting
) {
1339 /* Some windows drivers make the device spin waiting for a memory
1340 location to change. If we have been executed a lot of code then
1341 assume this is the case and force an unexpected device disconnect.
1342 This is apparently sufficient to beat the drivers into submission.
1344 if (!(s
->sien0
& LSI_SIST0_UDC
))
1345 fprintf(stderr
, "inf. loop with UDC masked\n");
1346 lsi_script_scsi_interrupt(s
, LSI_SIST0_UDC
, 0);
1348 } else if (s
->istat1
& LSI_ISTAT1_SRUN
&& !s
->waiting
) {
1349 if (s
->dcntl
& LSI_DCNTL_SSM
) {
1350 lsi_script_dma_interrupt(s
, LSI_DSTAT_SSI
);
1355 DPRINTF("SCRIPTS execution stopped\n");
1358 static uint8_t lsi_reg_readb(LSIState
*s
, int offset
)
1361 #define CASE_GET_REG24(name, addr) \
1362 case addr: return s->name & 0xff; \
1363 case addr + 1: return (s->name >> 8) & 0xff; \
1364 case addr + 2: return (s->name >> 16) & 0xff;
1366 #define CASE_GET_REG32(name, addr) \
1367 case addr: return s->name & 0xff; \
1368 case addr + 1: return (s->name >> 8) & 0xff; \
1369 case addr + 2: return (s->name >> 16) & 0xff; \
1370 case addr + 3: return (s->name >> 24) & 0xff;
1372 #ifdef DEBUG_LSI_REG
1373 DPRINTF("Read reg %x\n", offset
);
1376 case 0x00: /* SCNTL0 */
1378 case 0x01: /* SCNTL1 */
1380 case 0x02: /* SCNTL2 */
1382 case 0x03: /* SCNTL3 */
1384 case 0x04: /* SCID */
1386 case 0x05: /* SXFER */
1388 case 0x06: /* SDID */
1390 case 0x07: /* GPREG0 */
1392 case 0x08: /* Revision ID */
1394 case 0xa: /* SSID */
1396 case 0xb: /* SBCL */
1397 /* ??? This is not correct. However it's (hopefully) only
1398 used for diagnostics, so should be ok. */
1400 case 0xc: /* DSTAT */
1401 tmp
= s
->dstat
| 0x80;
1402 if ((s
->istat0
& LSI_ISTAT0_INTF
) == 0)
1406 case 0x0d: /* SSTAT0 */
1408 case 0x0e: /* SSTAT1 */
1410 case 0x0f: /* SSTAT2 */
1411 return s
->scntl1
& LSI_SCNTL1_CON
? 0 : 2;
1412 CASE_GET_REG32(dsa
, 0x10)
1413 case 0x14: /* ISTAT0 */
1415 case 0x15: /* ISTAT1 */
1417 case 0x16: /* MBOX0 */
1419 case 0x17: /* MBOX1 */
1421 case 0x18: /* CTEST0 */
1423 case 0x19: /* CTEST1 */
1425 case 0x1a: /* CTEST2 */
1426 tmp
= s
->ctest2
| LSI_CTEST2_DACK
| LSI_CTEST2_CM
;
1427 if (s
->istat0
& LSI_ISTAT0_SIGP
) {
1428 s
->istat0
&= ~LSI_ISTAT0_SIGP
;
1429 tmp
|= LSI_CTEST2_SIGP
;
1432 case 0x1b: /* CTEST3 */
1434 CASE_GET_REG32(temp
, 0x1c)
1435 case 0x20: /* DFIFO */
1437 case 0x21: /* CTEST4 */
1439 case 0x22: /* CTEST5 */
1441 case 0x23: /* CTEST6 */
1443 CASE_GET_REG24(dbc
, 0x24)
1444 case 0x27: /* DCMD */
1446 CASE_GET_REG32(dnad
, 0x28)
1447 CASE_GET_REG32(dsp
, 0x2c)
1448 CASE_GET_REG32(dsps
, 0x30)
1449 CASE_GET_REG32(scratch
[0], 0x34)
1450 case 0x38: /* DMODE */
1452 case 0x39: /* DIEN */
1454 case 0x3a: /* SBR */
1456 case 0x3b: /* DCNTL */
1458 case 0x40: /* SIEN0 */
1460 case 0x41: /* SIEN1 */
1462 case 0x42: /* SIST0 */
1467 case 0x43: /* SIST1 */
1472 case 0x46: /* MACNTL */
1474 case 0x47: /* GPCNTL0 */
1476 case 0x48: /* STIME0 */
1478 case 0x4a: /* RESPID0 */
1480 case 0x4b: /* RESPID1 */
1482 case 0x4d: /* STEST1 */
1484 case 0x4e: /* STEST2 */
1486 case 0x4f: /* STEST3 */
1488 case 0x50: /* SIDL */
1489 /* This is needed by the linux drivers. We currently only update it
1490 during the MSG IN phase. */
1492 case 0x52: /* STEST4 */
1494 case 0x56: /* CCNTL0 */
1496 case 0x57: /* CCNTL1 */
1498 case 0x58: /* SBDL */
1499 /* Some drivers peek at the data bus during the MSG IN phase. */
1500 if ((s
->sstat1
& PHASE_MASK
) == PHASE_MI
)
1503 case 0x59: /* SBDL high */
1505 CASE_GET_REG32(mmrs
, 0xa0)
1506 CASE_GET_REG32(mmws
, 0xa4)
1507 CASE_GET_REG32(sfs
, 0xa8)
1508 CASE_GET_REG32(drs
, 0xac)
1509 CASE_GET_REG32(sbms
, 0xb0)
1510 CASE_GET_REG32(dbms
, 0xb4)
1511 CASE_GET_REG32(dnad64
, 0xb8)
1512 CASE_GET_REG32(pmjad1
, 0xc0)
1513 CASE_GET_REG32(pmjad2
, 0xc4)
1514 CASE_GET_REG32(rbc
, 0xc8)
1515 CASE_GET_REG32(ua
, 0xcc)
1516 CASE_GET_REG32(ia
, 0xd4)
1517 CASE_GET_REG32(sbc
, 0xd8)
1518 CASE_GET_REG32(csbc
, 0xdc)
1520 if (offset
>= 0x5c && offset
< 0xa0) {
1523 n
= (offset
- 0x58) >> 2;
1524 shift
= (offset
& 3) * 8;
1525 return (s
->scratch
[n
] >> shift
) & 0xff;
1527 BADF("readb 0x%x\n", offset
);
1529 #undef CASE_GET_REG24
1530 #undef CASE_GET_REG32
1533 static void lsi_reg_writeb(LSIState
*s
, int offset
, uint8_t val
)
1535 #define CASE_SET_REG24(name, addr) \
1536 case addr : s->name &= 0xffffff00; s->name |= val; break; \
1537 case addr + 1: s->name &= 0xffff00ff; s->name |= val << 8; break; \
1538 case addr + 2: s->name &= 0xff00ffff; s->name |= val << 16; break;
1540 #define CASE_SET_REG32(name, addr) \
1541 case addr : s->name &= 0xffffff00; s->name |= val; break; \
1542 case addr + 1: s->name &= 0xffff00ff; s->name |= val << 8; break; \
1543 case addr + 2: s->name &= 0xff00ffff; s->name |= val << 16; break; \
1544 case addr + 3: s->name &= 0x00ffffff; s->name |= val << 24; break;
1546 #ifdef DEBUG_LSI_REG
1547 DPRINTF("Write reg %x = %02x\n", offset
, val
);
1550 case 0x00: /* SCNTL0 */
1552 if (val
& LSI_SCNTL0_START
) {
1553 BADF("Start sequence not implemented\n");
1556 case 0x01: /* SCNTL1 */
1557 s
->scntl1
= val
& ~LSI_SCNTL1_SST
;
1558 if (val
& LSI_SCNTL1_IARB
) {
1559 BADF("Immediate Arbritration not implemented\n");
1561 if (val
& LSI_SCNTL1_RST
) {
1562 s
->sstat0
|= LSI_SSTAT0_RST
;
1563 lsi_script_scsi_interrupt(s
, LSI_SIST0_RST
, 0);
1565 s
->sstat0
&= ~LSI_SSTAT0_RST
;
1568 case 0x02: /* SCNTL2 */
1569 val
&= ~(LSI_SCNTL2_WSR
| LSI_SCNTL2_WSS
);
1572 case 0x03: /* SCNTL3 */
1575 case 0x04: /* SCID */
1578 case 0x05: /* SXFER */
1581 case 0x06: /* SDID */
1582 if ((val
& 0xf) != (s
->ssid
& 0xf))
1583 BADF("Destination ID does not match SSID\n");
1584 s
->sdid
= val
& 0xf;
1586 case 0x07: /* GPREG0 */
1588 case 0x08: /* SFBR */
1589 /* The CPU is not allowed to write to this register. However the
1590 SCRIPTS register move instructions are. */
1593 case 0x0a: case 0x0b:
1594 /* Openserver writes to these readonly registers on startup */
1596 case 0x0c: case 0x0d: case 0x0e: case 0x0f:
1597 /* Linux writes to these readonly registers on startup. */
1599 CASE_SET_REG32(dsa
, 0x10)
1600 case 0x14: /* ISTAT0 */
1601 s
->istat0
= (s
->istat0
& 0x0f) | (val
& 0xf0);
1602 if (val
& LSI_ISTAT0_ABRT
) {
1603 lsi_script_dma_interrupt(s
, LSI_DSTAT_ABRT
);
1605 if (val
& LSI_ISTAT0_INTF
) {
1606 s
->istat0
&= ~LSI_ISTAT0_INTF
;
1609 if (s
->waiting
== 1 && val
& LSI_ISTAT0_SIGP
) {
1610 DPRINTF("Woken by SIGP\n");
1613 lsi_execute_script(s
);
1615 if (val
& LSI_ISTAT0_SRST
) {
1619 case 0x16: /* MBOX0 */
1622 case 0x17: /* MBOX1 */
1625 case 0x1a: /* CTEST2 */
1626 s
->ctest2
= val
& LSI_CTEST2_PCICIE
;
1628 case 0x1b: /* CTEST3 */
1629 s
->ctest3
= val
& 0x0f;
1631 CASE_SET_REG32(temp
, 0x1c)
1632 case 0x21: /* CTEST4 */
1634 BADF("Unimplemented CTEST4-FBL 0x%x\n", val
);
1638 case 0x22: /* CTEST5 */
1639 if (val
& (LSI_CTEST5_ADCK
| LSI_CTEST5_BBCK
)) {
1640 BADF("CTEST5 DMA increment not implemented\n");
1644 CASE_SET_REG24(dbc
, 0x24)
1645 CASE_SET_REG32(dnad
, 0x28)
1646 case 0x2c: /* DSP[0:7] */
1647 s
->dsp
&= 0xffffff00;
1650 case 0x2d: /* DSP[8:15] */
1651 s
->dsp
&= 0xffff00ff;
1654 case 0x2e: /* DSP[16:23] */
1655 s
->dsp
&= 0xff00ffff;
1656 s
->dsp
|= val
<< 16;
1658 case 0x2f: /* DSP[24:31] */
1659 s
->dsp
&= 0x00ffffff;
1660 s
->dsp
|= val
<< 24;
1661 if ((s
->dmode
& LSI_DMODE_MAN
) == 0
1662 && (s
->istat1
& LSI_ISTAT1_SRUN
) == 0)
1663 lsi_execute_script(s
);
1665 CASE_SET_REG32(dsps
, 0x30)
1666 CASE_SET_REG32(scratch
[0], 0x34)
1667 case 0x38: /* DMODE */
1668 if (val
& (LSI_DMODE_SIOM
| LSI_DMODE_DIOM
)) {
1669 BADF("IO mappings not implemented\n");
1673 case 0x39: /* DIEN */
1677 case 0x3a: /* SBR */
1680 case 0x3b: /* DCNTL */
1681 s
->dcntl
= val
& ~(LSI_DCNTL_PFF
| LSI_DCNTL_STD
);
1682 if ((val
& LSI_DCNTL_STD
) && (s
->istat1
& LSI_ISTAT1_SRUN
) == 0)
1683 lsi_execute_script(s
);
1685 case 0x40: /* SIEN0 */
1689 case 0x41: /* SIEN1 */
1693 case 0x47: /* GPCNTL0 */
1695 case 0x48: /* STIME0 */
1698 case 0x49: /* STIME1 */
1700 DPRINTF("General purpose timer not implemented\n");
1701 /* ??? Raising the interrupt immediately seems to be sufficient
1702 to keep the FreeBSD driver happy. */
1703 lsi_script_scsi_interrupt(s
, 0, LSI_SIST1_GEN
);
1706 case 0x4a: /* RESPID0 */
1709 case 0x4b: /* RESPID1 */
1712 case 0x4d: /* STEST1 */
1715 case 0x4e: /* STEST2 */
1717 BADF("Low level mode not implemented\n");
1721 case 0x4f: /* STEST3 */
1723 BADF("SCSI FIFO test mode not implemented\n");
1727 case 0x56: /* CCNTL0 */
1730 case 0x57: /* CCNTL1 */
1733 CASE_SET_REG32(mmrs
, 0xa0)
1734 CASE_SET_REG32(mmws
, 0xa4)
1735 CASE_SET_REG32(sfs
, 0xa8)
1736 CASE_SET_REG32(drs
, 0xac)
1737 CASE_SET_REG32(sbms
, 0xb0)
1738 CASE_SET_REG32(dbms
, 0xb4)
1739 CASE_SET_REG32(dnad64
, 0xb8)
1740 CASE_SET_REG32(pmjad1
, 0xc0)
1741 CASE_SET_REG32(pmjad2
, 0xc4)
1742 CASE_SET_REG32(rbc
, 0xc8)
1743 CASE_SET_REG32(ua
, 0xcc)
1744 CASE_SET_REG32(ia
, 0xd4)
1745 CASE_SET_REG32(sbc
, 0xd8)
1746 CASE_SET_REG32(csbc
, 0xdc)
1748 if (offset
>= 0x5c && offset
< 0xa0) {
1751 n
= (offset
- 0x58) >> 2;
1752 shift
= (offset
& 3) * 8;
1753 s
->scratch
[n
] &= ~(0xff << shift
);
1754 s
->scratch
[n
] |= (val
& 0xff) << shift
;
1756 BADF("Unhandled writeb 0x%x = 0x%x\n", offset
, val
);
1759 #undef CASE_SET_REG24
1760 #undef CASE_SET_REG32
1763 static void lsi_mmio_writeb(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
1765 LSIState
*s
= opaque
;
1767 lsi_reg_writeb(s
, addr
& 0xff, val
);
1770 static void lsi_mmio_writew(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
1772 LSIState
*s
= opaque
;
1775 lsi_reg_writeb(s
, addr
, val
& 0xff);
1776 lsi_reg_writeb(s
, addr
+ 1, (val
>> 8) & 0xff);
1779 static void lsi_mmio_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
1781 LSIState
*s
= opaque
;
1784 lsi_reg_writeb(s
, addr
, val
& 0xff);
1785 lsi_reg_writeb(s
, addr
+ 1, (val
>> 8) & 0xff);
1786 lsi_reg_writeb(s
, addr
+ 2, (val
>> 16) & 0xff);
1787 lsi_reg_writeb(s
, addr
+ 3, (val
>> 24) & 0xff);
1790 static uint32_t lsi_mmio_readb(void *opaque
, target_phys_addr_t addr
)
1792 LSIState
*s
= opaque
;
1794 return lsi_reg_readb(s
, addr
& 0xff);
1797 static uint32_t lsi_mmio_readw(void *opaque
, target_phys_addr_t addr
)
1799 LSIState
*s
= opaque
;
1803 val
= lsi_reg_readb(s
, addr
);
1804 val
|= lsi_reg_readb(s
, addr
+ 1) << 8;
1808 static uint32_t lsi_mmio_readl(void *opaque
, target_phys_addr_t addr
)
1810 LSIState
*s
= opaque
;
1813 val
= lsi_reg_readb(s
, addr
);
1814 val
|= lsi_reg_readb(s
, addr
+ 1) << 8;
1815 val
|= lsi_reg_readb(s
, addr
+ 2) << 16;
1816 val
|= lsi_reg_readb(s
, addr
+ 3) << 24;
1820 static CPUReadMemoryFunc
* const lsi_mmio_readfn
[3] = {
1826 static CPUWriteMemoryFunc
* const lsi_mmio_writefn
[3] = {
1832 static void lsi_ram_writeb(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
1834 LSIState
*s
= opaque
;
1839 newval
= s
->script_ram
[addr
>> 2];
1840 shift
= (addr
& 3) * 8;
1841 newval
&= ~(0xff << shift
);
1842 newval
|= val
<< shift
;
1843 s
->script_ram
[addr
>> 2] = newval
;
1846 static void lsi_ram_writew(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
1848 LSIState
*s
= opaque
;
1852 newval
= s
->script_ram
[addr
>> 2];
1854 newval
= (newval
& 0xffff) | (val
<< 16);
1856 newval
= (newval
& 0xffff0000) | val
;
1858 s
->script_ram
[addr
>> 2] = newval
;
1862 static void lsi_ram_writel(void *opaque
, target_phys_addr_t addr
, uint32_t val
)
1864 LSIState
*s
= opaque
;
1867 s
->script_ram
[addr
>> 2] = val
;
1870 static uint32_t lsi_ram_readb(void *opaque
, target_phys_addr_t addr
)
1872 LSIState
*s
= opaque
;
1876 val
= s
->script_ram
[addr
>> 2];
1877 val
>>= (addr
& 3) * 8;
1881 static uint32_t lsi_ram_readw(void *opaque
, target_phys_addr_t addr
)
1883 LSIState
*s
= opaque
;
1887 val
= s
->script_ram
[addr
>> 2];
1890 return le16_to_cpu(val
);
1893 static uint32_t lsi_ram_readl(void *opaque
, target_phys_addr_t addr
)
1895 LSIState
*s
= opaque
;
1898 return le32_to_cpu(s
->script_ram
[addr
>> 2]);
1901 static CPUReadMemoryFunc
* const lsi_ram_readfn
[3] = {
1907 static CPUWriteMemoryFunc
* const lsi_ram_writefn
[3] = {
1913 static uint32_t lsi_io_readb(void *opaque
, uint32_t addr
)
1915 LSIState
*s
= opaque
;
1916 return lsi_reg_readb(s
, addr
& 0xff);
1919 static uint32_t lsi_io_readw(void *opaque
, uint32_t addr
)
1921 LSIState
*s
= opaque
;
1924 val
= lsi_reg_readb(s
, addr
);
1925 val
|= lsi_reg_readb(s
, addr
+ 1) << 8;
1929 static uint32_t lsi_io_readl(void *opaque
, uint32_t addr
)
1931 LSIState
*s
= opaque
;
1934 val
= lsi_reg_readb(s
, addr
);
1935 val
|= lsi_reg_readb(s
, addr
+ 1) << 8;
1936 val
|= lsi_reg_readb(s
, addr
+ 2) << 16;
1937 val
|= lsi_reg_readb(s
, addr
+ 3) << 24;
1941 static void lsi_io_writeb(void *opaque
, uint32_t addr
, uint32_t val
)
1943 LSIState
*s
= opaque
;
1944 lsi_reg_writeb(s
, addr
& 0xff, val
);
1947 static void lsi_io_writew(void *opaque
, uint32_t addr
, uint32_t val
)
1949 LSIState
*s
= opaque
;
1951 lsi_reg_writeb(s
, addr
, val
& 0xff);
1952 lsi_reg_writeb(s
, addr
+ 1, (val
>> 8) & 0xff);
1955 static void lsi_io_writel(void *opaque
, uint32_t addr
, uint32_t val
)
1957 LSIState
*s
= opaque
;
1959 lsi_reg_writeb(s
, addr
, val
& 0xff);
1960 lsi_reg_writeb(s
, addr
+ 1, (val
>> 8) & 0xff);
1961 lsi_reg_writeb(s
, addr
+ 2, (val
>> 16) & 0xff);
1962 lsi_reg_writeb(s
, addr
+ 3, (val
>> 24) & 0xff);
1965 static void lsi_io_mapfunc(PCIDevice
*pci_dev
, int region_num
,
1966 pcibus_t addr
, pcibus_t size
, int type
)
1968 LSIState
*s
= DO_UPCAST(LSIState
, dev
, pci_dev
);
1970 DPRINTF("Mapping IO at %08"FMT_PCIBUS
"\n", addr
);
1972 register_ioport_write(addr
, 256, 1, lsi_io_writeb
, s
);
1973 register_ioport_read(addr
, 256, 1, lsi_io_readb
, s
);
1974 register_ioport_write(addr
, 256, 2, lsi_io_writew
, s
);
1975 register_ioport_read(addr
, 256, 2, lsi_io_readw
, s
);
1976 register_ioport_write(addr
, 256, 4, lsi_io_writel
, s
);
1977 register_ioport_read(addr
, 256, 4, lsi_io_readl
, s
);
1980 static void lsi_ram_mapfunc(PCIDevice
*pci_dev
, int region_num
,
1981 pcibus_t addr
, pcibus_t size
, int type
)
1983 LSIState
*s
= DO_UPCAST(LSIState
, dev
, pci_dev
);
1985 DPRINTF("Mapping ram at %08"FMT_PCIBUS
"\n", addr
);
1986 s
->script_ram_base
= addr
;
1987 cpu_register_physical_memory(addr
+ 0, 0x2000, s
->ram_io_addr
);
1990 static void lsi_mmio_mapfunc(PCIDevice
*pci_dev
, int region_num
,
1991 pcibus_t addr
, pcibus_t size
, int type
)
1993 LSIState
*s
= DO_UPCAST(LSIState
, dev
, pci_dev
);
1995 DPRINTF("Mapping registers at %08"FMT_PCIBUS
"\n", addr
);
1996 cpu_register_physical_memory(addr
+ 0, 0x400, s
->mmio_io_addr
);
1999 static void lsi_pre_save(void *opaque
)
2001 LSIState
*s
= opaque
;
2004 assert(s
->current
->dma_buf
== NULL
);
2005 assert(s
->current
->dma_len
== 0);
2007 assert(QTAILQ_EMPTY(&s
->queue
));
2010 static const VMStateDescription vmstate_lsi_scsi
= {
2013 .minimum_version_id
= 0,
2014 .minimum_version_id_old
= 0,
2015 .pre_save
= lsi_pre_save
,
2016 .fields
= (VMStateField
[]) {
2017 VMSTATE_PCI_DEVICE(dev
, LSIState
),
2019 VMSTATE_INT32(carry
, LSIState
),
2020 VMSTATE_INT32(sense
, LSIState
),
2021 VMSTATE_INT32(msg_action
, LSIState
),
2022 VMSTATE_INT32(msg_len
, LSIState
),
2023 VMSTATE_BUFFER(msg
, LSIState
),
2024 VMSTATE_INT32(waiting
, LSIState
),
2026 VMSTATE_UINT32(dsa
, LSIState
),
2027 VMSTATE_UINT32(temp
, LSIState
),
2028 VMSTATE_UINT32(dnad
, LSIState
),
2029 VMSTATE_UINT32(dbc
, LSIState
),
2030 VMSTATE_UINT8(istat0
, LSIState
),
2031 VMSTATE_UINT8(istat1
, LSIState
),
2032 VMSTATE_UINT8(dcmd
, LSIState
),
2033 VMSTATE_UINT8(dstat
, LSIState
),
2034 VMSTATE_UINT8(dien
, LSIState
),
2035 VMSTATE_UINT8(sist0
, LSIState
),
2036 VMSTATE_UINT8(sist1
, LSIState
),
2037 VMSTATE_UINT8(sien0
, LSIState
),
2038 VMSTATE_UINT8(sien1
, LSIState
),
2039 VMSTATE_UINT8(mbox0
, LSIState
),
2040 VMSTATE_UINT8(mbox1
, LSIState
),
2041 VMSTATE_UINT8(dfifo
, LSIState
),
2042 VMSTATE_UINT8(ctest2
, LSIState
),
2043 VMSTATE_UINT8(ctest3
, LSIState
),
2044 VMSTATE_UINT8(ctest4
, LSIState
),
2045 VMSTATE_UINT8(ctest5
, LSIState
),
2046 VMSTATE_UINT8(ccntl0
, LSIState
),
2047 VMSTATE_UINT8(ccntl1
, LSIState
),
2048 VMSTATE_UINT32(dsp
, LSIState
),
2049 VMSTATE_UINT32(dsps
, LSIState
),
2050 VMSTATE_UINT8(dmode
, LSIState
),
2051 VMSTATE_UINT8(dcntl
, LSIState
),
2052 VMSTATE_UINT8(scntl0
, LSIState
),
2053 VMSTATE_UINT8(scntl1
, LSIState
),
2054 VMSTATE_UINT8(scntl2
, LSIState
),
2055 VMSTATE_UINT8(scntl3
, LSIState
),
2056 VMSTATE_UINT8(sstat0
, LSIState
),
2057 VMSTATE_UINT8(sstat1
, LSIState
),
2058 VMSTATE_UINT8(scid
, LSIState
),
2059 VMSTATE_UINT8(sxfer
, LSIState
),
2060 VMSTATE_UINT8(socl
, LSIState
),
2061 VMSTATE_UINT8(sdid
, LSIState
),
2062 VMSTATE_UINT8(ssid
, LSIState
),
2063 VMSTATE_UINT8(sfbr
, LSIState
),
2064 VMSTATE_UINT8(stest1
, LSIState
),
2065 VMSTATE_UINT8(stest2
, LSIState
),
2066 VMSTATE_UINT8(stest3
, LSIState
),
2067 VMSTATE_UINT8(sidl
, LSIState
),
2068 VMSTATE_UINT8(stime0
, LSIState
),
2069 VMSTATE_UINT8(respid0
, LSIState
),
2070 VMSTATE_UINT8(respid1
, LSIState
),
2071 VMSTATE_UINT32(mmrs
, LSIState
),
2072 VMSTATE_UINT32(mmws
, LSIState
),
2073 VMSTATE_UINT32(sfs
, LSIState
),
2074 VMSTATE_UINT32(drs
, LSIState
),
2075 VMSTATE_UINT32(sbms
, LSIState
),
2076 VMSTATE_UINT32(dbms
, LSIState
),
2077 VMSTATE_UINT32(dnad64
, LSIState
),
2078 VMSTATE_UINT32(pmjad1
, LSIState
),
2079 VMSTATE_UINT32(pmjad2
, LSIState
),
2080 VMSTATE_UINT32(rbc
, LSIState
),
2081 VMSTATE_UINT32(ua
, LSIState
),
2082 VMSTATE_UINT32(ia
, LSIState
),
2083 VMSTATE_UINT32(sbc
, LSIState
),
2084 VMSTATE_UINT32(csbc
, LSIState
),
2085 VMSTATE_BUFFER_UNSAFE(scratch
, LSIState
, 0, 18 * sizeof(uint32_t)),
2086 VMSTATE_UINT8(sbr
, LSIState
),
2088 VMSTATE_BUFFER_UNSAFE(script_ram
, LSIState
, 0, 2048 * sizeof(uint32_t)),
2089 VMSTATE_END_OF_LIST()
2093 static int lsi_scsi_uninit(PCIDevice
*d
)
2095 LSIState
*s
= DO_UPCAST(LSIState
, dev
, d
);
2097 cpu_unregister_io_memory(s
->mmio_io_addr
);
2098 cpu_unregister_io_memory(s
->ram_io_addr
);
2103 static int lsi_scsi_init(PCIDevice
*dev
)
2105 LSIState
*s
= DO_UPCAST(LSIState
, dev
, dev
);
2108 pci_conf
= s
->dev
.config
;
2110 /* PCI Vendor ID (word) */
2111 pci_config_set_vendor_id(pci_conf
, PCI_VENDOR_ID_LSI_LOGIC
);
2112 /* PCI device ID (word) */
2113 pci_config_set_device_id(pci_conf
, PCI_DEVICE_ID_LSI_53C895A
);
2114 /* PCI base class code */
2115 pci_config_set_class(pci_conf
, PCI_CLASS_STORAGE_SCSI
);
2116 /* PCI subsystem ID */
2117 pci_conf
[PCI_SUBSYSTEM_ID
] = 0x00;
2118 pci_conf
[PCI_SUBSYSTEM_ID
+ 1] = 0x10;
2119 /* PCI latency timer = 255 */
2120 pci_conf
[PCI_LATENCY_TIMER
] = 0xff;
2121 /* TODO: RST# value should be 0 */
2122 /* Interrupt pin 1 */
2123 pci_conf
[PCI_INTERRUPT_PIN
] = 0x01;
2125 s
->mmio_io_addr
= cpu_register_io_memory(lsi_mmio_readfn
,
2126 lsi_mmio_writefn
, s
);
2127 s
->ram_io_addr
= cpu_register_io_memory(lsi_ram_readfn
,
2128 lsi_ram_writefn
, s
);
2130 /* TODO: use dev and get rid of cast below */
2131 pci_register_bar((struct PCIDevice
*)s
, 0, 256,
2132 PCI_BASE_ADDRESS_SPACE_IO
, lsi_io_mapfunc
);
2133 pci_register_bar((struct PCIDevice
*)s
, 1, 0x400,
2134 PCI_BASE_ADDRESS_SPACE_MEMORY
, lsi_mmio_mapfunc
);
2135 pci_register_bar((struct PCIDevice
*)s
, 2, 0x2000,
2136 PCI_BASE_ADDRESS_SPACE_MEMORY
, lsi_ram_mapfunc
);
2137 QTAILQ_INIT(&s
->queue
);
2141 scsi_bus_new(&s
->bus
, &dev
->qdev
, 1, LSI_MAX_DEVS
, lsi_command_complete
);
2142 if (!dev
->qdev
.hotplugged
) {
2143 scsi_bus_legacy_handle_cmdline(&s
->bus
);
2148 static PCIDeviceInfo lsi_info
= {
2149 .qdev
.name
= "lsi53c895a",
2150 .qdev
.alias
= "lsi",
2151 .qdev
.size
= sizeof(LSIState
),
2152 .qdev
.vmsd
= &vmstate_lsi_scsi
,
2153 .init
= lsi_scsi_init
,
2154 .exit
= lsi_scsi_uninit
,
2157 static void lsi53c895a_register_devices(void)
2159 pci_qdev_register(&lsi_info
);
2162 device_init(lsi53c895a_register_devices
);