This source file includes following definitions.
- aha1740_makecode
- aha1740_test_port
- aha1740_info
- aha1740_intr_handle
- aha1740_queuecommand
- internal_done
- aha1740_command
- aha1740_getconfig
- aha1740_detect
- aha1740_abort
- aha1740_reset
- aha1740_biosparam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 #include <linux/kernel.h>
21 #include <linux/head.h>
22 #include <linux/types.h>
23 #include <linux/string.h>
24
25 #include <linux/sched.h>
26 #include <asm/dma.h>
27
28 #include <asm/system.h>
29 #include <asm/io.h>
30 #include "../blk.h"
31 #include "scsi.h"
32 #include "hosts.h"
33
34 #include "aha1740.h"
35
36
37
38
39
40 #ifdef DEBUG
41 #define DEB(x) x
42 #else
43 #define DEB(x)
44 #endif
45
46
47
48
49
50 static unsigned int slot, base;
51 static unsigned char irq_level;
52
53 static struct ecb ecb[AHA1740_ECBS];
54
55 static int aha1740_last_ecb_used = 0;
56
57 int aha1740_makecode(unchar *sense, unchar *status)
58 {
59 struct statusword
60 {
61 ushort don:1,
62 du:1,
63 :1, qf:1,
64 sc:1,
65 dor:1,
66 ch:1,
67 intr:1,
68 asa:1,
69 sns:1,
70 :1, ini:1,
71 me:1,
72 :1, eca:1,
73 :1;
74 } status_word;
75 int retval = DID_OK;
76
77 status_word = * (struct statusword *) status;
78 #ifdef DEBUG
79 printk("makecode from %x,%x,%x,%x %x,%x,%x,%x",status[0],status[1],status[2],status[3],
80 sense[0],sense[1],sense[2],sense[3]);
81 #endif
82 if (!status_word.don)
83 {
84 if ( (status[1]&0x18) || status_word.sc )
85 {
86
87 switch ( status[2] )
88 {
89 case 0x12:
90 if ( status_word.dor )
91 retval=DID_ERROR;
92
93 case 0x00:
94 break;
95 case 0x11:
96 case 0x21:
97 retval=DID_TIME_OUT;
98 break;
99 case 0x0a:
100 retval=DID_BAD_TARGET;
101 break;
102 case 0x04:
103 case 0x05:
104 retval=DID_ABORT;
105
106 break;
107 default:
108 retval=DID_ERROR;
109 }
110 }
111 else
112 {
113 if ( status_word.qf )
114 {
115 retval = DID_TIME_OUT;
116
117 printk("aha1740.c: WARNING: AHA1740 queue overflow!\n");
118 }
119 else if ( status[0]&0x60 )
120 {
121 retval = DID_ERROR;
122 }
123
124
125
126 }
127 }
128
129 return status[3] | retval << 16;
130 }
131
132 int aha1740_test_port(void)
133 {
134 char name[4],tmp;
135
136
137 name[0]= 'A' -1 + ((tmp = inb(HID0)) >> 2);
138 name[1]= 'A' -1 + ((tmp & 3) << 3);
139 name[1]+= ((tmp = inb(HID1)) >> 5)&0x7;
140 name[2]= 'A' -1 + (tmp & 0x1f);
141 name[3]=0;
142 tmp = inb(HID2);
143 if ( strcmp ( name, HID_MFG ) || inb(HID2) != HID_PRD )
144 return 0;
145
146
147
148
149
150 if ( inb(EBCNTRL) != EBCNTRL_VALUE )
151 {
152 printk("aha1740: Board detected, but EBCNTRL = %x, so disabled it.\n",
153 inb(EBCNTRL));
154 return 0;
155 }
156
157 if ( inb(PORTADR) & PORTADDR_ENH )
158 return 1;
159
160 printk("aha1740: Board detected, but not in enhanced mode, so disabled it.\n");
161 return 0;
162 }
163
164 const char *aha1740_info(void)
165 {
166 static char buffer[] = "Adaptec 174x (EISA)";
167 return buffer;
168 }
169
170
171 void aha1740_intr_handle(int foo)
172 {
173 void (*my_done)(Scsi_Cmnd *);
174 int errstatus, adapstat;
175 int number_serviced;
176 struct ecb *ecbptr;
177 Scsi_Cmnd *SCtmp;
178
179 number_serviced = 0;
180
181 while(inb(G2STAT) & G2STAT_INTPEND)
182 {
183 DEB(printk("aha1740_intr top of loop.\n"));
184 adapstat = inb(G2INTST);
185 outb(G2CNTRL_IRST,G2CNTRL);
186
187 switch ( adapstat & G2INTST_MASK )
188 {
189 case G2INTST_CCBRETRY:
190 case G2INTST_CCBERROR:
191 case G2INTST_CCBGOOD:
192 ecbptr = (void *) ( ((ulong) inb(MBOXIN0)) +
193 ((ulong) inb(MBOXIN1) <<8) +
194 ((ulong) inb(MBOXIN2) <<16) +
195 ((ulong) inb(MBOXIN3) <<24) );
196 outb(G2CNTRL_HRDY,G2CNTRL);
197 SCtmp = ecbptr->SCpnt;
198 if (SCtmp->host_scribble)
199 scsi_free(SCtmp->host_scribble, 512);
200
201
202
203 if ( (adapstat & G2INTST_MASK) == G2INTST_CCBERROR )
204 {
205 memcpy(SCtmp->sense_buffer, ecbptr->sense,
206 sizeof(SCtmp->sense_buffer));
207 errstatus = aha1740_makecode(ecbptr->sense,ecbptr->status);
208 }
209 else
210 errstatus = 0;
211 DEB(if (errstatus) printk("aha1740_intr_handle: returning %6x\n", errstatus));
212 SCtmp->result = errstatus;
213 my_done = ecbptr->done;
214 memset(ecbptr,0,sizeof(struct ecb));
215 if ( my_done )
216 my_done(SCtmp);
217 break;
218 case G2INTST_HARDFAIL:
219 printk("aha1740 hardware failure!\n");
220 panic("aha1740.c");
221 case G2INTST_ASNEVENT:
222 printk("aha1740 asynchronous event: %02x %02x %02x %02x %02x\n",adapstat,
223 inb(MBOXIN0),inb(MBOXIN1),inb(MBOXIN2),inb(MBOXIN3));
224 outb(G2CNTRL_HRDY,G2CNTRL);
225 break;
226 case G2INTST_CMDGOOD:
227
228 break;
229 case G2INTST_CMDERROR:
230
231 break;
232 }
233 number_serviced++;
234 };
235 }
236
237 int aha1740_queuecommand(Scsi_Cmnd * SCpnt, void (*done)(Scsi_Cmnd *))
238 {
239 unchar direction;
240 unchar *cmd = (unchar *) SCpnt->cmnd;
241 unchar target = SCpnt->target;
242 void *buff = SCpnt->request_buffer;
243 int bufflen = SCpnt->request_bufflen;
244 int ecbno;
245 DEB(int i);
246
247
248 if(*cmd == REQUEST_SENSE)
249 {
250 if (bufflen != 16)
251 {
252 printk("Wrong buffer length supplied for request sense (%d)\n",bufflen);
253 panic("aha1740.c");
254 }
255 SCpnt->result = 0;
256 done(SCpnt);
257 return 0;
258 }
259
260 #ifdef DEBUG
261 if (*cmd == READ_10 || *cmd == WRITE_10)
262 i = xscsi2int(cmd+2);
263 else if (*cmd == READ_6 || *cmd == WRITE_6)
264 i = scsi2int(cmd+2);
265 else
266 i = -1;
267 printk("aha1740_queuecommand: dev %d cmd %02x pos %d len %d ", target, *cmd, i, bufflen);
268 printk("scsi cmd:");
269 for (i = 0; i < (COMMAND_SIZE(*cmd)); i++) printk("%02x ", cmd[i]);
270 printk("\n");
271 #endif
272
273
274
275 cli();
276 ecbno = aha1740_last_ecb_used + 1;
277 if (ecbno >= AHA1740_ECBS) ecbno = 0;
278
279 do{
280 if( ! ecb[ecbno].cmdw )
281 break;
282 ecbno++;
283 if (ecbno >= AHA1740_ECBS ) ecbno = 0;
284 } while (ecbno != aha1740_last_ecb_used);
285
286 if( ecb[ecbno].cmdw )
287 panic("Unable to find empty ecb for aha1740.\n");
288
289 ecb[ecbno].cmdw = AHA1740CMD_INIT;
290
291 aha1740_last_ecb_used = ecbno;
292 sti();
293
294 #ifdef DEBUG
295 printk("Sending command (%d %x)...",ecbno, done);
296 #endif
297
298 ecb[ecbno].cdblen = COMMAND_SIZE(*cmd);
299
300 direction = 0;
301 if (*cmd == READ_10 || *cmd == READ_6)
302 direction = 1;
303 else if (*cmd == WRITE_10 || *cmd == WRITE_6)
304 direction = 0;
305
306 memcpy(ecb[ecbno].cdb, cmd, ecb[ecbno].cdblen);
307
308 if (SCpnt->use_sg)
309 {
310 struct scatterlist * sgpnt;
311 struct aha1740_chain * cptr;
312 int i;
313 #ifdef DEBUG
314 unsigned char * ptr;
315 #endif
316 ecb[ecbno].sg = 1;
317 SCpnt->host_scribble = scsi_malloc(512);
318 sgpnt = (struct scatterlist *) SCpnt->request_buffer;
319 cptr = (struct aha1740_chain *) SCpnt->host_scribble;
320 if (cptr == NULL) panic("aha1740.c: unable to allocate DMA memory\n");
321 for(i=0; i<SCpnt->use_sg; i++)
322 {
323 cptr[i].dataptr = (long) sgpnt[i].address;
324 cptr[i].datalen = sgpnt[i].length;
325 }
326 ecb[ecbno].datalen = SCpnt->use_sg * sizeof(struct aha1740_chain);
327 ecb[ecbno].dataptr = (long) cptr;
328 #ifdef DEBUG
329 printk("cptr %x: ",cptr);
330 ptr = (unsigned char *) cptr;
331 for(i=0;i<24;i++) printk("%02x ", ptr[i]);
332 #endif
333 }
334 else
335 {
336 SCpnt->host_scribble = NULL;
337 ecb[ecbno].datalen = bufflen;
338 ecb[ecbno].dataptr = (long) buff;
339 }
340 ecb[ecbno].lun = SCpnt->lun;
341 ecb[ecbno].ses = 1;
342 ecb[ecbno].dir= direction;
343 ecb[ecbno].ars=1;
344 ecb[ecbno].senselen = 12;
345 ecb[ecbno].senseptr = (long) ecb[ecbno].sense;
346 ecb[ecbno].statusptr = (long) ecb[ecbno].status;
347 ecb[ecbno].done = done;
348 ecb[ecbno].SCpnt = SCpnt;
349 #ifdef DEBUG
350 {
351 int i;
352 printk("aha1740_command: sending.. ");
353 for (i = 0; i < sizeof(ecb[ecbno])-10; i++)
354 printk("%02x ", ((unchar *)&ecb[ecbno])[i]);
355 }
356 printk("\n");
357 #endif
358 if (done)
359 {
360
361
362
363
364
365
366
367
368 ulong adrs;
369
370 DEB(printk("aha1740[%d] critical section\n",ecbno));
371 cli();
372 if ( ! (inb(G2STAT) & G2STAT_MBXOUT) )
373 {
374 printk("aha1740[%d]_mbxout wait!\n",ecbno);
375 cli();
376 }
377 while ( ! (inb(G2STAT) & G2STAT_MBXOUT) );
378 adrs = (ulong) &(ecb[ecbno]);
379 outb((char) (adrs&0xff), MBOXOUT0);
380 outb((char) ((adrs>>8)&0xff), MBOXOUT1);
381 outb((char) ((adrs>>16)&0xff), MBOXOUT2);
382 outb((char) ((adrs>>24)&0xff), MBOXOUT3);
383 if ( inb(G2STAT) & G2STAT_BUSY )
384 {
385 printk("aha1740[%d]_attn wait!\n",ecbno);
386 cli();
387 }
388 while ( inb(G2STAT) & G2STAT_BUSY );
389 outb(ATTN_START | (target & 7), ATTN);
390 sti();
391 DEB(printk("aha1740[%d] request queued.\n",ecbno));
392 }
393 else
394 printk("aha1740_queuecommand: done can't be NULL\n");
395
396 return 0;
397 }
398
399 static volatile int internal_done_flag = 0;
400 static volatile int internal_done_errcode = 0;
401
402 static void internal_done(Scsi_Cmnd * SCpnt)
403 {
404 internal_done_errcode = SCpnt->result;
405 ++internal_done_flag;
406 }
407
408 int aha1740_command(Scsi_Cmnd * SCpnt)
409 {
410 aha1740_queuecommand(SCpnt, internal_done);
411
412 while (!internal_done_flag);
413 internal_done_flag = 0;
414 return internal_done_errcode;
415 }
416
417
418
419
420 void aha1740_getconfig(void)
421 {
422 static int intab[] = { 9,10,11,12,0,14,15,0 };
423
424 irq_level = intab [ inb(INTDEF)&0x7 ];
425 }
426
427 int aha1740_detect(int hostnum)
428 {
429 memset(ecb,0,sizeof(ecb));
430 DEB(printk("aha1740_detect: \n"));
431
432 for ( slot=MINEISA; slot <= MAXEISA; slot++ )
433 {
434 base = SLOTBASE(slot);
435 if ( aha1740_test_port()) break;
436 }
437 if ( slot > MAXEISA )
438 return 0;
439
440 aha1740_getconfig();
441
442 if ( (inb(G2STAT) & (G2STAT_MBXOUT | G2STAT_BUSY) ) != G2STAT_MBXOUT )
443 {
444 outb(G2CNTRL_HRST,G2CNTRL);
445 outb(0,G2CNTRL);
446 }
447
448 printk("Configuring Adaptec at IO:%x, IRQ %d\n",base,
449 irq_level);
450
451 DEB(printk("aha1740_detect: enable interrupt channel %d\n", irq_level));
452
453 if (request_irq(irq_level,aha1740_intr_handle))
454 {
455 printk("Unable to allocate IRQ for adaptec controller.\n");
456 return 0;
457 }
458 return 1;
459 }
460
461
462
463
464
465
466
467
468
469 int aha1740_abort(Scsi_Cmnd * SCpnt, int i)
470 {
471 DEB(printk("aha1740_abort called\n"));
472 return 0;
473 }
474
475 int aha1740_reset(void)
476 {
477 DEB(printk("aha1740_reset called\n"));
478 return 0;
479 }
480
481 int aha1740_biosparam(int size, int dev, int* info)
482 {
483 DEB(printk("aha1740_biosparam\n"));
484 info[0] = 64;
485 info[1] = 32;
486 info[2] = size >> 11;
487
488 return 0;
489 }
490
491
492
493