2 * linux/drivers/acorn/scsi/eesox.c
4 * Copyright (C) 1997-2005 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * This driver is based on experimentation. Hence, it may have made
11 * assumptions about the particular card that I have available, and
12 * may not be reliable!
15 * 01-10-1997 RMK Created, READONLY version
16 * 15-02-1998 RMK READ/WRITE version
17 * added DMA support and hardware definitions
18 * 14-03-1998 RMK Updated DMA support
19 * Added terminator control
20 * 15-04-1998 RMK Only do PIO if FAS216 will allow it.
21 * 27-06-1998 RMK Changed asm/delay.h to linux/delay.h
22 * 02-04-2000 RMK 0.0.3 Fixed NO_IRQ/NO_DMA problem, updated for new
23 * error handling code.
25 #include <linux/module.h>
26 #include <linux/blkdev.h>
27 #include <linux/kernel.h>
28 #include <linux/string.h>
29 #include <linux/ioport.h>
30 #include <linux/proc_fs.h>
31 #include <linux/delay.h>
32 #include <linux/interrupt.h>
33 #include <linux/init.h>
34 #include <linux/dma-mapping.h>
38 #include <asm/ecard.h>
39 #include <asm/pgtable.h>
42 #include <scsi/scsi_host.h>
46 #include <scsi/scsicam.h>
48 #define EESOX_FAS216_OFFSET 0x3000
49 #define EESOX_FAS216_SHIFT 5
51 #define EESOX_DMASTAT 0x2800
52 #define EESOX_STAT_INTR 0x01
53 #define EESOX_STAT_DMA 0x02
55 #define EESOX_CONTROL 0x2800
56 #define EESOX_INTR_ENABLE 0x04
57 #define EESOX_TERM_ENABLE 0x02
58 #define EESOX_RESET 0x01
60 #define EESOX_DMADATA 0x3800
62 #define VERSION "1.10 (17/01/2003 2.5.59)"
65 * Use term=0,1,0,0,0 to turn terminators on/off
67 static int term
[MAX_ECARDS
] = { 1, 1, 1, 1, 1, 1, 1, 1 };
71 struct eesoxscsi_info
{
73 struct expansion_card
*ec
;
75 void __iomem
*ctl_port
;
77 struct scatterlist sg
[NR_SG
]; /* Scatter DMA list */
80 /* Prototype: void eesoxscsi_irqenable(ec, irqnr)
81 * Purpose : Enable interrupts on EESOX SCSI card
82 * Params : ec - expansion card structure
83 * : irqnr - interrupt number
86 eesoxscsi_irqenable(struct expansion_card
*ec
, int irqnr
)
88 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)ec
->irq_data
;
90 info
->control
|= EESOX_INTR_ENABLE
;
92 writeb(info
->control
, info
->ctl_port
);
95 /* Prototype: void eesoxscsi_irqdisable(ec, irqnr)
96 * Purpose : Disable interrupts on EESOX SCSI card
97 * Params : ec - expansion card structure
98 * : irqnr - interrupt number
101 eesoxscsi_irqdisable(struct expansion_card
*ec
, int irqnr
)
103 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)ec
->irq_data
;
105 info
->control
&= ~EESOX_INTR_ENABLE
;
107 writeb(info
->control
, info
->ctl_port
);
110 static const expansioncard_ops_t eesoxscsi_ops
= {
111 .irqenable
= eesoxscsi_irqenable
,
112 .irqdisable
= eesoxscsi_irqdisable
,
115 /* Prototype: void eesoxscsi_terminator_ctl(*host, on_off)
116 * Purpose : Turn the EESOX SCSI terminators on or off
117 * Params : host - card to turn on/off
118 * : on_off - !0 to turn on, 0 to turn off
121 eesoxscsi_terminator_ctl(struct Scsi_Host
*host
, int on_off
)
123 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
126 spin_lock_irqsave(host
->host_lock
, flags
);
128 info
->control
|= EESOX_TERM_ENABLE
;
130 info
->control
&= ~EESOX_TERM_ENABLE
;
132 writeb(info
->control
, info
->ctl_port
);
133 spin_unlock_irqrestore(host
->host_lock
, flags
);
136 /* Prototype: void eesoxscsi_intr(irq, *dev_id, *regs)
137 * Purpose : handle interrupts from EESOX SCSI card
138 * Params : irq - interrupt number
139 * dev_id - user-defined (Scsi_Host structure)
142 eesoxscsi_intr(int irq
, void *dev_id
)
144 struct eesoxscsi_info
*info
= dev_id
;
146 return fas216_intr(&info
->info
);
149 /* Prototype: fasdmatype_t eesoxscsi_dma_setup(host, SCpnt, direction, min_type)
150 * Purpose : initialises DMA/PIO
151 * Params : host - host
153 * direction - DMA on to/off of card
154 * min_type - minimum DMA support that we must have for this transfer
155 * Returns : type of transfer to be performed
158 eesoxscsi_dma_setup(struct Scsi_Host
*host
, struct scsi_pointer
*SCp
,
159 fasdmadir_t direction
, fasdmatype_t min_type
)
161 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
162 struct device
*dev
= scsi_get_device(host
);
163 int dmach
= info
->info
.scsi
.dma
;
165 if (dmach
!= NO_DMA
&&
166 (min_type
== fasdma_real_all
|| SCp
->this_residual
>= 512)) {
167 int bufs
, map_dir
, dma_dir
;
169 bufs
= copy_SCp_to_sg(&info
->sg
[0], SCp
, NR_SG
);
171 if (direction
== DMA_OUT
)
172 map_dir
= DMA_TO_DEVICE
,
173 dma_dir
= DMA_MODE_WRITE
;
175 map_dir
= DMA_FROM_DEVICE
,
176 dma_dir
= DMA_MODE_READ
;
178 dma_map_sg(dev
, info
->sg
, bufs
, map_dir
);
181 set_dma_sg(dmach
, info
->sg
, bufs
);
182 set_dma_mode(dmach
, dma_dir
);
184 return fasdma_real_all
;
187 * We don't do DMA, we only do slow PIO
189 * Some day, we will do Pseudo DMA
191 return fasdma_pseudo
;
194 static void eesoxscsi_buffer_in(void *buf
, int length
, void __iomem
*base
)
196 const void __iomem
*reg_fas
= base
+ EESOX_FAS216_OFFSET
;
197 const void __iomem
*reg_dmastat
= base
+ EESOX_DMASTAT
;
198 const void __iomem
*reg_dmadata
= base
+ EESOX_DMADATA
;
199 register const unsigned long mask
= 0xffff;
207 status
= readb(reg_fas
+ (REG_STAT
<< EESOX_FAS216_SHIFT
));
208 if (status
& STAT_INT
)
212 * DMA request active?
214 status
= readb(reg_dmastat
);
215 if (!(status
& EESOX_STAT_DMA
))
219 * Get number of bytes in FIFO
221 status
= readb(reg_fas
+ (REG_CFIS
<< EESOX_FAS216_SHIFT
)) & CFIS_CF
;
230 if (((u32
)buf
) & 2 && status
>= 2) {
231 *(u16
*)buf
= readl(reg_dmadata
);
238 unsigned long l1
, l2
;
240 l1
= readl(reg_dmadata
) & mask
;
241 l1
|= readl(reg_dmadata
) << 16;
242 l2
= readl(reg_dmadata
) & mask
;
243 l2
|= readl(reg_dmadata
) << 16;
255 l1
= readl(reg_dmadata
) & mask
;
256 l1
|= readl(reg_dmadata
) << 16;
265 *(u16
*)buf
= readl(reg_dmadata
);
272 static void eesoxscsi_buffer_out(void *buf
, int length
, void __iomem
*base
)
274 const void __iomem
*reg_fas
= base
+ EESOX_FAS216_OFFSET
;
275 const void __iomem
*reg_dmastat
= base
+ EESOX_DMASTAT
;
276 const void __iomem
*reg_dmadata
= base
+ EESOX_DMADATA
;
284 status
= readb(reg_fas
+ (REG_STAT
<< EESOX_FAS216_SHIFT
));
285 if (status
& STAT_INT
)
289 * DMA request active?
291 status
= readb(reg_dmastat
);
292 if (!(status
& EESOX_STAT_DMA
))
296 * Get number of bytes in FIFO
298 status
= readb(reg_fas
+ (REG_CFIS
<< EESOX_FAS216_SHIFT
)) & CFIS_CF
;
301 status
= 16 - status
;
309 if (((u32
)buf
) & 2 && status
>= 2) {
310 writel(*(u16
*)buf
<< 16, reg_dmadata
);
317 unsigned long l1
, l2
;
324 writel(l1
<< 16, reg_dmadata
);
325 writel(l1
, reg_dmadata
);
326 writel(l2
<< 16, reg_dmadata
);
327 writel(l2
, reg_dmadata
);
338 writel(l1
<< 16, reg_dmadata
);
339 writel(l1
, reg_dmadata
);
345 writel(*(u16
*)buf
<< 16, reg_dmadata
);
353 eesoxscsi_dma_pseudo(struct Scsi_Host
*host
, struct scsi_pointer
*SCp
,
354 fasdmadir_t dir
, int transfer_size
)
356 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
358 eesoxscsi_buffer_in(SCp
->ptr
, SCp
->this_residual
, info
->base
);
360 eesoxscsi_buffer_out(SCp
->ptr
, SCp
->this_residual
, info
->base
);
364 /* Prototype: int eesoxscsi_dma_stop(host, SCpnt)
365 * Purpose : stops DMA/PIO
366 * Params : host - host
370 eesoxscsi_dma_stop(struct Scsi_Host
*host
, struct scsi_pointer
*SCp
)
372 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
373 if (info
->info
.scsi
.dma
!= NO_DMA
)
374 disable_dma(info
->info
.scsi
.dma
);
377 /* Prototype: const char *eesoxscsi_info(struct Scsi_Host * host)
378 * Purpose : returns a descriptive string about this interface,
379 * Params : host - driver host structure to return info for.
380 * Returns : pointer to a static buffer containing null terminated string.
382 const char *eesoxscsi_info(struct Scsi_Host
*host
)
384 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
385 static char string
[150];
387 sprintf(string
, "%s (%s) in slot %d v%s terminators o%s",
388 host
->hostt
->name
, info
->info
.scsi
.type
, info
->ec
->slot_no
,
389 VERSION
, info
->control
& EESOX_TERM_ENABLE
? "n" : "ff");
394 /* Prototype: int eesoxscsi_set_proc_info(struct Scsi_Host *host, char *buffer, int length)
395 * Purpose : Set a driver specific function
396 * Params : host - host to setup
397 * : buffer - buffer containing string describing operation
398 * : length - length of string
399 * Returns : -EINVAL, or 0
402 eesoxscsi_set_proc_info(struct Scsi_Host
*host
, char *buffer
, int length
)
406 if (length
>= 9 && strncmp(buffer
, "EESOXSCSI", 9) == 0) {
410 if (length
>= 5 && strncmp(buffer
, "term=", 5) == 0) {
411 if (buffer
[5] == '1')
412 eesoxscsi_terminator_ctl(host
, 1);
413 else if (buffer
[5] == '0')
414 eesoxscsi_terminator_ctl(host
, 0);
425 /* Prototype: int eesoxscsi_proc_info(char *buffer, char **start, off_t offset,
426 * int length, int host_no, int inout)
427 * Purpose : Return information about the driver to a user process accessing
428 * the /proc filesystem.
429 * Params : buffer - a buffer to write information to
430 * start - a pointer into this buffer set by this routine to the start
431 * of the required information.
432 * offset - offset into information that we have read upto.
433 * length - length of buffer
434 * host_no - host number to return information for
435 * inout - 0 for reading, 1 for writing.
436 * Returns : length of data written to buffer.
438 int eesoxscsi_proc_info(struct Scsi_Host
*host
, char *buffer
, char **start
, off_t offset
,
439 int length
, int inout
)
441 struct eesoxscsi_info
*info
;
446 return eesoxscsi_set_proc_info(host
, buffer
, length
);
448 info
= (struct eesoxscsi_info
*)host
->hostdata
;
450 p
+= sprintf(p
, "EESOX SCSI driver v%s\n", VERSION
);
451 p
+= fas216_print_host(&info
->info
, p
);
452 p
+= sprintf(p
, "Term : o%s\n",
453 info
->control
& EESOX_TERM_ENABLE
? "n" : "ff");
455 p
+= fas216_print_stats(&info
->info
, p
);
456 p
+= fas216_print_devices(&info
->info
, p
);
458 *start
= buffer
+ offset
;
459 pos
= p
- buffer
- offset
;
466 static ssize_t
eesoxscsi_show_term(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
468 struct expansion_card
*ec
= ECARD_DEV(dev
);
469 struct Scsi_Host
*host
= ecard_get_drvdata(ec
);
470 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
472 return sprintf(buf
, "%d\n", info
->control
& EESOX_TERM_ENABLE
? 1 : 0);
475 static ssize_t
eesoxscsi_store_term(struct device
*dev
, struct device_attribute
*attr
, const char *buf
, size_t len
)
477 struct expansion_card
*ec
= ECARD_DEV(dev
);
478 struct Scsi_Host
*host
= ecard_get_drvdata(ec
);
479 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
483 spin_lock_irqsave(host
->host_lock
, flags
);
485 info
->control
|= EESOX_TERM_ENABLE
;
487 info
->control
&= ~EESOX_TERM_ENABLE
;
489 writeb(info
->control
, info
->ctl_port
);
490 spin_unlock_irqrestore(host
->host_lock
, flags
);
496 static DEVICE_ATTR(bus_term
, S_IRUGO
| S_IWUSR
,
497 eesoxscsi_show_term
, eesoxscsi_store_term
);
499 static struct scsi_host_template eesox_template
= {
500 .module
= THIS_MODULE
,
501 .proc_info
= eesoxscsi_proc_info
,
502 .name
= "EESOX SCSI",
503 .info
= eesoxscsi_info
,
504 .queuecommand
= fas216_queue_command
,
505 .eh_host_reset_handler
= fas216_eh_host_reset
,
506 .eh_bus_reset_handler
= fas216_eh_bus_reset
,
507 .eh_device_reset_handler
= fas216_eh_device_reset
,
508 .eh_abort_handler
= fas216_eh_abort
,
511 .sg_tablesize
= SG_ALL
,
513 .use_clustering
= DISABLE_CLUSTERING
,
514 .proc_name
= "eesox",
518 eesoxscsi_probe(struct expansion_card
*ec
, const struct ecard_id
*id
)
520 struct Scsi_Host
*host
;
521 struct eesoxscsi_info
*info
;
525 ret
= ecard_request_resources(ec
);
529 base
= ecardm_iomap(ec
, ECARD_RES_IOCFAST
, 0, 0);
535 host
= scsi_host_alloc(&eesox_template
,
536 sizeof(struct eesoxscsi_info
));
542 ecard_set_drvdata(ec
, host
);
544 info
= (struct eesoxscsi_info
*)host
->hostdata
;
547 info
->ctl_port
= base
+ EESOX_CONTROL
;
548 info
->control
= term
[ec
->slot_no
] ? EESOX_TERM_ENABLE
: 0;
549 writeb(info
->control
, info
->ctl_port
);
551 info
->info
.scsi
.io_base
= base
+ EESOX_FAS216_OFFSET
;
552 info
->info
.scsi
.io_shift
= EESOX_FAS216_SHIFT
;
553 info
->info
.scsi
.irq
= ec
->irq
;
554 info
->info
.scsi
.dma
= ec
->dma
;
555 info
->info
.ifcfg
.clockrate
= 40; /* MHz */
556 info
->info
.ifcfg
.select_timeout
= 255;
557 info
->info
.ifcfg
.asyncperiod
= 200; /* ns */
558 info
->info
.ifcfg
.sync_max_depth
= 7;
559 info
->info
.ifcfg
.cntl3
= CNTL3_FASTSCSI
| CNTL3_FASTCLK
;
560 info
->info
.ifcfg
.disconnect_ok
= 1;
561 info
->info
.ifcfg
.wide_max_size
= 0;
562 info
->info
.ifcfg
.capabilities
= FASCAP_PSEUDODMA
;
563 info
->info
.dma
.setup
= eesoxscsi_dma_setup
;
564 info
->info
.dma
.pseudo
= eesoxscsi_dma_pseudo
;
565 info
->info
.dma
.stop
= eesoxscsi_dma_stop
;
567 ec
->irqaddr
= base
+ EESOX_DMASTAT
;
568 ec
->irqmask
= EESOX_STAT_INTR
;
570 ecard_setirq(ec
, &eesoxscsi_ops
, info
);
572 device_create_file(&ec
->dev
, &dev_attr_bus_term
);
574 ret
= fas216_init(host
);
578 ret
= request_irq(ec
->irq
, eesoxscsi_intr
, 0, "eesoxscsi", info
);
580 printk("scsi%d: IRQ%d not free: %d\n",
581 host
->host_no
, ec
->irq
, ret
);
585 if (info
->info
.scsi
.dma
!= NO_DMA
) {
586 if (request_dma(info
->info
.scsi
.dma
, "eesox")) {
587 printk("scsi%d: DMA%d not free, DMA disabled\n",
588 host
->host_no
, info
->info
.scsi
.dma
);
589 info
->info
.scsi
.dma
= NO_DMA
;
591 set_dma_speed(info
->info
.scsi
.dma
, 180);
592 info
->info
.ifcfg
.capabilities
|= FASCAP_DMA
;
593 info
->info
.ifcfg
.cntl3
|= CNTL3_BS8
;
597 ret
= fas216_add(host
, &ec
->dev
);
601 if (info
->info
.scsi
.dma
!= NO_DMA
)
602 free_dma(info
->info
.scsi
.dma
);
603 free_irq(ec
->irq
, host
);
609 device_remove_file(&ec
->dev
, &dev_attr_bus_term
);
613 ecard_release_resources(ec
);
619 static void __devexit
eesoxscsi_remove(struct expansion_card
*ec
)
621 struct Scsi_Host
*host
= ecard_get_drvdata(ec
);
622 struct eesoxscsi_info
*info
= (struct eesoxscsi_info
*)host
->hostdata
;
624 ecard_set_drvdata(ec
, NULL
);
627 if (info
->info
.scsi
.dma
!= NO_DMA
)
628 free_dma(info
->info
.scsi
.dma
);
629 free_irq(ec
->irq
, info
);
631 device_remove_file(&ec
->dev
, &dev_attr_bus_term
);
633 fas216_release(host
);
635 ecard_release_resources(ec
);
638 static const struct ecard_id eesoxscsi_cids
[] = {
639 { MANU_EESOX
, PROD_EESOX_SCSI2
},
643 static struct ecard_driver eesoxscsi_driver
= {
644 .probe
= eesoxscsi_probe
,
645 .remove
= __devexit_p(eesoxscsi_remove
),
646 .id_table
= eesoxscsi_cids
,
652 static int __init
eesox_init(void)
654 return ecard_register_driver(&eesoxscsi_driver
);
657 static void __exit
eesox_exit(void)
659 ecard_remove_driver(&eesoxscsi_driver
);
662 module_init(eesox_init
);
663 module_exit(eesox_exit
);
665 MODULE_AUTHOR("Russell King");
666 MODULE_DESCRIPTION("EESOX 'Fast' SCSI driver for Acorn machines");
667 module_param_array(term
, int, NULL
, 0);
668 MODULE_PARM_DESC(term
, "SCSI bus termination");
669 MODULE_LICENSE("GPL");