1 #include <linux/types.h>
2 #include <linux/init.h>
3 #include <linux/interrupt.h>
5 #include <linux/slab.h>
6 #include <linux/spinlock.h>
7 #include <linux/zorro.h>
10 #include <asm/pgtable.h>
11 #include <asm/amigaints.h>
12 #include <asm/amigahw.h>
21 struct gvp11_hostdata
{
22 struct WD33C93_hostdata wh
;
23 struct gvp11_scsiregs
*regs
;
26 static irqreturn_t
gvp11_intr(int irq
, void *data
)
28 struct Scsi_Host
*instance
= data
;
29 struct gvp11_hostdata
*hdata
= shost_priv(instance
);
30 unsigned int status
= hdata
->regs
->CNTR
;
33 if (!(status
& GVP11_DMAC_INT_PENDING
))
36 spin_lock_irqsave(instance
->host_lock
, flags
);
37 wd33c93_intr(instance
);
38 spin_unlock_irqrestore(instance
->host_lock
, flags
);
42 static int gvp11_xfer_mask
= 0;
44 void gvp11_setup(char *str
, int *ints
)
46 gvp11_xfer_mask
= ints
[1];
49 static int dma_setup(struct scsi_cmnd
*cmd
, int dir_in
)
51 struct Scsi_Host
*instance
= cmd
->device
->host
;
52 struct gvp11_hostdata
*hdata
= shost_priv(instance
);
53 struct WD33C93_hostdata
*wh
= &hdata
->wh
;
54 struct gvp11_scsiregs
*regs
= hdata
->regs
;
55 unsigned short cntr
= GVP11_DMAC_INT_ENABLE
;
56 unsigned long addr
= virt_to_bus(cmd
->SCp
.ptr
);
58 static int scsi_alloc_out_of_range
= 0;
60 /* use bounce buffer if the physical address is bad */
61 if (addr
& wh
->dma_xfer_mask
) {
62 wh
->dma_bounce_len
= (cmd
->SCp
.this_residual
+ 511) & ~0x1ff;
64 if (!scsi_alloc_out_of_range
) {
65 wh
->dma_bounce_buffer
=
66 kmalloc(wh
->dma_bounce_len
, GFP_KERNEL
);
67 wh
->dma_buffer_pool
= BUF_SCSI_ALLOCED
;
70 if (scsi_alloc_out_of_range
||
71 !wh
->dma_bounce_buffer
) {
72 wh
->dma_bounce_buffer
=
73 amiga_chip_alloc(wh
->dma_bounce_len
,
74 "GVP II SCSI Bounce Buffer");
76 if (!wh
->dma_bounce_buffer
) {
77 wh
->dma_bounce_len
= 0;
81 wh
->dma_buffer_pool
= BUF_CHIP_ALLOCED
;
84 /* check if the address of the bounce buffer is OK */
85 addr
= virt_to_bus(wh
->dma_bounce_buffer
);
87 if (addr
& wh
->dma_xfer_mask
) {
88 /* fall back to Chip RAM if address out of range */
89 if (wh
->dma_buffer_pool
== BUF_SCSI_ALLOCED
) {
90 kfree(wh
->dma_bounce_buffer
);
91 scsi_alloc_out_of_range
= 1;
93 amiga_chip_free(wh
->dma_bounce_buffer
);
96 wh
->dma_bounce_buffer
=
97 amiga_chip_alloc(wh
->dma_bounce_len
,
98 "GVP II SCSI Bounce Buffer");
100 if (!wh
->dma_bounce_buffer
) {
101 wh
->dma_bounce_len
= 0;
105 addr
= virt_to_bus(wh
->dma_bounce_buffer
);
106 wh
->dma_buffer_pool
= BUF_CHIP_ALLOCED
;
110 /* copy to bounce buffer for a write */
111 memcpy(wh
->dma_bounce_buffer
, cmd
->SCp
.ptr
,
112 cmd
->SCp
.this_residual
);
116 /* setup dma direction */
118 cntr
|= GVP11_DMAC_DIR_WRITE
;
120 wh
->dma_dir
= dir_in
;
123 /* setup DMA *physical* address */
127 /* invalidate any cache */
128 cache_clear(addr
, cmd
->SCp
.this_residual
);
130 /* push any dirty cache */
131 cache_push(addr
, cmd
->SCp
.this_residual
);
134 bank_mask
= (~wh
->dma_xfer_mask
>> 18) & 0x01c0;
136 regs
->BANK
= bank_mask
& (addr
>> 18);
145 static void dma_stop(struct Scsi_Host
*instance
, struct scsi_cmnd
*SCpnt
,
148 struct gvp11_hostdata
*hdata
= shost_priv(instance
);
149 struct WD33C93_hostdata
*wh
= &hdata
->wh
;
150 struct gvp11_scsiregs
*regs
= hdata
->regs
;
154 /* remove write bit from CONTROL bits */
155 regs
->CNTR
= GVP11_DMAC_INT_ENABLE
;
157 /* copy from a bounce buffer, if necessary */
158 if (status
&& wh
->dma_bounce_buffer
) {
159 if (wh
->dma_dir
&& SCpnt
)
160 memcpy(SCpnt
->SCp
.ptr
, wh
->dma_bounce_buffer
,
161 SCpnt
->SCp
.this_residual
);
163 if (wh
->dma_buffer_pool
== BUF_SCSI_ALLOCED
)
164 kfree(wh
->dma_bounce_buffer
);
166 amiga_chip_free(wh
->dma_bounce_buffer
);
168 wh
->dma_bounce_buffer
= NULL
;
169 wh
->dma_bounce_len
= 0;
173 static int gvp11_bus_reset(struct scsi_cmnd
*cmd
)
175 struct Scsi_Host
*instance
= cmd
->device
->host
;
177 /* FIXME perform bus-specific reset */
179 /* FIXME 2: shouldn't we no-op this function (return
180 FAILED), and fall back to host reset function,
181 wd33c93_host_reset ? */
183 spin_lock_irq(instance
->host_lock
);
184 wd33c93_host_reset(cmd
);
185 spin_unlock_irq(instance
->host_lock
);
190 static struct scsi_host_template gvp11_scsi_template
= {
191 .module
= THIS_MODULE
,
192 .name
= "GVP Series II SCSI",
193 .proc_info
= wd33c93_proc_info
,
194 .proc_name
= "GVP11",
195 .queuecommand
= wd33c93_queuecommand
,
196 .eh_abort_handler
= wd33c93_abort
,
197 .eh_bus_reset_handler
= gvp11_bus_reset
,
198 .eh_host_reset_handler
= wd33c93_host_reset
,
199 .can_queue
= CAN_QUEUE
,
201 .sg_tablesize
= SG_ALL
,
202 .cmd_per_lun
= CMD_PER_LUN
,
203 .use_clustering
= DISABLE_CLUSTERING
206 static int __devinit
check_wd33c93(struct gvp11_scsiregs
*regs
)
209 volatile unsigned char *sasr_3393
, *scmd_3393
;
210 unsigned char save_sasr
;
214 * These darn GVP boards are a problem - it can be tough to tell
215 * whether or not they include a SCSI controller. This is the
216 * ultimate Yet-Another-GVP-Detection-Hack in that it actually
217 * probes for a WD33c93 chip: If we find one, it's extremely
218 * likely that this card supports SCSI, regardless of Product_
219 * Code, Board_Size, etc.
222 /* Get pointers to the presumed register locations and save contents */
224 sasr_3393
= ®s
->SASR
;
225 scmd_3393
= ®s
->SCMD
;
226 save_sasr
= *sasr_3393
;
228 /* First test the AuxStatus Reg */
230 q
= *sasr_3393
; /* read it */
231 if (q
& 0x08) /* bit 3 should always be clear */
233 *sasr_3393
= WD_AUXILIARY_STATUS
; /* setup indirect address */
234 if (*sasr_3393
== WD_AUXILIARY_STATUS
) { /* shouldn't retain the write */
235 *sasr_3393
= save_sasr
; /* Oops - restore this byte */
238 if (*sasr_3393
!= q
) { /* should still read the same */
239 *sasr_3393
= save_sasr
; /* Oops - restore this byte */
242 if (*scmd_3393
!= q
) /* and so should the image at 0x1f */
246 * Ok, we probably have a wd33c93, but let's check a few other places
247 * for good measure. Make sure that this works for both 'A and 'B
251 *sasr_3393
= WD_SCSI_STATUS
;
253 *sasr_3393
= WD_SCSI_STATUS
;
255 *sasr_3393
= WD_SCSI_STATUS
;
257 *sasr_3393
= WD_SCSI_STATUS
;
259 if (qq
!= q
) /* should be read only */
261 *sasr_3393
= 0x1e; /* this register is unimplemented */
269 if (qq
!= q
|| qq
!= 0xff) /* should be read only, all 1's */
271 *sasr_3393
= WD_TIMEOUT_PERIOD
;
273 *sasr_3393
= WD_TIMEOUT_PERIOD
;
275 *sasr_3393
= WD_TIMEOUT_PERIOD
;
277 *sasr_3393
= WD_TIMEOUT_PERIOD
;
279 if (qq
!= (~q
& 0xff)) /* should be read/write */
281 #endif /* CHECK_WD33C93 */
286 static int __devinit
gvp11_probe(struct zorro_dev
*z
,
287 const struct zorro_device_id
*ent
)
289 struct Scsi_Host
*instance
;
290 unsigned long address
;
293 unsigned int default_dma_xfer_mask
;
294 struct gvp11_hostdata
*hdata
;
295 struct gvp11_scsiregs
*regs
;
298 default_dma_xfer_mask
= ent
->driver_data
;
301 * Rumors state that some GVP ram boards use the same product
302 * code as the SCSI controllers. Therefore if the board-size
303 * is not 64KB we asume it is a ram board and bail out.
305 if (zorro_resource_len(z
) != 0x10000)
308 address
= z
->resource
.start
;
309 if (!request_mem_region(address
, 256, "wd33c93"))
312 regs
= (struct gvp11_scsiregs
*)(ZTWO_VADDR(address
));
314 error
= check_wd33c93(regs
);
316 goto fail_check_or_alloc
;
318 instance
= scsi_host_alloc(&gvp11_scsi_template
,
319 sizeof(struct gvp11_hostdata
));
322 goto fail_check_or_alloc
;
325 instance
->irq
= IRQ_AMIGA_PORTS
;
326 instance
->unique_id
= z
->slotaddr
;
331 while (regs
->CNTR
& GVP11_DMAC_BUSY
)
336 wdregs
.SASR
= ®s
->SASR
;
337 wdregs
.SCMD
= ®s
->SCMD
;
339 hdata
= shost_priv(instance
);
341 hdata
->wh
.dma_xfer_mask
= gvp11_xfer_mask
;
343 hdata
->wh
.dma_xfer_mask
= default_dma_xfer_mask
;
345 hdata
->wh
.no_sync
= 0xff;
347 hdata
->wh
.dma_mode
= CTRL_DMA
;
351 * Check for 14MHz SCSI clock
353 epc
= *(unsigned short *)(ZTWO_VADDR(address
) + 0x8000);
354 wd33c93_init(instance
, wdregs
, dma_setup
, dma_stop
,
355 (epc
& GVP_SCSICLKMASK
) ? WD33C93_FS_8_10
358 error
= request_irq(IRQ_AMIGA_PORTS
, gvp11_intr
, IRQF_SHARED
,
359 "GVP11 SCSI", instance
);
363 regs
->CNTR
= GVP11_DMAC_INT_ENABLE
;
365 error
= scsi_add_host(instance
, NULL
);
369 zorro_set_drvdata(z
, instance
);
370 scsi_scan_host(instance
);
374 free_irq(IRQ_AMIGA_PORTS
, instance
);
376 scsi_host_put(instance
);
378 release_mem_region(address
, 256);
382 static void __devexit
gvp11_remove(struct zorro_dev
*z
)
384 struct Scsi_Host
*instance
= zorro_get_drvdata(z
);
385 struct gvp11_hostdata
*hdata
= shost_priv(instance
);
387 hdata
->regs
->CNTR
= 0;
388 scsi_remove_host(instance
);
389 free_irq(IRQ_AMIGA_PORTS
, instance
);
390 scsi_host_put(instance
);
391 release_mem_region(z
->resource
.start
, 256);
395 * This should (hopefully) be the correct way to identify
396 * all the different GVP SCSI controllers (except for the
400 static struct zorro_device_id gvp11_zorro_tbl
[] __devinitdata
= {
401 { ZORRO_PROD_GVP_COMBO_030_R3_SCSI
, ~0x00ffffff },
402 { ZORRO_PROD_GVP_SERIES_II
, ~0x00ffffff },
403 { ZORRO_PROD_GVP_GFORCE_030_SCSI
, ~0x01ffffff },
404 { ZORRO_PROD_GVP_A530_SCSI
, ~0x01ffffff },
405 { ZORRO_PROD_GVP_COMBO_030_R4_SCSI
, ~0x01ffffff },
406 { ZORRO_PROD_GVP_A1291
, ~0x07ffffff },
407 { ZORRO_PROD_GVP_GFORCE_040_SCSI_1
, ~0x07ffffff },
410 MODULE_DEVICE_TABLE(zorro
, gvp11_zorro_tbl
);
412 static struct zorro_driver gvp11_driver
= {
414 .id_table
= gvp11_zorro_tbl
,
415 .probe
= gvp11_probe
,
416 .remove
= __devexit_p(gvp11_remove
),
419 static int __init
gvp11_init(void)
421 return zorro_register_driver(&gvp11_driver
);
423 module_init(gvp11_init
);
425 static void __exit
gvp11_exit(void)
427 zorro_unregister_driver(&gvp11_driver
);
429 module_exit(gvp11_exit
);
431 MODULE_DESCRIPTION("GVP Series II SCSI");
432 MODULE_LICENSE("GPL");