2 * Oak Generic NCR5380 driver
4 * Copyright 1995-2002, Russell King
7 #include <linux/module.h>
8 #include <linux/signal.h>
9 #include <linux/ioport.h>
10 #include <linux/delay.h>
11 #include <linux/blkdev.h>
12 #include <linux/init.h>
14 #include <asm/ecard.h>
16 #include <asm/system.h>
19 #include <scsi/scsi_host.h>
22 /*#define PSEUDO_DMA*/
24 #define OAKSCSI_PUBLIC_RELEASE 1
26 #define NCR5380_read(reg) oakscsi_read(_instance, reg)
27 #define NCR5380_write(reg, value) oakscsi_write(_instance, reg, value)
28 #define NCR5380_intr oakscsi_intr
29 #define NCR5380_queue_command oakscsi_queue_command
30 #define NCR5380_proc_info oakscsi_proc_info
32 #define NCR5380_implementation_fields int port, ctrl
33 #define NCR5380_local_declare() struct Scsi_Host *_instance
34 #define NCR5380_setup(instance) _instance = instance
36 #define BOARD_NORMAL 0
37 #define BOARD_NCR53C400 1
39 #include "../NCR5380.h"
41 #undef START_DMA_INITIATOR_RECEIVE_REG
42 #define START_DMA_INITIATOR_RECEIVE_REG (7 + 128)
44 const char * oakscsi_info (struct Scsi_Host
*spnt
)
49 #define STAT(p) inw(p + 144)
50 extern void inswb(int from
, void *to
, int len
);
52 static inline int NCR5380_pwrite(struct Scsi_Host
*instance
, unsigned char *addr
,
55 int iobase
= instance
->io_port
;
56 printk("writing %p len %d\n",addr
, len
);
62 while(((status
= STAT(iobase
)) & 0x100)==0);
66 static inline int NCR5380_pread(struct Scsi_Host
*instance
, unsigned char *addr
,
69 int iobase
= instance
->io_port
;
70 printk("reading %p len %d\n", addr
, len
);
78 while(((status
= STAT(iobase
)) & 0x100)==0)
81 if(status
& 0x200 || !timeout
)
83 printk("status = %08X\n",status
);
89 inswb(iobase
+ 136, addr
, 128);
95 b
= (unsigned long) inw(iobase
+ 136);
106 #define oakscsi_read(instance,reg) (inb((instance)->io_port + (reg)))
107 #define oakscsi_write(instance,reg,val) (outb((val), (instance)->io_port + (reg)))
111 #include "../NCR5380.c"
113 static struct scsi_host_template oakscsi_template
= {
114 .module
= THIS_MODULE
,
115 .proc_info
= oakscsi_proc_info
,
116 .name
= "Oak 16-bit SCSI",
117 .info
= oakscsi_info
,
118 .queuecommand
= oakscsi_queue_command
,
119 .eh_abort_handler
= NCR5380_abort
,
120 .eh_bus_reset_handler
= NCR5380_bus_reset
,
123 .sg_tablesize
= SG_ALL
,
125 .use_clustering
= DISABLE_CLUSTERING
,
126 .proc_name
= "oakscsi",
130 oakscsi_probe(struct expansion_card
*ec
, const struct ecard_id
*id
)
132 struct Scsi_Host
*host
;
135 host
= scsi_host_alloc(&oakscsi_template
, sizeof(struct NCR5380_hostdata
));
139 host
->io_port
= ecard_address(ec
, ECARD_MEMC
, 0);
140 host
->irq
= IRQ_NONE
;
141 host
->n_io_port
= 255;
144 if (!request_region (host
->io_port
, host
->n_io_port
, "Oak SCSI"))
147 NCR5380_init(host
, 0);
149 printk("scsi%d: at port 0x%08lx irqs disabled",
150 host
->host_no
, host
->io_port
);
151 printk(" options CAN_QUEUE=%d CMD_PER_LUN=%d release=%d",
152 host
->can_queue
, host
->cmd_per_lun
, OAKSCSI_PUBLIC_RELEASE
);
153 printk("\nscsi%d:", host
->host_no
);
154 NCR5380_print_options(host
);
157 ret
= scsi_add_host(host
, &ec
->dev
);
161 scsi_scan_host(host
);
165 release_region(host
->io_port
, host
->n_io_port
);
172 static void __devexit
oakscsi_remove(struct expansion_card
*ec
)
174 struct Scsi_Host
*host
= ecard_get_drvdata(ec
);
176 ecard_set_drvdata(ec
, NULL
);
177 scsi_remove_host(host
);
180 release_region(host
->io_port
, host
->n_io_port
);
184 static const struct ecard_id oakscsi_cids
[] = {
185 { MANU_OAK
, PROD_OAK_SCSI
},
189 static struct ecard_driver oakscsi_driver
= {
190 .probe
= oakscsi_probe
,
191 .remove
= __devexit_p(oakscsi_remove
),
192 .id_table
= oakscsi_cids
,
198 static int __init
oakscsi_init(void)
200 return ecard_register_driver(&oakscsi_driver
);
203 static void __exit
oakscsi_exit(void)
205 ecard_remove_driver(&oakscsi_driver
);
208 module_init(oakscsi_init
);
209 module_exit(oakscsi_exit
);
211 MODULE_AUTHOR("Russell King");
212 MODULE_DESCRIPTION("Oak SCSI driver");
213 MODULE_LICENSE("GPL");