1 #include <linux/types.h>
3 #include <linux/slab.h>
4 #include <linux/blkdev.h>
5 #include <linux/init.h>
6 #include <linux/interrupt.h>
10 #include <asm/pgtable.h>
11 #include <asm/amigaints.h>
12 #include <asm/amigahw.h>
13 #include <linux/zorro.h>
15 #include <linux/spinlock.h>
18 #include <scsi/scsi_host.h>
22 #include<linux/stat.h>
24 #define DMA(ptr) ((a2091_scsiregs *)((ptr)->base))
25 #define HDATA(ptr) ((struct WD33C93_hostdata *)((ptr)->hostdata))
27 static int a2091_release(struct Scsi_Host
*instance
);
29 static irqreturn_t
a2091_intr (int irq
, void *_instance
)
33 struct Scsi_Host
*instance
= (struct Scsi_Host
*)_instance
;
35 status
= DMA(instance
)->ISTR
;
36 if (!(status
& (ISTR_INT_F
|ISTR_INT_P
)) || !(status
& ISTR_INTS
))
39 spin_lock_irqsave(instance
->host_lock
, flags
);
40 wd33c93_intr(instance
);
41 spin_unlock_irqrestore(instance
->host_lock
, flags
);
45 static int dma_setup(struct scsi_cmnd
*cmd
, int dir_in
)
47 unsigned short cntr
= CNTR_PDMD
| CNTR_INTEN
;
48 unsigned long addr
= virt_to_bus(cmd
->SCp
.ptr
);
49 struct Scsi_Host
*instance
= cmd
->device
->host
;
51 /* don't allow DMA if the physical address is bad */
52 if (addr
& A2091_XFER_MASK
)
54 HDATA(instance
)->dma_bounce_len
= (cmd
->SCp
.this_residual
+ 511)
56 HDATA(instance
)->dma_bounce_buffer
=
57 kmalloc (HDATA(instance
)->dma_bounce_len
, GFP_KERNEL
);
59 /* can't allocate memory; use PIO */
60 if (!HDATA(instance
)->dma_bounce_buffer
) {
61 HDATA(instance
)->dma_bounce_len
= 0;
65 /* get the physical address of the bounce buffer */
66 addr
= virt_to_bus(HDATA(instance
)->dma_bounce_buffer
);
68 /* the bounce buffer may not be in the first 16M of physmem */
69 if (addr
& A2091_XFER_MASK
) {
70 /* we could use chipmem... maybe later */
71 kfree (HDATA(instance
)->dma_bounce_buffer
);
72 HDATA(instance
)->dma_bounce_buffer
= NULL
;
73 HDATA(instance
)->dma_bounce_len
= 0;
78 /* copy to bounce buffer for a write */
79 memcpy (HDATA(instance
)->dma_bounce_buffer
,
80 cmd
->SCp
.ptr
, cmd
->SCp
.this_residual
);
84 /* setup dma direction */
88 /* remember direction */
89 HDATA(cmd
->device
->host
)->dma_dir
= dir_in
;
91 DMA(cmd
->device
->host
)->CNTR
= cntr
;
93 /* setup DMA *physical* address */
94 DMA(cmd
->device
->host
)->ACR
= addr
;
97 /* invalidate any cache */
98 cache_clear (addr
, cmd
->SCp
.this_residual
);
100 /* push any dirty cache */
101 cache_push (addr
, cmd
->SCp
.this_residual
);
104 DMA(cmd
->device
->host
)->ST_DMA
= 1;
110 static void dma_stop(struct Scsi_Host
*instance
, struct scsi_cmnd
*SCpnt
,
113 /* disable SCSI interrupts */
114 unsigned short cntr
= CNTR_PDMD
;
116 if (!HDATA(instance
)->dma_dir
)
119 /* disable SCSI interrupts */
120 DMA(instance
)->CNTR
= cntr
;
122 /* flush if we were reading */
123 if (HDATA(instance
)->dma_dir
) {
124 DMA(instance
)->FLUSH
= 1;
125 while (!(DMA(instance
)->ISTR
& ISTR_FE_FLG
))
129 /* clear a possible interrupt */
130 DMA(instance
)->CINT
= 1;
133 DMA(instance
)->SP_DMA
= 1;
135 /* restore the CONTROL bits (minus the direction flag) */
136 DMA(instance
)->CNTR
= CNTR_PDMD
| CNTR_INTEN
;
138 /* copy from a bounce buffer, if necessary */
139 if (status
&& HDATA(instance
)->dma_bounce_buffer
) {
140 if( HDATA(instance
)->dma_dir
)
141 memcpy (SCpnt
->SCp
.ptr
,
142 HDATA(instance
)->dma_bounce_buffer
,
143 SCpnt
->SCp
.this_residual
);
144 kfree (HDATA(instance
)->dma_bounce_buffer
);
145 HDATA(instance
)->dma_bounce_buffer
= NULL
;
146 HDATA(instance
)->dma_bounce_len
= 0;
150 static int __init
a2091_detect(struct scsi_host_template
*tpnt
)
152 static unsigned char called
= 0;
153 struct Scsi_Host
*instance
;
154 unsigned long address
;
155 struct zorro_dev
*z
= NULL
;
159 if (!MACH_IS_AMIGA
|| called
)
163 tpnt
->proc_name
= "A2091";
164 tpnt
->proc_info
= &wd33c93_proc_info
;
166 while ((z
= zorro_find_device(ZORRO_WILDCARD
, z
))) {
167 if (z
->id
!= ZORRO_PROD_CBM_A590_A2091_1
&&
168 z
->id
!= ZORRO_PROD_CBM_A590_A2091_2
)
170 address
= z
->resource
.start
;
171 if (!request_mem_region(address
, 256, "wd33c93"))
174 instance
= scsi_register (tpnt
, sizeof (struct WD33C93_hostdata
));
175 if (instance
== NULL
)
177 instance
->base
= ZTWO_VADDR(address
);
178 instance
->irq
= IRQ_AMIGA_PORTS
;
179 instance
->unique_id
= z
->slotaddr
;
180 DMA(instance
)->DAWR
= DAWR_A2091
;
181 regs
.SASR
= &(DMA(instance
)->SASR
);
182 regs
.SCMD
= &(DMA(instance
)->SCMD
);
183 HDATA(instance
)->no_sync
= 0xff;
184 HDATA(instance
)->fast
= 0;
185 HDATA(instance
)->dma_mode
= CTRL_DMA
;
186 wd33c93_init(instance
, regs
, dma_setup
, dma_stop
, WD33C93_FS_8_10
);
187 if (request_irq(IRQ_AMIGA_PORTS
, a2091_intr
, IRQF_SHARED
, "A2091 SCSI",
190 DMA(instance
)->CNTR
= CNTR_PDMD
| CNTR_INTEN
;
195 scsi_unregister(instance
);
198 release_mem_region(address
, 256);
204 static int a2091_bus_reset(struct scsi_cmnd
*cmd
)
206 /* FIXME perform bus-specific reset */
208 /* FIXME 2: kill this function, and let midlayer fall back
209 to the same action, calling wd33c93_host_reset() */
211 spin_lock_irq(cmd
->device
->host
->host_lock
);
212 wd33c93_host_reset(cmd
);
213 spin_unlock_irq(cmd
->device
->host
->host_lock
);
220 static struct scsi_host_template driver_template
= {
221 .proc_name
= "A2901",
222 .name
= "Commodore A2091/A590 SCSI",
223 .detect
= a2091_detect
,
224 .release
= a2091_release
,
225 .queuecommand
= wd33c93_queuecommand
,
226 .eh_abort_handler
= wd33c93_abort
,
227 .eh_bus_reset_handler
= a2091_bus_reset
,
228 .eh_host_reset_handler
= wd33c93_host_reset
,
229 .can_queue
= CAN_QUEUE
,
231 .sg_tablesize
= SG_ALL
,
232 .cmd_per_lun
= CMD_PER_LUN
,
233 .use_clustering
= DISABLE_CLUSTERING
237 #include "scsi_module.c"
239 static int a2091_release(struct Scsi_Host
*instance
)
242 DMA(instance
)->CNTR
= 0;
243 release_mem_region(ZTWO_PADDR(instance
->base
), 256);
244 free_irq(IRQ_AMIGA_PORTS
, instance
);
250 MODULE_LICENSE("GPL");