Expand PMF_FN_* macros.
[netbsd-mini2440.git] / sys / dev / ic / aic7xxx_inline.h
blob709a3e20f45a6696e7100e6f029ecc8855abef5c
1 /* $NetBSD: aic7xxx_inline.h,v 1.13 2008/02/11 21:43:46 dyoung Exp $ */
3 /*
4 * Inline routines shareable across OS platforms.
6 * Copyright (c) 1994-2001 Justin T. Gibbs.
7 * Copyright (c) 2000-2001 Adaptec Inc.
8 * All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions, and the following disclaimer,
15 * without modification.
16 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
17 * substantially similar to the "NO WARRANTY" disclaimer below
18 * ("Disclaimer") and any redistribution must be conditioned upon
19 * including a substantially similar Disclaimer requirement for further
20 * binary redistribution.
21 * 3. Neither the names of the above-listed copyright holders nor the names
22 * of any contributors may be used to endorse or promote products derived
23 * from this software without specific prior written permission.
25 * Alternatively, this software may be distributed under the terms of the
26 * GNU General Public License ("GPL") version 2 as published by the Free
27 * Software Foundation.
29 * NO WARRANTY
30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
31 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
32 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
33 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
34 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
35 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
36 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
37 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
38 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
39 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
40 * POSSIBILITY OF SUCH DAMAGES.
42 * //depot/aic7xxx/aic7xxx/aic7xxx_inline.h#39 $
44 * $FreeBSD: /repoman/r/ncvs/src/sys/dev/aic7xxx/aic7xxx_inline.h,v 1.20 2003/01/20 20:44:55 gibbs Exp $
47 * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc. - April 2003
50 #ifndef _AIC7XXX_INLINE_H_
51 #define _AIC7XXX_INLINE_H_
53 /************************* Sequencer Execution Control ************************/
54 static __inline void ahc_pause_bug_fix(struct ahc_softc *ahc);
55 static __inline int ahc_is_paused(struct ahc_softc *ahc);
56 static __inline void ahc_pause(struct ahc_softc *ahc);
57 static __inline void ahc_unpause(struct ahc_softc *ahc);
60 * Work around any chip bugs related to halting sequencer execution.
61 * On Ultra2 controllers, we must clear the CIOBUS stretch signal by
62 * reading a register that will set this signal and deassert it.
63 * Without this workaround, if the chip is paused, by an interrupt or
64 * manual pause while accessing scb ram, accesses to certain registers
65 * will hang the system (infinite pci retries).
67 static __inline void
68 ahc_pause_bug_fix(struct ahc_softc *ahc)
70 if ((ahc->features & AHC_ULTRA2) != 0)
71 (void)ahc_inb(ahc, CCSCBCTL);
75 * Determine whether the sequencer has halted code execution.
76 * Returns non-zero status if the sequencer is stopped.
78 static __inline int
79 ahc_is_paused(struct ahc_softc *ahc)
81 return ((ahc_inb(ahc, HCNTRL) & PAUSE) != 0);
85 * Request that the sequencer stop and wait, indefinitely, for it
86 * to stop. The sequencer will only acknowledge that it is paused
87 * once it has reached an instruction boundary and PAUSEDIS is
88 * cleared in the SEQCTL register. The sequencer may use PAUSEDIS
89 * for critical sections.
91 static __inline void
92 ahc_pause(struct ahc_softc *ahc)
94 ahc_outb(ahc, HCNTRL, ahc->pause);
97 * Since the sequencer can disable pausing in a critical section, we
98 * must loop until it actually stops.
100 while (ahc_is_paused(ahc) == 0)
103 ahc_pause_bug_fix(ahc);
107 * Allow the sequencer to continue program execution.
108 * We check here to ensure that no additional interrupt
109 * sources that would cause the sequencer to halt have been
110 * asserted. If, for example, a SCSI bus reset is detected
111 * while we are fielding a different, pausing, interrupt type,
112 * we don't want to release the sequencer before going back
113 * into our interrupt handler and dealing with this new
114 * condition.
116 static __inline void
117 ahc_unpause(struct ahc_softc *ahc)
119 if ((ahc_inb(ahc, INTSTAT) & (SCSIINT | SEQINT | BRKADRINT)) == 0)
120 ahc_outb(ahc, HCNTRL, ahc->unpause);
123 /*********************** Untagged Transaction Routines ************************/
124 static __inline void ahc_freeze_untagged_queues(struct ahc_softc *ahc);
125 static __inline void ahc_release_untagged_queues(struct ahc_softc *ahc);
128 * Block our completion routine from starting the next untagged
129 * transaction for this target or target lun.
131 static __inline void
132 ahc_freeze_untagged_queues(struct ahc_softc *ahc)
134 if ((ahc->flags & AHC_SCB_BTT) == 0)
135 ahc->untagged_queue_lock++;
139 * Allow the next untagged transaction for this target or target lun
140 * to be executed. We use a counting semaphore to allow the lock
141 * to be acquired recursively. Once the count drops to zero, the
142 * transaction queues will be run.
144 static __inline void
145 ahc_release_untagged_queues(struct ahc_softc *ahc)
147 if ((ahc->flags & AHC_SCB_BTT) == 0) {
148 ahc->untagged_queue_lock--;
149 if (ahc->untagged_queue_lock == 0)
150 ahc_run_untagged_queues(ahc);
154 /************************** Memory mapping routines ***************************/
155 static __inline struct ahc_dma_seg *
156 ahc_sg_bus_to_virt(struct scb *scb,
157 uint32_t sg_busaddr);
158 static __inline uint32_t
159 ahc_sg_virt_to_bus(struct scb *scb,
160 struct ahc_dma_seg *sg);
161 static __inline uint32_t
162 ahc_hscb_busaddr(struct ahc_softc *ahc, u_int index);
163 static __inline void ahc_sync_scb(struct ahc_softc *ahc,
164 struct scb *scb, int op);
165 static __inline void ahc_sync_sglist(struct ahc_softc *ahc,
166 struct scb *scb, int op);
167 static __inline uint32_t
168 ahc_targetcmd_offset(struct ahc_softc *ahc,
169 u_int index);
171 static __inline struct ahc_dma_seg *
172 ahc_sg_bus_to_virt(struct scb *scb, uint32_t sg_busaddr)
174 int sg_index;
176 sg_index = (sg_busaddr - scb->sg_list_phys)/sizeof(struct ahc_dma_seg);
177 /* sg_list_phys points to entry 1, not 0 */
178 sg_index++;
180 return (&scb->sg_list[sg_index]);
183 static __inline uint32_t
184 ahc_sg_virt_to_bus(struct scb *scb, struct ahc_dma_seg *sg)
186 int sg_index;
188 /* sg_list_phys points to entry 1, not 0 */
189 sg_index = sg - &scb->sg_list[1];
191 return (scb->sg_list_phys + (sg_index * sizeof(*scb->sg_list)));
194 static __inline uint32_t
195 ahc_hscb_busaddr(struct ahc_softc *ahc, u_int index)
197 return (ahc->scb_data->hscb_busaddr
198 + (sizeof(struct hardware_scb) * index));
201 static __inline void
202 ahc_sync_scb(struct ahc_softc *ahc, struct scb *scb, int op)
204 ahc_dmamap_sync(ahc, ahc->parent_dmat,
205 ahc->scb_data->hscb_dmamap,
206 /*offset*/(scb->hscb - ahc->scb_data->hscbs) * sizeof(*scb->hscb),
207 /*len*/sizeof(*scb->hscb), op);
210 static __inline void
211 ahc_sync_sglist(struct ahc_softc *ahc, struct scb *scb, int op)
213 if (scb->sg_count == 0)
214 return;
216 ahc_dmamap_sync(ahc, ahc->parent_dmat, scb->sg_map->sg_dmamap,
217 /*offset*/(scb->sg_list - scb->sg_map->sg_vaddr)
218 * sizeof(struct ahc_dma_seg),
219 /*len*/sizeof(struct ahc_dma_seg) * scb->sg_count, op);
222 static __inline uint32_t
223 ahc_targetcmd_offset(struct ahc_softc *ahc, u_int index)
225 return (((uint8_t *)&ahc->targetcmds[index]) - ahc->qoutfifo);
228 /******************************** Debugging ***********************************/
229 static inline const char *ahc_name(struct ahc_softc *ahc);
231 static inline const char *
232 ahc_name(struct ahc_softc *ahc)
234 return (ahc->name);
237 /*********************** Miscellaneous Support Functions ***********************/
239 static __inline void ahc_update_residual(struct ahc_softc *ahc,
240 struct scb *scb);
241 static __inline struct ahc_initiator_tinfo *
242 ahc_fetch_transinfo(struct ahc_softc *ahc,
243 char channel, u_int our_id,
244 u_int remote_id,
245 struct ahc_tmode_tstate **tstate);
246 static __inline uint16_t
247 ahc_inw(struct ahc_softc *ahc, u_int port);
248 static __inline void ahc_outw(struct ahc_softc *ahc, u_int port,
249 u_int value);
250 static __inline uint32_t
251 ahc_inl(struct ahc_softc *ahc, u_int port);
252 static __inline void ahc_outl(struct ahc_softc *ahc, u_int port,
253 uint32_t value);
254 static __inline uint64_t
255 ahc_inq(struct ahc_softc *ahc, u_int port);
256 static __inline void ahc_outq(struct ahc_softc *ahc, u_int port,
257 uint64_t value);
258 static __inline struct scb*
259 ahc_get_scb(struct ahc_softc *ahc);
260 static __inline void ahc_free_scb(struct ahc_softc *ahc, struct scb *scb);
261 static __inline void ahc_swap_with_next_hscb(struct ahc_softc *ahc,
262 struct scb *scb);
263 static __inline void ahc_queue_scb(struct ahc_softc *ahc, struct scb *scb);
264 static __inline struct scsi_sense_data *
265 ahc_get_sense_buf(struct ahc_softc *ahc,
266 struct scb *scb);
267 static __inline uint32_t
268 ahc_get_sense_bufaddr(struct ahc_softc *ahc,
269 struct scb *scb);
272 * Determine whether the sequencer reported a residual
273 * for this SCB/transaction.
275 static __inline void
276 ahc_update_residual(struct ahc_softc *ahc, struct scb *scb)
278 uint32_t sgptr;
280 sgptr = ahc_le32toh(scb->hscb->sgptr);
281 if ((sgptr & SG_RESID_VALID) != 0)
282 ahc_calc_residual(ahc, scb);
286 * Return pointers to the transfer negotiation information
287 * for the specified our_id/remote_id pair.
289 static __inline struct ahc_initiator_tinfo *
290 ahc_fetch_transinfo(struct ahc_softc *ahc, char channel, u_int our_id,
291 u_int remote_id, struct ahc_tmode_tstate **tstate)
294 * Transfer data structures are stored from the perspective
295 * of the target role. Since the parameters for a connection
296 * in the initiator role to a given target are the same as
297 * when the roles are reversed, we pretend we are the target.
299 #ifdef notdef
300 if (channel == 'B')
301 our_id += 8;
302 #endif
303 *tstate = ahc->enabled_targets[our_id];
304 return (&(*tstate)->transinfo[remote_id]);
307 static __inline uint16_t
308 ahc_inw(struct ahc_softc *ahc, u_int port)
310 return ((ahc_inb(ahc, port+1) << 8) | ahc_inb(ahc, port));
313 static __inline void
314 ahc_outw(struct ahc_softc *ahc, u_int port, u_int value)
316 ahc_outb(ahc, port, value & 0xFF);
317 ahc_outb(ahc, port+1, (value >> 8) & 0xFF);
320 static __inline uint32_t
321 ahc_inl(struct ahc_softc *ahc, u_int port)
323 return ((ahc_inb(ahc, port))
324 | (ahc_inb(ahc, port+1) << 8)
325 | (ahc_inb(ahc, port+2) << 16)
326 | (ahc_inb(ahc, port+3) << 24));
329 static __inline void
330 ahc_outl(struct ahc_softc *ahc, u_int port, uint32_t value)
332 ahc_outb(ahc, port, (value) & 0xFF);
333 ahc_outb(ahc, port+1, ((value) >> 8) & 0xFF);
334 ahc_outb(ahc, port+2, ((value) >> 16) & 0xFF);
335 ahc_outb(ahc, port+3, ((value) >> 24) & 0xFF);
338 static __inline uint64_t
339 ahc_inq(struct ahc_softc *ahc, u_int port)
341 return ((ahc_inb(ahc, port))
342 | (ahc_inb(ahc, port+1) << 8)
343 | (ahc_inb(ahc, port+2) << 16)
344 | (ahc_inb(ahc, port+3) << 24)
345 | (((uint64_t)ahc_inb(ahc, port+4)) << 32)
346 | (((uint64_t)ahc_inb(ahc, port+5)) << 40)
347 | (((uint64_t)ahc_inb(ahc, port+6)) << 48)
348 | (((uint64_t)ahc_inb(ahc, port+7)) << 56));
351 static __inline void
352 ahc_outq(struct ahc_softc *ahc, u_int port, uint64_t value)
354 ahc_outb(ahc, port, value & 0xFF);
355 ahc_outb(ahc, port+1, (value >> 8) & 0xFF);
356 ahc_outb(ahc, port+2, (value >> 16) & 0xFF);
357 ahc_outb(ahc, port+3, (value >> 24) & 0xFF);
358 ahc_outb(ahc, port+4, (value >> 32) & 0xFF);
359 ahc_outb(ahc, port+5, (value >> 40) & 0xFF);
360 ahc_outb(ahc, port+6, (value >> 48) & 0xFF);
361 ahc_outb(ahc, port+7, (value >> 56) & 0xFF);
365 * Get a free scb. If there are none, see if we can allocate a new SCB.
367 static __inline struct scb *
368 ahc_get_scb(struct ahc_softc *ahc)
370 struct scb *scb;
372 if ((scb = SLIST_FIRST(&ahc->scb_data->free_scbs)) == NULL)
373 return (NULL);
374 SLIST_REMOVE_HEAD(&ahc->scb_data->free_scbs, links.sle);
375 return (scb);
379 * Return an SCB resource to the free list.
381 static __inline void
382 ahc_free_scb(struct ahc_softc *ahc, struct scb *scb)
384 struct hardware_scb *hscb;
386 hscb = scb->hscb;
387 /* Clean up for the next user */
388 ahc->scb_data->scbindex[hscb->tag] = NULL;
389 scb->flags = SCB_FREE;
390 hscb->control = 0;
392 SLIST_INSERT_HEAD(&ahc->scb_data->free_scbs, scb, links.sle);
394 /* Notify the OSM that a resource is now available. */
395 ahc_platform_scb_free(ahc, scb);
398 static __inline struct scb *
399 ahc_lookup_scb(struct ahc_softc *ahc, u_int tag)
401 struct scb* scb;
403 scb = ahc->scb_data->scbindex[tag];
404 if (scb != NULL)
405 ahc_sync_scb(ahc, scb,
406 BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE);
407 return (scb);
410 static __inline void
411 ahc_swap_with_next_hscb(struct ahc_softc *ahc, struct scb *scb)
413 struct hardware_scb *q_hscb;
414 u_int saved_tag;
417 * Our queuing method is a bit tricky. The card
418 * knows in advance which HSCB to download, and we
419 * can't disappoint it. To achieve this, the next
420 * SCB to download is saved off in ahc->next_queued_scb.
421 * When we are called to queue "an arbitrary scb",
422 * we copy the contents of the incoming HSCB to the one
423 * the sequencer knows about, swap HSCB pointers and
424 * finally assign the SCB to the tag indexed location
425 * in the scb_array. This makes sure that we can still
426 * locate the correct SCB by SCB_TAG.
428 q_hscb = ahc->next_queued_scb->hscb;
429 saved_tag = q_hscb->tag;
430 memcpy(q_hscb, scb->hscb, sizeof(*scb->hscb));
431 if ((scb->flags & SCB_CDB32_PTR) != 0) {
432 q_hscb->shared_data.cdb_ptr =
433 ahc_htole32(ahc_hscb_busaddr(ahc, q_hscb->tag)
434 + offsetof(struct hardware_scb, cdb32));
436 q_hscb->tag = saved_tag;
437 q_hscb->next = scb->hscb->tag;
439 /* Now swap HSCB pointers. */
440 ahc->next_queued_scb->hscb = scb->hscb;
441 scb->hscb = q_hscb;
443 /* Now define the mapping from tag to SCB in the scbindex */
444 ahc->scb_data->scbindex[scb->hscb->tag] = scb;
448 * Tell the sequencer about a new transaction to execute.
450 static __inline void
451 ahc_queue_scb(struct ahc_softc *ahc, struct scb *scb)
453 ahc_swap_with_next_hscb(ahc, scb);
455 if (scb->hscb->tag == SCB_LIST_NULL
456 || scb->hscb->next == SCB_LIST_NULL)
457 panic("Attempt to queue invalid SCB tag %x:%x\n",
458 scb->hscb->tag, scb->hscb->next);
460 * Keep a history of SCBs we've downloaded in the qinfifo.
462 ahc->qinfifo[ahc->qinfifonext++] = scb->hscb->tag;
465 * Make sure our data is consistent from the
466 * perspective of the adapter.
468 ahc_sync_scb(ahc, scb, BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
470 /* Tell the adapter about the newly queued SCB */
471 if ((ahc->features & AHC_QUEUE_REGS) != 0) {
472 ahc_outb(ahc, HNSCB_QOFF, ahc->qinfifonext);
473 } else {
474 if ((ahc->features & AHC_AUTOPAUSE) == 0)
475 ahc_pause(ahc);
476 ahc_outb(ahc, KERNEL_QINPOS, ahc->qinfifonext);
477 if ((ahc->features & AHC_AUTOPAUSE) == 0)
478 ahc_unpause(ahc);
482 static __inline struct scsi_sense_data *
483 ahc_get_sense_buf(struct ahc_softc *ahc, struct scb *scb)
485 int offset;
487 offset = scb - ahc->scb_data->scbarray;
488 return (&ahc->scb_data->sense[offset]);
491 static __inline uint32_t
492 ahc_get_sense_bufaddr(struct ahc_softc *ahc, struct scb *scb)
494 int offset;
496 offset = scb - ahc->scb_data->scbarray;
497 return (ahc->scb_data->sense_busaddr
498 + (offset * sizeof(struct scsi_sense_data)));
501 /************************** Interrupt Processing ******************************/
502 static __inline void ahc_sync_qoutfifo(struct ahc_softc *ahc, int op);
503 static __inline void ahc_sync_tqinfifo(struct ahc_softc *ahc, int op);
504 static __inline u_int ahc_check_cmdcmpltqueues(struct ahc_softc *ahc);
505 static __inline int ahc_intr(void *arg);
506 static __inline void ahc_minphys(struct buf *bp);
508 static __inline void
509 ahc_minphys(struct buf *bp)
512 * Even though the card can transfer up to 16megs per command
513 * we are limited by the number of segments in the DMA segment
514 * list that we can hold. The worst case is that all pages are
515 * discontinuous physically, hence the "page per segment" limit
516 * enforced here.
518 if (bp->b_bcount > AHC_MAXTRANSFER_SIZE) {
519 bp->b_bcount = AHC_MAXTRANSFER_SIZE;
521 minphys(bp);
524 static __inline void
525 ahc_sync_qoutfifo(struct ahc_softc *ahc, int op)
527 ahc_dmamap_sync(ahc, ahc->parent_dmat, ahc->shared_data_dmamap,
528 /*offset*/0, /*len*/256, op);
531 static __inline void
532 ahc_sync_tqinfifo(struct ahc_softc *ahc, int op)
534 #ifdef AHC_TARGET_MODE
535 if ((ahc->flags & AHC_TARGETROLE) != 0) {
536 ahc_dmamap_sync(ahc, ahc->parent_dmat /*shared_data_dmat*/,
537 ahc->shared_data_dmamap,
538 ahc_targetcmd_offset(ahc, 0),
539 sizeof(struct target_cmd) * AHC_TMODE_CMDS,
540 op);
542 #endif
546 * See if the firmware has posted any completed commands
547 * into our in-core command complete fifos.
549 #define AHC_RUN_QOUTFIFO 0x1
550 #define AHC_RUN_TQINFIFO 0x2
551 static __inline u_int
552 ahc_check_cmdcmpltqueues(struct ahc_softc *ahc)
554 u_int retval;
556 retval = 0;
557 ahc_dmamap_sync(ahc, ahc->parent_dmat /*shared_data_dmat*/, ahc->shared_data_dmamap,
558 /*offset*/ahc->qoutfifonext, /*len*/1,
559 BUS_DMASYNC_POSTREAD);
560 if (ahc->qoutfifo[ahc->qoutfifonext] != SCB_LIST_NULL)
561 retval |= AHC_RUN_QOUTFIFO;
562 #ifdef AHC_TARGET_MODE
563 if ((ahc->flags & AHC_TARGETROLE) != 0
564 && (ahc->flags & AHC_TQINFIFO_BLOCKED) == 0) {
565 ahc_dmamap_sync(ahc, ahc->parent_dmat /*shared_data_dmat*/,
566 ahc->shared_data_dmamap,
567 ahc_targetcmd_offset(ahc, ahc->tqinfifonext),
568 /*len*/sizeof(struct target_cmd),
569 BUS_DMASYNC_POSTREAD);
570 if (ahc->targetcmds[ahc->tqinfifonext].cmd_valid != 0)
571 retval |= AHC_RUN_TQINFIFO;
573 #endif
574 return (retval);
578 * Catch an interrupt from the adapter
580 static __inline int
581 ahc_intr(void *arg)
583 struct ahc_softc *ahc = (struct ahc_softc*)arg;
584 u_int intstat;
586 if ((ahc->pause & INTEN) == 0) {
588 * Our interrupt is not enabled on the chip
589 * and may be disabled for re-entrancy reasons,
590 * so just return. This is likely just a shared
591 * interrupt.
593 return 1;
596 * Instead of directly reading the interrupt status register,
597 * infer the cause of the interrupt by checking our in-core
598 * completion queues. This avoids a costly PCI bus read in
599 * most cases.
601 if ((ahc->flags & (AHC_ALL_INTERRUPTS|AHC_EDGE_INTERRUPT)) == 0
602 && (ahc_check_cmdcmpltqueues(ahc) != 0))
603 intstat = CMDCMPLT;
604 else {
605 intstat = ahc_inb(ahc, INTSTAT);
608 if (intstat & CMDCMPLT) {
609 ahc_outb(ahc, CLRINT, CLRCMDINT);
611 * Ensure that the chip sees that we've cleared
612 * this interrupt before we walk the output fifo.
613 * Otherwise, we may, due to posted bus writes,
614 * clear the interrupt after we finish the scan,
615 * and after the sequencer has added new entries
616 * and asserted the interrupt again.
618 ahc_flush_device_writes(ahc);
619 scsipi_channel_freeze(ahc->channel == 'A' ? &ahc->sc_channel : &ahc->sc_channel_b, 1);
620 ahc_run_qoutfifo(ahc);
621 scsipi_channel_thaw(ahc->channel == 'A' ? &ahc->sc_channel : &ahc->sc_channel_b, 1);
622 #ifdef AHC_TARGET_MODE
623 if ((ahc->flags & AHC_TARGETROLE) != 0)
624 ahc_run_tqinfifo(ahc, /*paused*/FALSE);
625 #endif
628 if (intstat == 0xFF && (ahc->features & AHC_REMOVABLE) != 0)
629 /* Hot eject */
630 return 1;
632 if ((intstat & INT_PEND) == 0) {
633 #if AHC_PCI_CONFIG > 0
634 if (ahc->unsolicited_ints > 500) {
635 ahc->unsolicited_ints = 0;
636 if ((ahc->chip & AHC_PCI) != 0
637 && (ahc_inb(ahc, ERROR) & PCIERRSTAT) != 0)
638 ahc->bus_intr(ahc);
640 #endif
641 ahc->unsolicited_ints++;
642 return 1;
644 ahc->unsolicited_ints = 0;
646 if (intstat & BRKADRINT) {
647 ahc_handle_brkadrint(ahc);
648 /* Fatal error, no more interrupts to handle. */
649 return 1;
652 if ((intstat & (SEQINT|SCSIINT)) != 0)
653 ahc_pause_bug_fix(ahc);
655 if ((intstat & SEQINT) != 0)
656 ahc_handle_seqint(ahc, intstat);
658 if ((intstat & SCSIINT) != 0)
659 ahc_handle_scsiint(ahc, intstat);
661 return 1;
664 #endif /* _AIC7XXX_INLINE_H_ */