]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/ahb/ahb.c
This commit was generated by cvs2svn to compensate for changes in r167612,
[FreeBSD/FreeBSD.git] / sys / dev / ahb / ahb.c
1 /*-
2  * CAM SCSI device driver for the Adaptec 174X SCSI Host adapter
3  *
4  * Copyright (c) 1998 Justin T. Gibbs
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice immediately at the beginning of the file, without modification,
12  *    this list of conditions, and the following disclaimer.
13  * 2. The name of the author may not be used to endorse or promote products
14  *    derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26  * SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/kernel.h>
34 #include <sys/malloc.h>
35 #include <sys/module.h>
36 #include <sys/lock.h>
37 #include <sys/mutex.h>
38 #include <sys/bus.h>
39
40 #include <machine/bus.h>
41 #include <machine/resource.h>
42 #include <sys/rman.h>
43
44 #include <cam/cam.h>
45 #include <cam/cam_ccb.h>
46 #include <cam/cam_sim.h>
47 #include <cam/cam_xpt_sim.h>
48 #include <cam/cam_debug.h>
49
50 #include <cam/scsi/scsi_message.h>
51
52 #include <dev/eisa/eisaconf.h>
53
54 #include <dev/ahb/ahbreg.h>
55
56 #define ccb_ecb_ptr spriv_ptr0
57 #define ccb_ahb_ptr spriv_ptr1
58
59 #define ahb_inb(ahb, port)                              \
60         bus_space_read_1((ahb)->tag, (ahb)->bsh, port)
61
62 #define ahb_inl(ahb, port)                              \
63         bus_space_read_4((ahb)->tag, (ahb)->bsh, port)
64
65 #define ahb_outb(ahb, port, value)                      \
66         bus_space_write_1((ahb)->tag, (ahb)->bsh, port, value)
67
68 #define ahb_outl(ahb, port, value)                      \
69         bus_space_write_4((ahb)->tag, (ahb)->bsh, port, value)
70
71 static const char               *ahbmatch(eisa_id_t type);
72 static struct ahb_softc         *ahballoc(u_long unit, struct resource *res);
73 static void                      ahbfree(struct ahb_softc *ahb);
74 static int                       ahbreset(struct ahb_softc *ahb);
75 static void                      ahbmapecbs(void *arg, bus_dma_segment_t *segs,
76                                             int nseg, int error);
77 static int                       ahbxptattach(struct ahb_softc *ahb);
78 static void                      ahbhandleimmed(struct ahb_softc *ahb,
79                                                 u_int32_t mbox, u_int intstat);
80 static void                      ahbcalcresid(struct ahb_softc *ahb,
81                                               struct ecb *ecb, union ccb *ccb);
82 static __inline void             ahbdone(struct ahb_softc *ahb, u_int32_t mbox,
83                                          u_int intstat);
84 static void                      ahbintr(void *arg);
85 static bus_dmamap_callback_t     ahbexecuteecb;
86 static void                      ahbaction(struct cam_sim *sim, union ccb *ccb);
87 static void                      ahbpoll(struct cam_sim *sim);
88
89 /* Our timeout handler */
90 static timeout_t ahbtimeout;
91
92 static __inline struct ecb*     ahbecbget(struct ahb_softc *ahb);
93 static __inline void            ahbecbfree(struct ahb_softc* ahb,
94                                            struct ecb* ecb);
95 static __inline u_int32_t       ahbecbvtop(struct ahb_softc *ahb,
96                                            struct ecb *ecb);
97 static __inline struct ecb*     ahbecbptov(struct ahb_softc *ahb,
98                                            u_int32_t ecb_addr);
99 static __inline u_int32_t       ahbstatuspaddr(u_int32_t ecb_paddr);
100 static __inline u_int32_t       ahbsensepaddr(u_int32_t ecb_paddr);
101 static __inline u_int32_t       ahbsgpaddr(u_int32_t ecb_paddr);
102 static __inline void            ahbqueuembox(struct ahb_softc *ahb,
103                                              u_int32_t mboxval,
104                                              u_int attn_code);
105
106 static __inline struct ecb*
107 ahbecbget(struct ahb_softc *ahb)
108 {
109         struct  ecb* ecb;
110         int     s;
111
112         s = splcam();
113         if ((ecb = SLIST_FIRST(&ahb->free_ecbs)) != NULL)
114                 SLIST_REMOVE_HEAD(&ahb->free_ecbs, links);
115         splx(s);
116
117         return (ecb);
118 }
119
120 static __inline void
121 ahbecbfree(struct ahb_softc* ahb, struct ecb* ecb)
122 {
123         int s;
124
125         s = splcam();
126         ecb->state = ECB_FREE;
127         SLIST_INSERT_HEAD(&ahb->free_ecbs, ecb, links);
128         splx(s);
129 }
130
131 static __inline u_int32_t
132 ahbecbvtop(struct ahb_softc *ahb, struct ecb *ecb)
133 {
134         return (ahb->ecb_physbase
135               + (u_int32_t)((caddr_t)ecb - (caddr_t)ahb->ecb_array));
136 }
137
138 static __inline struct ecb*
139 ahbecbptov(struct ahb_softc *ahb, u_int32_t ecb_addr)
140 {
141         return (ahb->ecb_array
142               + ((struct ecb*)(uintptr_t)ecb_addr 
143                 - (struct ecb*)(uintptr_t)ahb->ecb_physbase));
144 }
145
146 static __inline u_int32_t
147 ahbstatuspaddr(u_int32_t ecb_paddr)
148 {
149         return (ecb_paddr + offsetof(struct ecb, status));
150 }
151
152 static __inline u_int32_t
153 ahbsensepaddr(u_int32_t ecb_paddr)
154 {
155         return (ecb_paddr + offsetof(struct ecb, sense));
156 }
157
158 static __inline u_int32_t
159 ahbsgpaddr(u_int32_t ecb_paddr)
160 {
161         return (ecb_paddr + offsetof(struct ecb, sg_list));
162 }
163
164 static __inline void
165 ahbqueuembox(struct ahb_softc *ahb, u_int32_t mboxval, u_int attn_code)
166 {
167         u_int loopmax = 300;
168         while (--loopmax) {
169                 u_int status;
170
171                 status = ahb_inb(ahb, HOSTSTAT);
172                 if ((status & (HOSTSTAT_MBOX_EMPTY|HOSTSTAT_BUSY))
173                    == HOSTSTAT_MBOX_EMPTY)
174                         break;
175                 DELAY(20);
176         }
177         if (loopmax == 0)
178                 panic("ahb%ld: adapter not taking commands\n", ahb->unit);
179
180         ahb_outl(ahb, MBOXOUT0, mboxval);
181         ahb_outb(ahb, ATTN, attn_code);
182 }
183
184 static const char *
185 ahbmatch(eisa_id_t type)
186 {                         
187         switch(type & 0xfffffe00) {
188                 case EISA_DEVICE_ID_ADAPTEC_1740:
189                         return ("Adaptec 174x SCSI host adapter");
190                         break;
191                 default:
192                         break;
193         }
194         return (NULL);
195
196
197 static int
198 ahbprobe(device_t dev)      
199 {       
200         const char *desc;
201         u_int32_t iobase;
202         u_int32_t irq;
203         u_int8_t  intdef;      
204         int shared;
205                 
206         desc = ahbmatch(eisa_get_id(dev));
207         if (!desc)
208             return (ENXIO);
209         device_set_desc(dev, desc);
210
211         iobase = (eisa_get_slot(dev) * EISA_SLOT_SIZE) +
212             AHB_EISA_SLOT_OFFSET;
213                         
214         eisa_add_iospace(dev, iobase, AHB_EISA_IOSIZE, RESVADDR_NONE);
215                 
216         intdef = inb(INTDEF + iobase);
217         switch (intdef & 0x7) {
218         case INT9:  
219             irq = 9;
220             break;
221         case INT10: 
222             irq = 10;
223             break;
224         case INT11:
225             irq = 11;
226             break;
227         case INT12:
228             irq = 12; 
229             break;
230         case INT14:
231             irq = 14;
232             break;
233         case INT15:
234             irq = 15;
235             break;
236         default:
237             printf("Adaptec 174X at slot %d: illegal "
238                    "irq setting %d\n", eisa_get_slot(dev),
239                    (intdef & 0x7));
240             irq = 0;
241             break;
242         }               
243         if (irq == 0)
244             return ENXIO;
245
246         shared = (inb(INTDEF + iobase) & INTLEVEL) ?
247                  EISA_TRIGGER_LEVEL : EISA_TRIGGER_EDGE;
248
249         eisa_add_intr(dev, irq, shared);
250
251         return 0;   
252 }
253
254 static int
255 ahbattach(device_t dev)
256 {
257         /*
258          * find unit and check we have that many defined
259          */
260         struct      ahb_softc *ahb;
261         struct      ecb* next_ecb;
262         struct      resource *io = 0;
263         struct      resource *irq = 0;
264         int         rid;
265         void        *ih;
266
267         rid = 0;
268         io = bus_alloc_resource_any(dev, SYS_RES_IOPORT, &rid, RF_ACTIVE);
269         if (!io) {
270                 device_printf(dev, "No I/O space?!\n");
271                 return ENOMEM;
272         }
273
274         if ((ahb = ahballoc(device_get_unit(dev), io)) == NULL) {
275                 goto error_exit2;
276         }
277
278         if (ahbreset(ahb) != 0)
279                 goto error_exit;
280
281         rid = 0;
282         irq = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, RF_ACTIVE);
283         if (!irq) {
284                 device_printf(dev, "Can't allocate interrupt\n");
285                 goto error_exit;
286         }
287
288         /*
289          * Create our DMA tags.  These tags define the kinds of device
290          * accessible memory allocations and memory mappings we will 
291          * need to perform during normal operation.
292          */
293         /* DMA tag for mapping buffers into device visible space. */
294         /* XXX Should be a child of the EISA bus dma tag */
295         if (bus_dma_tag_create( /* parent       */ NULL,
296                                 /* alignment    */ 1,
297                                 /* boundary     */ 0,
298                                 /* lowaddr      */ BUS_SPACE_MAXADDR_32BIT,
299                                 /* highaddr     */ BUS_SPACE_MAXADDR,
300                                 /* filter       */ NULL,
301                                 /* filterarg    */ NULL,
302                                 /* maxsize      */ MAXBSIZE,
303                                 /* nsegments    */ AHB_NSEG,
304                                 /* maxsegsz     */ BUS_SPACE_MAXSIZE_32BIT,
305                                 /* flags        */ BUS_DMA_ALLOCNOW,
306                                 /* lockfunc     */ busdma_lock_mutex,
307                                 /* lockarg      */ &Giant,
308                                 &ahb->buffer_dmat) != 0)
309                 goto error_exit;
310
311         ahb->init_level++;
312
313         /* DMA tag for our ccb structures and ha inquiry data */
314         if (bus_dma_tag_create( /* parent       */ NULL,
315                                 /* alignment    */ 1,
316                                 /* boundary     */ 0,
317                                 /* lowaddr      */ BUS_SPACE_MAXADDR_32BIT,
318                                 /* highaddr     */ BUS_SPACE_MAXADDR,
319                                 /* filter       */ NULL,
320                                 /* filterarg    */ NULL,
321                                 /* maxsize      */ (AHB_NECB *
322                                                     sizeof(struct ecb))
323                                                     + sizeof(*ahb->ha_inq_data),
324                                 /* nsegments    */ 1,
325                                 /* maxsegsz     */ BUS_SPACE_MAXSIZE_32BIT,
326                                 /* flags        */ 0,
327                                 /* lockfunc     */ busdma_lock_mutex,
328                                 /* lockarg      */ &Giant,
329                                 &ahb->ecb_dmat) != 0)
330                 goto error_exit;
331
332         ahb->init_level++;
333
334         /* Allocation for our ccbs */
335         if (bus_dmamem_alloc(ahb->ecb_dmat, (void **)&ahb->ecb_array,
336                              BUS_DMA_NOWAIT, &ahb->ecb_dmamap) != 0)
337                 goto error_exit;
338
339         ahb->ha_inq_data = (struct ha_inquiry_data *)&ahb->ecb_array[AHB_NECB];
340
341         ahb->init_level++;
342
343         /* And permanently map them */
344         bus_dmamap_load(ahb->ecb_dmat, ahb->ecb_dmamap,
345                         ahb->ecb_array, AHB_NSEG * sizeof(struct ecb),
346                         ahbmapecbs, ahb, /*flags*/0);
347
348         ahb->init_level++;
349
350         /* Allocate the buffer dmamaps for each of our ECBs */
351         bzero(ahb->ecb_array, (AHB_NECB * sizeof(struct ecb))
352               + sizeof(*ahb->ha_inq_data));
353         next_ecb = ahb->ecb_array;
354         while (ahb->num_ecbs < AHB_NECB) {
355                 u_int32_t ecb_paddr;
356
357                 if (bus_dmamap_create(ahb->buffer_dmat, /*flags*/0,
358                                       &next_ecb->dmamap))
359                         break;
360                 ecb_paddr = ahbecbvtop(ahb, next_ecb);
361                 next_ecb->hecb.status_ptr = ahbstatuspaddr(ecb_paddr);
362                 next_ecb->hecb.sense_ptr = ahbsensepaddr(ecb_paddr);
363                 ahb->num_ecbs++;
364                 ahbecbfree(ahb, next_ecb);
365                 next_ecb++;
366         }
367
368         if (ahb->num_ecbs == 0)
369                 goto error_exit;
370
371         ahb->init_level++;
372
373         /*
374          * Now that we know we own the resources we need, register
375          * our bus with the XPT.
376          */
377         if (ahbxptattach(ahb))
378                 goto error_exit;
379
380         /* Enable our interrupt */
381         bus_setup_intr(dev, irq, INTR_TYPE_CAM|INTR_ENTROPY, NULL, ahbintr, 
382             ahb, &ih);
383         return (0);
384
385 error_exit:
386         /*
387          * The board's IRQ line will not be left enabled
388          * if we can't intialize correctly, so its safe
389          * to release the irq.
390          */
391         ahbfree(ahb);
392 error_exit2:
393         if (io)
394                 bus_release_resource(dev, SYS_RES_IOPORT, 0, io);
395         if (irq)
396                 bus_release_resource(dev, SYS_RES_IRQ, 0, irq);
397         return (-1);
398 }
399
400 static struct ahb_softc *
401 ahballoc(u_long unit, struct resource *res)
402 {
403         struct  ahb_softc *ahb;
404
405         /*
406          * Allocate a storage area for us
407          */
408         ahb = malloc(sizeof(struct ahb_softc), M_DEVBUF, M_NOWAIT | M_ZERO);
409         if (!ahb) {
410                 printf("ahb%ld: cannot malloc!\n", unit);
411                 return (NULL);
412         }
413         SLIST_INIT(&ahb->free_ecbs);
414         LIST_INIT(&ahb->pending_ccbs);
415         ahb->unit = unit;
416         ahb->tag = rman_get_bustag(res);
417         ahb->bsh = rman_get_bushandle(res);
418         ahb->disc_permitted = ~0;
419         ahb->tags_permitted = ~0;
420
421         return (ahb);
422 }
423
424 static void    
425 ahbfree(struct ahb_softc *ahb)
426 {
427         switch (ahb->init_level) {
428         default:
429         case 4:
430                 bus_dmamap_unload(ahb->ecb_dmat, ahb->ecb_dmamap);
431         case 3:
432                 bus_dmamem_free(ahb->ecb_dmat, ahb->ecb_array,
433                                 ahb->ecb_dmamap);
434                 bus_dmamap_destroy(ahb->ecb_dmat, ahb->ecb_dmamap);
435         case 2:
436                 bus_dma_tag_destroy(ahb->ecb_dmat);
437         case 1:
438                 bus_dma_tag_destroy(ahb->buffer_dmat);
439         case 0:
440                 break;
441         }
442         free(ahb, M_DEVBUF);
443 }
444
445 /*
446  * reset board, If it doesn't respond, return failure
447  */
448 static int
449 ahbreset(struct ahb_softc *ahb)
450 {
451         int     wait = 1000;    /* 1 sec enough? */
452         int     test;
453
454         if ((ahb_inb(ahb, PORTADDR) & PORTADDR_ENHANCED) == 0) {
455                 printf("ahb_reset: Controller not in enhanced mode\n");
456                 return (-1);
457         }
458
459         ahb_outb(ahb, CONTROL, CNTRL_HARD_RST);
460         DELAY(1000);
461         ahb_outb(ahb, CONTROL, 0);
462         while (--wait) {
463                 DELAY(1000);
464                 if ((ahb_inb(ahb, HOSTSTAT) & HOSTSTAT_BUSY) == 0)
465                         break;
466         }
467
468         if (wait == 0) {
469                 printf("ahbreset: No answer from aha1742 board\n");
470                 return (-1);
471         }
472         if ((test = ahb_inb(ahb, MBOXIN0)) != 0) {
473                 printf("ahb_reset: self test failed, val = 0x%x\n", test);
474                 return (-1);
475         }
476         while (ahb_inb(ahb, HOSTSTAT) & HOSTSTAT_INTPEND) {
477                 ahb_outb(ahb, CONTROL, CNTRL_CLRINT);
478                 DELAY(10000);
479         }
480         return (0);
481 }
482
483 static void
484 ahbmapecbs(void *arg, bus_dma_segment_t *segs, int nseg, int error)
485 {
486         struct ahb_softc* ahb;
487
488         ahb = (struct ahb_softc*)arg;
489         ahb->ecb_physbase = segs->ds_addr;
490         /*
491          * Space for adapter inquiry information is on the
492          * tail of the ecb array.
493          */
494         ahb->ha_inq_physbase = ahbecbvtop(ahb, &ahb->ecb_array[AHB_NECB]);
495 }
496
497 static int
498 ahbxptattach(struct ahb_softc *ahb)
499 {
500         struct cam_devq *devq;
501         struct ecb *ecb;
502         u_int  i;
503
504         /* Remeber who are we on the scsi bus */
505         ahb->scsi_id = ahb_inb(ahb, SCSIDEF) & HSCSIID;
506
507         /* Use extended translation?? */
508         ahb->extended_trans = ahb_inb(ahb, RESV1) & EXTENDED_TRANS;
509
510         /* Fetch adapter inquiry data */
511         ecb = ahbecbget(ahb);   /* Always succeeds - no outstanding commands */
512         ecb->hecb.opcode = ECBOP_READ_HA_INQDATA;
513         ecb->hecb.flag_word1 = FW1_SUPPRESS_URUN_ERR|FW1_ERR_STATUS_BLK_ONLY;
514         ecb->hecb.data_ptr = ahb->ha_inq_physbase;
515         ecb->hecb.data_len = sizeof(struct ha_inquiry_data);
516         ecb->hecb.sense_ptr = 0;
517         ecb->state = ECB_ACTIVE;
518         
519         /* Tell the adapter about this command */
520         ahbqueuembox(ahb, ahbecbvtop(ahb, ecb),
521                      ATTN_STARTECB|ahb->scsi_id);
522
523         /* Poll for interrupt completion */
524         for (i = 1000; ecb->state != ECB_FREE && i != 0; i--) {
525                 ahbintr(ahb);
526                 DELAY(1000);
527         }
528
529         ahb->num_ecbs = MIN(ahb->num_ecbs,
530                             ahb->ha_inq_data->scsi_data.spc2_flags);
531         printf("ahb%ld: %.8s %s SCSI Adapter, FW Rev. %.4s, ID=%d, %d ECBs\n",
532                ahb->unit, ahb->ha_inq_data->scsi_data.product,
533                (ahb->ha_inq_data->scsi_data.flags & 0x4) ? "Differential"
534                                                          : "Single Ended",
535                ahb->ha_inq_data->scsi_data.revision,
536                ahb->scsi_id, ahb->num_ecbs);
537
538         /* Restore sense paddr for future CCB clients */
539         ecb->hecb.sense_ptr = ahbsensepaddr(ahbecbvtop(ahb, ecb));
540
541         ahbecbfree(ahb, ecb);
542
543         /*
544          * Create the device queue for our SIM.
545          */
546         devq = cam_simq_alloc(ahb->num_ecbs);
547         if (devq == NULL)
548                 return (ENOMEM);
549
550         /*
551          * Construct our SIM entry
552          */
553         ahb->sim = cam_sim_alloc(ahbaction, ahbpoll, "ahb", ahb, ahb->unit,
554                                  2, ahb->num_ecbs, devq);
555         if (ahb->sim == NULL) {
556                 cam_simq_free(devq);
557                 return (ENOMEM);
558         }
559
560         if (xpt_bus_register(ahb->sim, 0) != CAM_SUCCESS) {
561                 cam_sim_free(ahb->sim, /*free_devq*/TRUE);
562                 return (ENXIO);
563         }
564         
565         if (xpt_create_path(&ahb->path, /*periph*/NULL,
566                             cam_sim_path(ahb->sim), CAM_TARGET_WILDCARD,
567                             CAM_LUN_WILDCARD) != CAM_REQ_CMP) {
568                 xpt_bus_deregister(cam_sim_path(ahb->sim));
569                 cam_sim_free(ahb->sim, /*free_devq*/TRUE);
570                 return (ENXIO);
571         }
572                 
573         /*
574          * Allow the board to generate interrupts.
575          */
576         ahb_outb(ahb, INTDEF, ahb_inb(ahb, INTDEF) | INTEN);
577
578         return (0);
579 }
580
581 static void
582 ahbhandleimmed(struct ahb_softc *ahb, u_int32_t mbox, u_int intstat)
583 {
584         struct ccb_hdr *ccb_h;
585         u_int target_id;
586
587         if (ahb->immed_cmd == 0) {
588                 printf("ahb%ld: Immediate Command complete with no "
589                        " pending command\n", ahb->unit);
590                 return;
591         }
592
593         target_id = intstat & INTSTAT_TARGET_MASK;
594
595         ccb_h = LIST_FIRST(&ahb->pending_ccbs);
596         while (ccb_h != NULL) {
597                 struct ecb *pending_ecb;
598                 union ccb *ccb;
599
600                 pending_ecb = (struct ecb *)ccb_h->ccb_ecb_ptr;
601                 ccb = pending_ecb->ccb;
602                 ccb_h = LIST_NEXT(ccb_h, sim_links.le);
603                 if (ccb->ccb_h.target_id == target_id
604                  || target_id == ahb->scsi_id) {
605                         untimeout(ahbtimeout, pending_ecb,
606                                   ccb->ccb_h.timeout_ch);
607                         LIST_REMOVE(&ccb->ccb_h, sim_links.le);
608                         if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE)
609                                 bus_dmamap_unload(ahb->buffer_dmat,
610                                                   pending_ecb->dmamap);
611                         if (pending_ecb == ahb->immed_ecb)
612                                 ccb->ccb_h.status =
613                                     CAM_CMD_TIMEOUT|CAM_RELEASE_SIMQ;
614                         else if (target_id == ahb->scsi_id)
615                                 ccb->ccb_h.status = CAM_SCSI_BUS_RESET;
616                         else
617                                 ccb->ccb_h.status = CAM_BDR_SENT;
618                         ahbecbfree(ahb, pending_ecb);
619                         xpt_done(ccb);
620                 } else if (ahb->immed_ecb != NULL) {
621                         /* Re-instate timeout */
622                         ccb->ccb_h.timeout_ch =
623                             timeout(ahbtimeout, (caddr_t)pending_ecb,
624                                     (ccb->ccb_h.timeout * hz) / 1000);
625                 }
626         }
627
628         if (ahb->immed_ecb != NULL) {
629                 ahb->immed_ecb = NULL;
630                 printf("ahb%ld: No longer in timeout\n", ahb->unit);
631         } else if (target_id == ahb->scsi_id)
632                 printf("ahb%ld: SCSI Bus Reset Delivered\n", ahb->unit);
633         else
634                 printf("ahb%ld:  Bus Device Reset Delibered to target %d\n",
635                        ahb->unit, target_id);
636
637         ahb->immed_cmd = 0;
638 }
639
640 static void
641 ahbcalcresid(struct ahb_softc *ahb, struct ecb *ecb, union ccb *ccb)
642 {
643         if (ecb->status.data_overrun != 0) {
644                 /*
645                  * Overrun Condition.  The hardware doesn't
646                  * provide a meaningful byte count in this case
647                  * (the residual is always 0).  Tell the XPT
648                  * layer about the error.
649                  */
650                 ccb->ccb_h.status = CAM_DATA_RUN_ERR;
651         } else {
652                 ccb->csio.resid = ecb->status.resid_count;
653
654                 if ((ecb->hecb.flag_word1 & FW1_SG_ECB) != 0) {
655                         /*
656                          * For S/G transfers, the adapter provides a pointer
657                          * to the address in the last S/G element used and a
658                          * residual for that element.  So, we need to sum up
659                          * the elements that follow it in order to get a real
660                          * residual number.  If we have an overrun, the residual
661                          * reported will be 0 and we already know that all S/G
662                          * segments have been exhausted, so we can skip this
663                          * step.
664                          */
665                         ahb_sg_t *sg;
666                         int       num_sg;
667
668                         num_sg = ecb->hecb.data_len / sizeof(ahb_sg_t);
669
670                         /* Find the S/G the adapter was working on */
671                         for (sg = ecb->sg_list;
672                              num_sg != 0 && sg->addr != ecb->status.resid_addr;
673                              num_sg--, sg++)
674                                 ;
675
676                         /* Skip it */
677                         num_sg--;
678                         sg++;
679
680                         /* Sum the rest */
681                         for (; num_sg != 0; num_sg--, sg++)
682                                 ccb->csio.resid += sg->len;
683                 }
684                 /* Underruns are not errors */
685                 ccb->ccb_h.status = CAM_REQ_CMP;
686         }
687 }
688
689 static void
690 ahbprocesserror(struct ahb_softc *ahb, struct ecb *ecb, union ccb *ccb)
691 {
692         struct hardware_ecb *hecb;
693         struct ecb_status *status;
694
695         hecb = &ecb->hecb;
696         status = &ecb->status;
697         switch (status->ha_status) {
698         case HS_OK:
699                 ccb->csio.scsi_status = status->scsi_status;
700                 if (status->scsi_status != 0) {
701                         ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR;
702                         if (status->sense_stored) {
703                                 ccb->ccb_h.status |= CAM_AUTOSNS_VALID;
704                                 ccb->csio.sense_resid =
705                                     ccb->csio.sense_len - status->sense_len;
706                                 bcopy(&ecb->sense, &ccb->csio.sense_data,
707                                       status->sense_len);
708                         }
709                 }
710                 break;
711         case HS_TARGET_NOT_ASSIGNED:
712                 ccb->ccb_h.status = CAM_PATH_INVALID;
713                 break;
714         case HS_SEL_TIMEOUT:
715                 ccb->ccb_h.status = CAM_SEL_TIMEOUT;
716                 break;
717         case HS_DATA_RUN_ERR:
718                 ahbcalcresid(ahb, ecb, ccb);
719                 break;
720         case HS_UNEXPECTED_BUSFREE:
721                 ccb->ccb_h.status = CAM_UNEXP_BUSFREE;
722                 break;
723         case HS_INVALID_PHASE:
724                 ccb->ccb_h.status = CAM_SEQUENCE_FAIL;
725                 break;
726         case HS_REQUEST_SENSE_FAILED:
727                 ccb->ccb_h.status = CAM_AUTOSENSE_FAIL;
728                 break;
729         case HS_TAG_MSG_REJECTED:
730         {
731                 struct ccb_trans_settings neg; 
732                 struct ccb_trans_settings_scsi *scsi = &neg.proto_specific.scsi;
733
734                 xpt_print_path(ccb->ccb_h.path);
735                 printf("refuses tagged commands.  Performing "
736                        "non-tagged I/O\n");
737                 memset(&neg, 0, sizeof (neg));
738                 neg.protocol = PROTO_SCSI;
739                 neg.protocol_version = SCSI_REV_2;
740                 neg.transport = XPORT_SPI;
741                 neg.transport_version = 2;
742                 scsi->flags = CTS_SCSI_VALID_TQ;
743                 xpt_setup_ccb(&neg.ccb_h, ccb->ccb_h.path, /*priority*/1); 
744                 xpt_async(AC_TRANSFER_NEG, ccb->ccb_h.path, &neg);
745                 ahb->tags_permitted &= ~(0x01 << ccb->ccb_h.target_id);
746                 ccb->ccb_h.status = CAM_MSG_REJECT_REC;
747                 break;
748         }
749         case HS_FIRMWARE_LOAD_REQ:
750         case HS_HARDWARE_ERR:
751                 /*
752                  * Tell the system that the Adapter
753                  * is no longer functional.
754                  */
755                 ccb->ccb_h.status = CAM_NO_HBA;
756                 break;
757         case HS_CMD_ABORTED_HOST:
758         case HS_CMD_ABORTED_ADAPTER:
759         case HS_ATN_TARGET_FAILED:
760         case HS_SCSI_RESET_ADAPTER:
761         case HS_SCSI_RESET_INCOMING:
762                 ccb->ccb_h.status = CAM_SCSI_BUS_RESET;
763                 break;
764         case HS_INVALID_ECB_PARAM:
765                 printf("ahb%ld: opcode 0x%02x, flag_word1 0x%02x, flag_word2 0x%02x\n",
766                         ahb->unit, hecb->opcode, hecb->flag_word1, hecb->flag_word2);   
767                 ccb->ccb_h.status = CAM_SCSI_BUS_RESET;
768                 break;
769         case HS_DUP_TCB_RECEIVED:
770         case HS_INVALID_OPCODE:
771         case HS_INVALID_CMD_LINK:
772         case HS_PROGRAM_CKSUM_ERROR:
773                 panic("ahb%ld: Can't happen host status %x occurred",
774                       ahb->unit, status->ha_status);
775                 break;
776         }
777         if (ccb->ccb_h.status != CAM_REQ_CMP) {
778                 xpt_freeze_devq(ccb->ccb_h.path, /*count*/1);
779                 ccb->ccb_h.status |= CAM_DEV_QFRZN;
780         }
781 }
782
783 static void
784 ahbdone(struct ahb_softc *ahb, u_int32_t mbox, u_int intstat)
785 {
786         struct ecb *ecb;
787         union ccb *ccb;
788
789         ecb = ahbecbptov(ahb, mbox);
790
791         if ((ecb->state & ECB_ACTIVE) == 0)
792                 panic("ecb not active");
793
794         ccb = ecb->ccb;
795
796         if (ccb != NULL) {
797                 untimeout(ahbtimeout, ecb, ccb->ccb_h.timeout_ch);
798                 LIST_REMOVE(&ccb->ccb_h, sim_links.le);
799
800                 if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) {
801                         bus_dmasync_op_t op;
802
803                         if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN)
804                                 op = BUS_DMASYNC_POSTREAD;
805                         else
806                                 op = BUS_DMASYNC_POSTWRITE;
807                         bus_dmamap_sync(ahb->buffer_dmat, ecb->dmamap, op);
808                         bus_dmamap_unload(ahb->buffer_dmat, ecb->dmamap);
809                 }
810
811                 if ((intstat & INTSTAT_MASK) == INTSTAT_ECB_OK) {
812                         ccb->ccb_h.status = CAM_REQ_CMP;
813                         ccb->csio.resid = 0;
814                 } else {
815                         ahbprocesserror(ahb, ecb, ccb);
816                 }
817                 ahbecbfree(ahb, ecb);
818                 xpt_done(ccb);
819         } else {
820                 /* Non CCB Command */
821                 if ((intstat & INTSTAT_MASK) != INTSTAT_ECB_OK) {
822                         printf("ahb%ld: Command 0%x Failed %x:%x:%x\n",
823                                ahb->unit, ecb->hecb.opcode,
824                                *((u_int16_t*)&ecb->status),
825                                ecb->status.ha_status, ecb->status.resid_count);
826                 }
827                 /* Client owns this ECB and will release it. */
828         }
829 }
830
831 /*
832  * Catch an interrupt from the adaptor
833  */
834 static void
835 ahbintr(void *arg)
836 {
837         struct    ahb_softc *ahb;
838         u_int     intstat;
839         u_int32_t mbox;
840
841         ahb = (struct ahb_softc *)arg;
842
843         while (ahb_inb(ahb, HOSTSTAT) & HOSTSTAT_INTPEND) {
844                 /*
845                  * Fetch information about this interrupt.
846                  */
847                 intstat = ahb_inb(ahb, INTSTAT);
848                 mbox = ahb_inl(ahb, MBOXIN0);
849
850                 /*
851                  * Reset interrupt latch.
852                  */
853                 ahb_outb(ahb, CONTROL, CNTRL_CLRINT);
854
855                 /*
856                  * Process the completed operation
857                  */
858                 switch (intstat & INTSTAT_MASK) {
859                 case INTSTAT_ECB_OK:
860                 case INTSTAT_ECB_CMPWRETRY:
861                 case INTSTAT_ECB_CMPWERR:
862                         ahbdone(ahb, mbox, intstat);
863                         break;
864                 case INTSTAT_AEN_OCCURED:
865                         if ((intstat & INTSTAT_TARGET_MASK) == ahb->scsi_id) {
866                                 /* Bus Reset */
867                                 xpt_print_path(ahb->path);
868                                 switch (mbox) {
869                                 case HS_SCSI_RESET_ADAPTER:
870                                         printf("Host Adapter Initiated "
871                                                "Bus Reset occurred\n");
872                                         break;
873                                 case HS_SCSI_RESET_INCOMING:
874                                         printf("Bus Reset Initiated "
875                                                "by another device occurred\n");
876                                         break;
877                                 }
878                                 /* Notify the XPT */
879                                 xpt_async(AC_BUS_RESET, ahb->path, NULL);
880                                 break;
881                         }
882                         printf("Unsupported initiator selection AEN occured\n");
883                         break;
884                 case INTSTAT_IMMED_OK:
885                 case INTSTAT_IMMED_ERR:
886                         ahbhandleimmed(ahb, mbox, intstat);
887                         break;
888                 case INTSTAT_HW_ERR:
889                         panic("Unrecoverable hardware Error Occurred\n");
890                 }
891         }
892 }
893
894 static void
895 ahbexecuteecb(void *arg, bus_dma_segment_t *dm_segs, int nseg, int error)
896 {
897         struct    ecb *ecb;
898         union     ccb *ccb;
899         struct    ahb_softc *ahb;
900         u_int32_t ecb_paddr;
901         int       s;
902
903         ecb = (struct ecb *)arg;
904         ccb = ecb->ccb;
905         ahb = (struct ahb_softc *)ccb->ccb_h.ccb_ahb_ptr;
906
907         if (error != 0) {
908                 if (error != EFBIG)
909                         printf("ahb%ld: Unexepected error 0x%x returned from "
910                                "bus_dmamap_load\n", ahb->unit, error);
911                 if (ccb->ccb_h.status == CAM_REQ_INPROG) {
912                         xpt_freeze_devq(ccb->ccb_h.path, /*count*/1);
913                         ccb->ccb_h.status = CAM_REQ_TOO_BIG|CAM_DEV_QFRZN;
914                 }
915                 ahbecbfree(ahb, ecb);
916                 xpt_done(ccb);
917                 return;
918         }
919                 
920         ecb_paddr = ahbecbvtop(ahb, ecb);
921
922         if (nseg != 0) {
923                 ahb_sg_t *sg;
924                 bus_dma_segment_t *end_seg;
925                 bus_dmasync_op_t op;
926
927                 end_seg = dm_segs + nseg;
928
929                 /* Copy the segments into our SG list */
930                 sg = ecb->sg_list;
931                 while (dm_segs < end_seg) {
932                         sg->addr = dm_segs->ds_addr;
933                         sg->len = dm_segs->ds_len;
934                         sg++;
935                         dm_segs++;
936                 }
937
938                 if (nseg > 1) {
939                         ecb->hecb.flag_word1 |= FW1_SG_ECB;
940                         ecb->hecb.data_ptr = ahbsgpaddr(ecb_paddr);
941                         ecb->hecb.data_len = sizeof(ahb_sg_t) * nseg;
942                 } else {
943                         ecb->hecb.data_ptr = ecb->sg_list->addr;
944                         ecb->hecb.data_len = ecb->sg_list->len;
945                 }
946
947                 if ((ccb->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) {
948 /*                      ecb->hecb.flag_word2 |= FW2_DATA_DIR_IN; */
949                         op = BUS_DMASYNC_PREREAD;
950                 } else {
951                         op = BUS_DMASYNC_PREWRITE;
952                 }
953                 /* ecb->hecb.flag_word2 |= FW2_CHECK_DATA_DIR; */
954
955                 bus_dmamap_sync(ahb->buffer_dmat, ecb->dmamap, op);
956
957         } else {
958                 ecb->hecb.data_ptr = 0;
959                 ecb->hecb.data_len = 0;
960         }
961
962         s = splcam();
963
964         /*
965          * Last time we need to check if this CCB needs to
966          * be aborted.
967          */
968         if (ccb->ccb_h.status != CAM_REQ_INPROG) {
969                 if (nseg != 0)
970                         bus_dmamap_unload(ahb->buffer_dmat, ecb->dmamap);
971                 ahbecbfree(ahb, ecb);
972                 xpt_done(ccb);
973                 splx(s);
974                 return;
975         }
976                 
977         ecb->state = ECB_ACTIVE;
978         ccb->ccb_h.status |= CAM_SIM_QUEUED;
979         LIST_INSERT_HEAD(&ahb->pending_ccbs, &ccb->ccb_h, sim_links.le);
980
981         /* Tell the adapter about this command */
982         ahbqueuembox(ahb, ecb_paddr, ATTN_STARTECB|ccb->ccb_h.target_id);
983
984         ccb->ccb_h.timeout_ch = timeout(ahbtimeout, (caddr_t)ecb,
985                                         (ccb->ccb_h.timeout * hz) / 1000);
986         splx(s);
987 }
988
989 static void
990 ahbaction(struct cam_sim *sim, union ccb *ccb)
991 {
992         struct  ahb_softc *ahb;
993
994         CAM_DEBUG(ccb->ccb_h.path, CAM_DEBUG_TRACE, ("ahbaction\n"));
995         
996         ahb = (struct ahb_softc *)cam_sim_softc(sim);
997         
998         switch (ccb->ccb_h.func_code) {
999         /* Common cases first */
1000         case XPT_SCSI_IO:       /* Execute the requested I/O operation */
1001         {
1002                 struct ecb *ecb;
1003                 struct hardware_ecb *hecb;
1004
1005                 /*
1006                  * get an ecb to use.
1007                  */
1008                 if ((ecb = ahbecbget(ahb)) == NULL) {
1009                         /* Should never occur */
1010                         panic("Failed to get an ecb");
1011                 }
1012
1013                 /*
1014                  * So we can find the ECB when an abort is requested
1015                  */
1016                 ecb->ccb = ccb;
1017                 ccb->ccb_h.ccb_ecb_ptr = ecb;
1018                 ccb->ccb_h.ccb_ahb_ptr = ahb;
1019
1020                 /*
1021                  * Put all the arguments for the xfer in the ecb
1022                  */
1023                 hecb = &ecb->hecb;
1024                 hecb->opcode = ECBOP_INITIATOR_SCSI_CMD;
1025                 hecb->flag_word1 = FW1_AUTO_REQUEST_SENSE
1026                                  | FW1_ERR_STATUS_BLK_ONLY;
1027                 hecb->flag_word2 = ccb->ccb_h.target_lun
1028                                  | FW2_NO_RETRY_ON_BUSY;
1029                 if ((ccb->ccb_h.flags & CAM_TAG_ACTION_VALID) != 0) {
1030                         hecb->flag_word2 |= FW2_TAG_ENB
1031                                          | ((ccb->csio.tag_action & 0x3)
1032                                             << FW2_TAG_TYPE_SHIFT);
1033                 }
1034                 if ((ccb->ccb_h.flags & CAM_DIS_DISCONNECT) != 0)
1035                         hecb->flag_word2 |= FW2_DISABLE_DISC;
1036                 hecb->sense_len = ccb->csio.sense_len;
1037                 hecb->cdb_len = ccb->csio.cdb_len;
1038                 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0) {
1039                         if ((ccb->ccb_h.flags & CAM_CDB_PHYS) == 0) {
1040                                 bcopy(ccb->csio.cdb_io.cdb_ptr,
1041                                       hecb->cdb, hecb->cdb_len);
1042                         } else {
1043                                 /* I guess I could map it in... */
1044                                 ccb->ccb_h.status = CAM_REQ_INVALID;
1045                                 ahbecbfree(ahb, ecb);
1046                                 xpt_done(ccb);
1047                                 return;
1048                         }
1049                 } else {
1050                         bcopy(ccb->csio.cdb_io.cdb_bytes,
1051                               hecb->cdb, hecb->cdb_len);
1052                 }
1053
1054                 /*
1055                  * If we have any data to send with this command,
1056                  * map it into bus space.
1057                  */
1058                 if ((ccb->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_NONE) {
1059                         if ((ccb->ccb_h.flags & CAM_SCATTER_VALID) == 0) {
1060                                 /*
1061                                  * We've been given a pointer
1062                                  * to a single buffer.
1063                                  */
1064                                 if ((ccb->ccb_h.flags & CAM_DATA_PHYS)==0) {
1065                                         int s;
1066                                         int error;
1067
1068                                         s = splsoftvm();
1069                                         error = bus_dmamap_load(
1070                                             ahb->buffer_dmat,
1071                                             ecb->dmamap,
1072                                             ccb->csio.data_ptr,
1073                                             ccb->csio.dxfer_len,
1074                                             ahbexecuteecb,
1075                                             ecb, /*flags*/0);
1076                                         if (error == EINPROGRESS) {
1077                                                 /*
1078                                                  * So as to maintain ordering,
1079                                                  * freeze the controller queue
1080                                                  * until our mapping is
1081                                                  * returned.
1082                                                  */
1083                                                 xpt_freeze_simq(ahb->sim, 1);
1084                                                 ccb->ccb_h.status |=
1085                                                     CAM_RELEASE_SIMQ;
1086                                         }
1087                                         splx(s);
1088                                 } else {
1089                                         struct bus_dma_segment seg; 
1090
1091                                         /* Pointer to physical buffer */
1092                                         seg.ds_addr =
1093                                             (bus_addr_t)ccb->csio.data_ptr;
1094                                         seg.ds_len = ccb->csio.dxfer_len;
1095                                         ahbexecuteecb(ecb, &seg, 1, 0);
1096                                 }
1097                         } else {
1098                                 struct bus_dma_segment *segs;
1099
1100                                 if ((ccb->ccb_h.flags & CAM_DATA_PHYS) != 0)
1101                                         panic("ahbaction - Physical segment "
1102                                               "pointers unsupported");
1103
1104                                 if ((ccb->ccb_h.flags & CAM_SG_LIST_PHYS) == 0)
1105                                         panic("btaction - Virtual segment "
1106                                               "addresses unsupported");
1107
1108                                 /* Just use the segments provided */
1109                                 segs = (struct bus_dma_segment *)
1110                                     ccb->csio.data_ptr;
1111                                 ahbexecuteecb(ecb, segs, ccb->csio.sglist_cnt,
1112                                              0);
1113                         }
1114                 } else {
1115                         ahbexecuteecb(ecb, NULL, 0, 0);
1116                 }
1117                 break;
1118         }
1119         case XPT_EN_LUN:                /* Enable LUN as a target */
1120         case XPT_TARGET_IO:             /* Execute target I/O request */
1121         case XPT_ACCEPT_TARGET_IO:      /* Accept Host Target Mode CDB */
1122         case XPT_CONT_TARGET_IO:        /* Continue Host Target I/O Connection*/
1123         case XPT_ABORT:                 /* Abort the specified CCB */
1124                 /* XXX Implement */
1125                 ccb->ccb_h.status = CAM_REQ_INVALID;
1126                 xpt_done(ccb);
1127                 break;
1128         case XPT_SET_TRAN_SETTINGS:
1129         {
1130                 ccb->ccb_h.status = CAM_FUNC_NOTAVAIL;
1131                 xpt_done(ccb);
1132                 break;
1133         }
1134         case XPT_GET_TRAN_SETTINGS:
1135         /* Get default/user set transfer settings for the target */
1136         {
1137                 struct  ccb_trans_settings *cts = &ccb->cts;
1138                 u_int   target_mask = 0x01 << ccb->ccb_h.target_id;
1139                 struct ccb_trans_settings_scsi *scsi =
1140                     &cts->proto_specific.scsi;
1141                 struct ccb_trans_settings_spi *spi =
1142                     &cts->xport_specific.spi;
1143
1144                 if (cts->type == CTS_TYPE_USER_SETTINGS) {
1145                         cts->protocol = PROTO_SCSI;
1146                         cts->protocol_version = SCSI_REV_2;
1147                         cts->transport = XPORT_SPI;
1148                         cts->transport_version = 2;
1149
1150                         scsi->flags &= ~CTS_SCSI_FLAGS_TAG_ENB;
1151                         spi->flags &= ~CTS_SPI_FLAGS_DISC_ENB;
1152                         if ((ahb->disc_permitted & target_mask) != 0)
1153                                 spi->flags |= CTS_SPI_FLAGS_DISC_ENB;
1154                         if ((ahb->tags_permitted & target_mask) != 0)
1155                                 scsi->flags |= CTS_SCSI_FLAGS_TAG_ENB;
1156                         spi->bus_width = MSG_EXT_WDTR_BUS_8_BIT;
1157                         spi->sync_period = 25; /* 10MHz */
1158
1159                         if (spi->sync_period != 0)
1160                                 spi->sync_offset = 15;
1161
1162                         spi->valid = CTS_SPI_VALID_SYNC_RATE
1163                                    | CTS_SPI_VALID_SYNC_OFFSET
1164                                    | CTS_SPI_VALID_BUS_WIDTH
1165                                    | CTS_SPI_VALID_DISC;
1166                         scsi->valid = CTS_SCSI_VALID_TQ;
1167                         ccb->ccb_h.status = CAM_REQ_CMP;
1168                 } else {
1169                         ccb->ccb_h.status = CAM_FUNC_NOTAVAIL;
1170                 }
1171                 xpt_done(ccb);
1172                 break;
1173         }
1174         case XPT_RESET_DEV:     /* Bus Device Reset the specified SCSI device */
1175         {
1176                 int i;
1177                 int s;
1178
1179                 s = splcam();
1180                 ahb->immed_cmd = IMMED_RESET;
1181                 ahbqueuembox(ahb, IMMED_RESET, ATTN_IMMED|ccb->ccb_h.target_id);
1182                 /* Poll for interrupt completion */
1183                 for (i = 1000; ahb->immed_cmd != 0 && i != 0; i--) {
1184                         DELAY(1000);
1185                         ahbintr(cam_sim_softc(sim));
1186                 }
1187                 splx(s);
1188                 break;
1189         }
1190         case XPT_CALC_GEOMETRY:
1191         {
1192                 cam_calc_geometry(&ccb->ccg, ahb->extended_trans); 
1193                 xpt_done(ccb);
1194                 break;
1195         }
1196         case XPT_RESET_BUS:             /* Reset the specified SCSI bus */
1197         {
1198                 int i;
1199
1200                 ahb->immed_cmd = IMMED_RESET;
1201                 ahbqueuembox(ahb, IMMED_RESET, ATTN_IMMED|ahb->scsi_id);
1202                 /* Poll for interrupt completion */
1203                 for (i = 1000; ahb->immed_cmd != 0 && i != 0; i--)
1204                         DELAY(1000);
1205                 ccb->ccb_h.status = CAM_REQ_CMP;
1206                 xpt_done(ccb);
1207                 break;
1208         }
1209         case XPT_TERM_IO:               /* Terminate the I/O process */
1210                 /* XXX Implement */
1211                 ccb->ccb_h.status = CAM_REQ_INVALID;
1212                 xpt_done(ccb);
1213                 break;
1214         case XPT_PATH_INQ:              /* Path routing inquiry */
1215         {
1216                 struct ccb_pathinq *cpi = &ccb->cpi;
1217                 
1218                 cpi->version_num = 1; /* XXX??? */
1219                 cpi->hba_inquiry = PI_SDTR_ABLE|PI_TAG_ABLE;
1220                 cpi->target_sprt = 0;
1221                 cpi->hba_misc = 0;
1222                 cpi->hba_eng_cnt = 0;
1223                 cpi->max_target = 7;
1224                 cpi->max_lun = 7;
1225                 cpi->initiator_id = ahb->scsi_id;
1226                 cpi->bus_id = cam_sim_bus(sim);
1227                 cpi->base_transfer_speed = 3300;
1228                 strncpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
1229                 strncpy(cpi->hba_vid, "Adaptec", HBA_IDLEN);
1230                 strncpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
1231                 cpi->unit_number = cam_sim_unit(sim);
1232                 cpi->transport = XPORT_SPI;
1233                 cpi->transport_version = 2;
1234                 cpi->protocol = PROTO_SCSI;
1235                 cpi->protocol_version = SCSI_REV_2;
1236                 cpi->ccb_h.status = CAM_REQ_CMP;
1237                 xpt_done(ccb);
1238                 break;
1239         }
1240 #if 0
1241         /* Need these??? */
1242         case XPT_IMMED_NOTIFY:          /* Notify Host Target driver of event */
1243         case XPT_NOTIFY_ACK:            /* Acknowledgement of event */
1244 #endif
1245         default:
1246                 ccb->ccb_h.status = CAM_REQ_INVALID;
1247                 xpt_done(ccb);
1248                 break;
1249         }
1250 }
1251
1252 static void
1253 ahbpoll(struct cam_sim *sim)
1254 {
1255         ahbintr(cam_sim_softc(sim));
1256 }
1257
1258 static void
1259 ahbtimeout(void *arg)
1260 {
1261         struct ecb       *ecb;
1262         union  ccb       *ccb;
1263         struct ahb_softc *ahb;
1264         int               s;
1265
1266         ecb = (struct ecb *)arg;
1267         ccb = ecb->ccb;
1268         ahb = (struct ahb_softc *)ccb->ccb_h.ccb_ahb_ptr;
1269         xpt_print_path(ccb->ccb_h.path);
1270         printf("ECB %p - timed out\n", (void *)ecb);
1271
1272         s = splcam();
1273
1274         if ((ecb->state & ECB_ACTIVE) == 0) {
1275                 xpt_print_path(ccb->ccb_h.path);
1276                 printf("ECB %p - timed out ECB already completed\n",
1277                        (void *)ecb);
1278                 splx(s);
1279                 return;
1280         }
1281         /*
1282          * In order to simplify the recovery process, we ask the XPT
1283          * layer to halt the queue of new transactions and we traverse
1284          * the list of pending CCBs and remove their timeouts. This
1285          * means that the driver attempts to clear only one error
1286          * condition at a time.  In general, timeouts that occur
1287          * close together are related anyway, so there is no benefit
1288          * in attempting to handle errors in parrallel.  Timeouts will
1289          * be reinstated when the recovery process ends.
1290          */
1291         if ((ecb->state & ECB_DEVICE_RESET) == 0) {
1292                 struct ccb_hdr *ccb_h;
1293
1294                 if ((ecb->state & ECB_RELEASE_SIMQ) == 0) {
1295                         xpt_freeze_simq(ahb->sim, /*count*/1);
1296                         ecb->state |= ECB_RELEASE_SIMQ;
1297                 }
1298
1299                 ccb_h = LIST_FIRST(&ahb->pending_ccbs);
1300                 while (ccb_h != NULL) {
1301                         struct ecb *pending_ecb;
1302
1303                         pending_ecb = (struct ecb *)ccb_h->ccb_ecb_ptr;
1304                         untimeout(ahbtimeout, pending_ecb, ccb_h->timeout_ch);
1305                         ccb_h = LIST_NEXT(ccb_h, sim_links.le);
1306                 }
1307
1308                 /* Store for our interrupt handler */
1309                 ahb->immed_ecb = ecb;
1310
1311                 /*    
1312                  * Send a Bus Device Reset message:
1313                  * The target that is holding up the bus may not
1314                  * be the same as the one that triggered this timeout
1315                  * (different commands have different timeout lengths),
1316                  * but we have no way of determining this from our
1317                  * timeout handler.  Our strategy here is to queue a
1318                  * BDR message to the target of the timed out command.
1319                  * If this fails, we'll get another timeout 2 seconds
1320                  * later which will attempt a bus reset.
1321                  */
1322                 xpt_print_path(ccb->ccb_h.path);
1323                 printf("Queuing BDR\n");
1324                 ecb->state |= ECB_DEVICE_RESET;
1325                 ccb->ccb_h.timeout_ch =
1326                     timeout(ahbtimeout, (caddr_t)ecb, 2 * hz);
1327
1328                 ahb->immed_cmd = IMMED_RESET;
1329                 ahbqueuembox(ahb, IMMED_RESET, ATTN_IMMED|ccb->ccb_h.target_id);
1330         } else if ((ecb->state & ECB_SCSIBUS_RESET) != 0) {
1331                 /*
1332                  * Try a SCSI bus reset.  We do this only if we
1333                  * have already attempted to clear the condition with a BDR.
1334                  */
1335                 xpt_print_path(ccb->ccb_h.path);
1336                 printf("Attempting SCSI Bus reset\n");
1337                 ecb->state |= ECB_SCSIBUS_RESET;
1338                 ccb->ccb_h.timeout_ch =
1339                     timeout(ahbtimeout, (caddr_t)ecb, 2 * hz);
1340                 ahb->immed_cmd = IMMED_RESET;
1341                 ahbqueuembox(ahb, IMMED_RESET, ATTN_IMMED|ahb->scsi_id);
1342         } else {
1343                 /* Bring out the hammer... */
1344                 ahbreset(ahb);
1345
1346                 /* Simulate the reset complete interrupt */
1347                 ahbhandleimmed(ahb, 0, ahb->scsi_id|INTSTAT_IMMED_OK);
1348         }
1349
1350         splx(s);
1351 }
1352
1353 static device_method_t ahb_eisa_methods[] = {
1354         /* Device interface */
1355         DEVMETHOD(device_probe,         ahbprobe),
1356         DEVMETHOD(device_attach,        ahbattach),
1357
1358         { 0, 0 }
1359 };
1360
1361 static driver_t ahb_eisa_driver = {
1362         "ahb",
1363         ahb_eisa_methods,
1364         1,                      /* unused */
1365 };
1366
1367 static devclass_t ahb_devclass;
1368
1369 DRIVER_MODULE(ahb, eisa, ahb_eisa_driver, ahb_devclass, 0, 0);
1370 MODULE_DEPEND(ahb, eisa, 1, 1, 1);
1371 MODULE_DEPEND(ahb, cam, 1, 1, 1);