]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | #include <linux/types.h> |
2 | #include <linux/mm.h> | |
3 | #include <linux/blkdev.h> | |
1da177e4 LT |
4 | #include <linux/init.h> |
5 | #include <linux/interrupt.h> | |
6 | ||
7 | #include <asm/setup.h> | |
8 | #include <asm/page.h> | |
9 | #include <asm/pgtable.h> | |
10 | #include <asm/amigaints.h> | |
11 | #include <asm/amigahw.h> | |
12 | #include <linux/zorro.h> | |
13 | #include <asm/irq.h> | |
14 | #include <linux/spinlock.h> | |
15 | ||
16 | #include "scsi.h" | |
17 | #include <scsi/scsi_host.h> | |
18 | #include "wd33c93.h" | |
19 | #include "a2091.h" | |
20 | ||
21 | #include<linux/stat.h> | |
22 | ||
23 | #define DMA(ptr) ((a2091_scsiregs *)((ptr)->base)) | |
24 | #define HDATA(ptr) ((struct WD33C93_hostdata *)((ptr)->hostdata)) | |
25 | ||
7d12e780 | 26 | static irqreturn_t a2091_intr (int irq, void *_instance) |
1da177e4 LT |
27 | { |
28 | unsigned long flags; | |
29 | unsigned int status; | |
30 | struct Scsi_Host *instance = (struct Scsi_Host *)_instance; | |
31 | ||
32 | status = DMA(instance)->ISTR; | |
33 | if (!(status & (ISTR_INT_F|ISTR_INT_P)) || !(status & ISTR_INTS)) | |
34 | return IRQ_NONE; | |
35 | ||
36 | spin_lock_irqsave(instance->host_lock, flags); | |
37 | wd33c93_intr(instance); | |
38 | spin_unlock_irqrestore(instance->host_lock, flags); | |
39 | return IRQ_HANDLED; | |
40 | } | |
41 | ||
65396410 | 42 | static int dma_setup(struct scsi_cmnd *cmd, int dir_in) |
1da177e4 LT |
43 | { |
44 | unsigned short cntr = CNTR_PDMD | CNTR_INTEN; | |
45 | unsigned long addr = virt_to_bus(cmd->SCp.ptr); | |
46 | struct Scsi_Host *instance = cmd->device->host; | |
47 | ||
48 | /* don't allow DMA if the physical address is bad */ | |
7b892806 | 49 | if (addr & A2091_XFER_MASK) |
1da177e4 LT |
50 | { |
51 | HDATA(instance)->dma_bounce_len = (cmd->SCp.this_residual + 511) | |
52 | & ~0x1ff; | |
53 | HDATA(instance)->dma_bounce_buffer = | |
54 | kmalloc (HDATA(instance)->dma_bounce_len, GFP_KERNEL); | |
55 | ||
56 | /* can't allocate memory; use PIO */ | |
57 | if (!HDATA(instance)->dma_bounce_buffer) { | |
58 | HDATA(instance)->dma_bounce_len = 0; | |
59 | return 1; | |
60 | } | |
61 | ||
62 | /* get the physical address of the bounce buffer */ | |
63 | addr = virt_to_bus(HDATA(instance)->dma_bounce_buffer); | |
64 | ||
65 | /* the bounce buffer may not be in the first 16M of physmem */ | |
66 | if (addr & A2091_XFER_MASK) { | |
67 | /* we could use chipmem... maybe later */ | |
68 | kfree (HDATA(instance)->dma_bounce_buffer); | |
69 | HDATA(instance)->dma_bounce_buffer = NULL; | |
70 | HDATA(instance)->dma_bounce_len = 0; | |
71 | return 1; | |
72 | } | |
73 | ||
74 | if (!dir_in) { | |
f2c1afa5 | 75 | /* copy to bounce buffer for a write */ |
1da177e4 LT |
76 | memcpy (HDATA(instance)->dma_bounce_buffer, |
77 | cmd->SCp.ptr, cmd->SCp.this_residual); | |
1da177e4 LT |
78 | } |
79 | } | |
80 | ||
81 | /* setup dma direction */ | |
82 | if (!dir_in) | |
83 | cntr |= CNTR_DDIR; | |
84 | ||
85 | /* remember direction */ | |
86 | HDATA(cmd->device->host)->dma_dir = dir_in; | |
87 | ||
88 | DMA(cmd->device->host)->CNTR = cntr; | |
89 | ||
90 | /* setup DMA *physical* address */ | |
91 | DMA(cmd->device->host)->ACR = addr; | |
92 | ||
93 | if (dir_in){ | |
94 | /* invalidate any cache */ | |
95 | cache_clear (addr, cmd->SCp.this_residual); | |
96 | }else{ | |
97 | /* push any dirty cache */ | |
98 | cache_push (addr, cmd->SCp.this_residual); | |
99 | } | |
100 | /* start DMA */ | |
101 | DMA(cmd->device->host)->ST_DMA = 1; | |
102 | ||
103 | /* return success */ | |
104 | return 0; | |
105 | } | |
106 | ||
65396410 | 107 | static void dma_stop(struct Scsi_Host *instance, struct scsi_cmnd *SCpnt, |
1da177e4 LT |
108 | int status) |
109 | { | |
110 | /* disable SCSI interrupts */ | |
111 | unsigned short cntr = CNTR_PDMD; | |
112 | ||
113 | if (!HDATA(instance)->dma_dir) | |
114 | cntr |= CNTR_DDIR; | |
115 | ||
116 | /* disable SCSI interrupts */ | |
117 | DMA(instance)->CNTR = cntr; | |
118 | ||
119 | /* flush if we were reading */ | |
120 | if (HDATA(instance)->dma_dir) { | |
121 | DMA(instance)->FLUSH = 1; | |
122 | while (!(DMA(instance)->ISTR & ISTR_FE_FLG)) | |
123 | ; | |
124 | } | |
125 | ||
126 | /* clear a possible interrupt */ | |
127 | DMA(instance)->CINT = 1; | |
128 | ||
129 | /* stop DMA */ | |
130 | DMA(instance)->SP_DMA = 1; | |
131 | ||
132 | /* restore the CONTROL bits (minus the direction flag) */ | |
133 | DMA(instance)->CNTR = CNTR_PDMD | CNTR_INTEN; | |
134 | ||
135 | /* copy from a bounce buffer, if necessary */ | |
136 | if (status && HDATA(instance)->dma_bounce_buffer) { | |
f2c1afa5 | 137 | if( HDATA(instance)->dma_dir ) |
1da177e4 LT |
138 | memcpy (SCpnt->SCp.ptr, |
139 | HDATA(instance)->dma_bounce_buffer, | |
140 | SCpnt->SCp.this_residual); | |
f2c1afa5 BH |
141 | kfree (HDATA(instance)->dma_bounce_buffer); |
142 | HDATA(instance)->dma_bounce_buffer = NULL; | |
143 | HDATA(instance)->dma_bounce_len = 0; | |
1da177e4 LT |
144 | } |
145 | } | |
146 | ||
d0be4a7d | 147 | int __init a2091_detect(struct scsi_host_template *tpnt) |
1da177e4 LT |
148 | { |
149 | static unsigned char called = 0; | |
150 | struct Scsi_Host *instance; | |
151 | unsigned long address; | |
152 | struct zorro_dev *z = NULL; | |
153 | wd33c93_regs regs; | |
154 | int num_a2091 = 0; | |
155 | ||
156 | if (!MACH_IS_AMIGA || called) | |
157 | return 0; | |
158 | called = 1; | |
159 | ||
160 | tpnt->proc_name = "A2091"; | |
161 | tpnt->proc_info = &wd33c93_proc_info; | |
162 | ||
163 | while ((z = zorro_find_device(ZORRO_WILDCARD, z))) { | |
164 | if (z->id != ZORRO_PROD_CBM_A590_A2091_1 && | |
165 | z->id != ZORRO_PROD_CBM_A590_A2091_2) | |
166 | continue; | |
167 | address = z->resource.start; | |
168 | if (!request_mem_region(address, 256, "wd33c93")) | |
169 | continue; | |
170 | ||
171 | instance = scsi_register (tpnt, sizeof (struct WD33C93_hostdata)); | |
172 | if (instance == NULL) { | |
173 | release_mem_region(address, 256); | |
174 | continue; | |
175 | } | |
176 | instance->base = ZTWO_VADDR(address); | |
177 | instance->irq = IRQ_AMIGA_PORTS; | |
178 | instance->unique_id = z->slotaddr; | |
179 | DMA(instance)->DAWR = DAWR_A2091; | |
180 | regs.SASR = &(DMA(instance)->SASR); | |
181 | regs.SCMD = &(DMA(instance)->SCMD); | |
a579dab1 JB |
182 | HDATA(instance)->no_sync = 0xff; |
183 | HDATA(instance)->fast = 0; | |
184 | HDATA(instance)->dma_mode = CTRL_DMA; | |
1da177e4 | 185 | wd33c93_init(instance, regs, dma_setup, dma_stop, WD33C93_FS_8_10); |
1d6f359a | 186 | request_irq(IRQ_AMIGA_PORTS, a2091_intr, IRQF_SHARED, "A2091 SCSI", |
1da177e4 LT |
187 | instance); |
188 | DMA(instance)->CNTR = CNTR_PDMD | CNTR_INTEN; | |
189 | num_a2091++; | |
190 | } | |
191 | ||
192 | return num_a2091; | |
193 | } | |
194 | ||
65396410 | 195 | static int a2091_bus_reset(struct scsi_cmnd *cmd) |
1da177e4 LT |
196 | { |
197 | /* FIXME perform bus-specific reset */ | |
68b3aa7c | 198 | |
df0ae249 JG |
199 | /* FIXME 2: kill this function, and let midlayer fall back |
200 | to the same action, calling wd33c93_host_reset() */ | |
201 | ||
68b3aa7c | 202 | spin_lock_irq(cmd->device->host->host_lock); |
1da177e4 | 203 | wd33c93_host_reset(cmd); |
68b3aa7c JG |
204 | spin_unlock_irq(cmd->device->host->host_lock); |
205 | ||
1da177e4 LT |
206 | return SUCCESS; |
207 | } | |
208 | ||
209 | #define HOSTS_C | |
210 | ||
d0be4a7d | 211 | static struct scsi_host_template driver_template = { |
1da177e4 LT |
212 | .proc_name = "A2901", |
213 | .name = "Commodore A2091/A590 SCSI", | |
214 | .detect = a2091_detect, | |
215 | .release = a2091_release, | |
216 | .queuecommand = wd33c93_queuecommand, | |
217 | .eh_abort_handler = wd33c93_abort, | |
218 | .eh_bus_reset_handler = a2091_bus_reset, | |
219 | .eh_host_reset_handler = wd33c93_host_reset, | |
220 | .can_queue = CAN_QUEUE, | |
221 | .this_id = 7, | |
222 | .sg_tablesize = SG_ALL, | |
223 | .cmd_per_lun = CMD_PER_LUN, | |
224 | .use_clustering = DISABLE_CLUSTERING | |
225 | }; | |
226 | ||
227 | ||
228 | #include "scsi_module.c" | |
229 | ||
230 | int a2091_release(struct Scsi_Host *instance) | |
231 | { | |
232 | #ifdef MODULE | |
233 | DMA(instance)->CNTR = 0; | |
234 | release_mem_region(ZTWO_PADDR(instance->base), 256); | |
235 | free_irq(IRQ_AMIGA_PORTS, instance); | |
236 | wd33c93_release(); | |
237 | #endif | |
238 | return 1; | |
239 | } | |
240 | ||
241 | MODULE_LICENSE("GPL"); |