xref: /illumos-gate/usr/src/uts/sun4u/io/pci/pci_ib.c (revision e4517573)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
5b0fc0e77Sgovinda  * Common Development and Distribution License (the "License").
6b0fc0e77Sgovinda  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22*e4517573Srameshc  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate /*
297c478bd9Sstevel@tonic-gate  * PCI Interrupt Block (RISCx) implementation
307c478bd9Sstevel@tonic-gate  *	initialization
317c478bd9Sstevel@tonic-gate  *	interrupt enable/disable/clear and mapping register manipulation
327c478bd9Sstevel@tonic-gate  */
337c478bd9Sstevel@tonic-gate 
347c478bd9Sstevel@tonic-gate #include <sys/types.h>
357c478bd9Sstevel@tonic-gate #include <sys/kmem.h>
367c478bd9Sstevel@tonic-gate #include <sys/async.h>
377c478bd9Sstevel@tonic-gate #include <sys/systm.h>		/* panicstr */
387c478bd9Sstevel@tonic-gate #include <sys/spl.h>
397c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
407c478bd9Sstevel@tonic-gate #include <sys/machsystm.h>	/* intr_dist_add */
417c478bd9Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
427c478bd9Sstevel@tonic-gate #include <sys/clock.h>
437c478bd9Sstevel@tonic-gate #include <sys/cpuvar.h>
447c478bd9Sstevel@tonic-gate #include <sys/pci/pci_obj.h>
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate #ifdef _STARFIRE
477c478bd9Sstevel@tonic-gate #include <sys/starfire.h>
487c478bd9Sstevel@tonic-gate #endif /* _STARFIRE */
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate /*LINTLIBRARY*/
517c478bd9Sstevel@tonic-gate static uint_t ib_intr_reset(void *arg);
527c478bd9Sstevel@tonic-gate 
537c478bd9Sstevel@tonic-gate void
547c478bd9Sstevel@tonic-gate ib_create(pci_t *pci_p)
557c478bd9Sstevel@tonic-gate {
567c478bd9Sstevel@tonic-gate 	dev_info_t *dip = pci_p->pci_dip;
577c478bd9Sstevel@tonic-gate 	ib_t *ib_p;
587c478bd9Sstevel@tonic-gate 	uintptr_t a;
597c478bd9Sstevel@tonic-gate 	int i;
607c478bd9Sstevel@tonic-gate 
617c478bd9Sstevel@tonic-gate 	/*
627c478bd9Sstevel@tonic-gate 	 * Allocate interrupt block state structure and link it to
637c478bd9Sstevel@tonic-gate 	 * the pci state structure.
647c478bd9Sstevel@tonic-gate 	 */
657c478bd9Sstevel@tonic-gate 	ib_p = kmem_zalloc(sizeof (ib_t), KM_SLEEP);
667c478bd9Sstevel@tonic-gate 	pci_p->pci_ib_p = ib_p;
677c478bd9Sstevel@tonic-gate 	ib_p->ib_pci_p = pci_p;
687c478bd9Sstevel@tonic-gate 
697c478bd9Sstevel@tonic-gate 	a = pci_ib_setup(ib_p);
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate 	/*
727c478bd9Sstevel@tonic-gate 	 * Determine virtual addresses of interrupt mapping, clear and diag
737c478bd9Sstevel@tonic-gate 	 * registers that have common offsets.
747c478bd9Sstevel@tonic-gate 	 */
757c478bd9Sstevel@tonic-gate 	ib_p->ib_slot_clear_intr_regs =
76f0d69850Srameshc 	    a + COMMON_IB_SLOT_CLEAR_INTR_REG_OFFSET;
777c478bd9Sstevel@tonic-gate 	ib_p->ib_intr_retry_timer_reg =
78f0d69850Srameshc 	    (uint64_t *)(a + COMMON_IB_INTR_RETRY_TIMER_OFFSET);
797c478bd9Sstevel@tonic-gate 	ib_p->ib_slot_intr_state_diag_reg =
80f0d69850Srameshc 	    (uint64_t *)(a + COMMON_IB_SLOT_INTR_STATE_DIAG_REG);
817c478bd9Sstevel@tonic-gate 	ib_p->ib_obio_intr_state_diag_reg =
82f0d69850Srameshc 	    (uint64_t *)(a + COMMON_IB_OBIO_INTR_STATE_DIAG_REG);
837c478bd9Sstevel@tonic-gate 
847c478bd9Sstevel@tonic-gate 	if (CHIP_TYPE(pci_p) != PCI_CHIP_XMITS) {
857c478bd9Sstevel@tonic-gate 		ib_p->ib_upa_imr[0] = (volatile uint64_t *)
86f0d69850Srameshc 		    (a + COMMON_IB_UPA0_INTR_MAP_REG_OFFSET);
877c478bd9Sstevel@tonic-gate 		ib_p->ib_upa_imr[1] = (volatile uint64_t *)
88f0d69850Srameshc 		    (a + COMMON_IB_UPA1_INTR_MAP_REG_OFFSET);
897c478bd9Sstevel@tonic-gate 	}
907c478bd9Sstevel@tonic-gate 
917c478bd9Sstevel@tonic-gate 	DEBUG2(DBG_ATTACH, dip, "ib_create: slot_imr=%x, slot_cir=%x\n",
92f0d69850Srameshc 	    ib_p->ib_slot_intr_map_regs, ib_p->ib_obio_intr_map_regs);
937c478bd9Sstevel@tonic-gate 	DEBUG2(DBG_ATTACH, dip, "ib_create: obio_imr=%x, obio_cir=%x\n",
94f0d69850Srameshc 	    ib_p->ib_slot_clear_intr_regs, ib_p->ib_obio_clear_intr_regs);
957c478bd9Sstevel@tonic-gate 	DEBUG2(DBG_ATTACH, dip, "ib_create: upa0_imr=%x, upa1_imr=%x\n",
96f0d69850Srameshc 	    ib_p->ib_upa_imr[0], ib_p->ib_upa_imr[1]);
977c478bd9Sstevel@tonic-gate 	DEBUG3(DBG_ATTACH, dip,
98f0d69850Srameshc 	    "ib_create: retry_timer=%x, obio_diag=%x slot_diag=%x\n",
99f0d69850Srameshc 	    ib_p->ib_intr_retry_timer_reg,
100f0d69850Srameshc 	    ib_p->ib_obio_intr_state_diag_reg,
101f0d69850Srameshc 	    ib_p->ib_slot_intr_state_diag_reg);
1027c478bd9Sstevel@tonic-gate 
1037c478bd9Sstevel@tonic-gate 	ib_p->ib_ino_lst = (ib_ino_info_t *)NULL;
1047c478bd9Sstevel@tonic-gate 	mutex_init(&ib_p->ib_intr_lock, NULL, MUTEX_DRIVER, NULL);
1057c478bd9Sstevel@tonic-gate 	mutex_init(&ib_p->ib_ino_lst_mutex, NULL, MUTEX_DRIVER, NULL);
1067c478bd9Sstevel@tonic-gate 
1077c478bd9Sstevel@tonic-gate 	DEBUG1(DBG_ATTACH, dip, "ib_create: numproxy=%x\n",
108f0d69850Srameshc 	    pci_p->pci_numproxy);
1097c478bd9Sstevel@tonic-gate 	for (i = 1; i <= pci_p->pci_numproxy; i++) {
1107c478bd9Sstevel@tonic-gate 		set_intr_mapping_reg(pci_p->pci_id,
111f0d69850Srameshc 		    (uint64_t *)ib_p->ib_upa_imr[i - 1], i);
1127c478bd9Sstevel@tonic-gate 	}
1137c478bd9Sstevel@tonic-gate 
1147c478bd9Sstevel@tonic-gate 	ib_configure(ib_p);
1157c478bd9Sstevel@tonic-gate 	bus_func_register(BF_TYPE_RESINTR, ib_intr_reset, ib_p);
1167c478bd9Sstevel@tonic-gate }
1177c478bd9Sstevel@tonic-gate 
1187c478bd9Sstevel@tonic-gate void
1197c478bd9Sstevel@tonic-gate ib_destroy(pci_t *pci_p)
1207c478bd9Sstevel@tonic-gate {
1217c478bd9Sstevel@tonic-gate 	ib_t *ib_p = pci_p->pci_ib_p;
1227c478bd9Sstevel@tonic-gate 	dev_info_t *dip = pci_p->pci_dip;
1237c478bd9Sstevel@tonic-gate 
1247c478bd9Sstevel@tonic-gate 	DEBUG0(DBG_IB, dip, "ib_destroy\n");
1257c478bd9Sstevel@tonic-gate 	bus_func_unregister(BF_TYPE_RESINTR, ib_intr_reset, ib_p);
1267c478bd9Sstevel@tonic-gate 
1277c478bd9Sstevel@tonic-gate 	intr_dist_rem_weighted(ib_intr_dist_all, ib_p);
1287c478bd9Sstevel@tonic-gate 	mutex_destroy(&ib_p->ib_ino_lst_mutex);
1297c478bd9Sstevel@tonic-gate 	mutex_destroy(&ib_p->ib_intr_lock);
1307c478bd9Sstevel@tonic-gate 
1317c478bd9Sstevel@tonic-gate 	ib_free_ino_all(ib_p);
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate 	kmem_free(ib_p, sizeof (ib_t));
1347c478bd9Sstevel@tonic-gate 	pci_p->pci_ib_p = NULL;
1357c478bd9Sstevel@tonic-gate }
1367c478bd9Sstevel@tonic-gate 
1377c478bd9Sstevel@tonic-gate void
1387c478bd9Sstevel@tonic-gate ib_configure(ib_t *ib_p)
1397c478bd9Sstevel@tonic-gate {
1407c478bd9Sstevel@tonic-gate 	/* XXX could be different between psycho and schizo */
1417c478bd9Sstevel@tonic-gate 	*ib_p->ib_intr_retry_timer_reg = pci_intr_retry_intv;
1427c478bd9Sstevel@tonic-gate }
1437c478bd9Sstevel@tonic-gate 
1447c478bd9Sstevel@tonic-gate /*
1457c478bd9Sstevel@tonic-gate  * can only used for psycho internal interrupts thermal, power,
1467c478bd9Sstevel@tonic-gate  * ue, ce, pbm
1477c478bd9Sstevel@tonic-gate  */
1487c478bd9Sstevel@tonic-gate void
1497c478bd9Sstevel@tonic-gate ib_intr_enable(pci_t *pci_p, ib_ino_t ino)
1507c478bd9Sstevel@tonic-gate {
1517c478bd9Sstevel@tonic-gate 	ib_t *ib_p = pci_p->pci_ib_p;
1527c478bd9Sstevel@tonic-gate 	ib_mondo_t mondo = IB_INO_TO_MONDO(ib_p, ino);
1537c478bd9Sstevel@tonic-gate 	volatile uint64_t *imr_p = ib_intr_map_reg_addr(ib_p, ino);
1547c478bd9Sstevel@tonic-gate 	uint_t cpu_id;
1557c478bd9Sstevel@tonic-gate 
1567c478bd9Sstevel@tonic-gate 	/*
1577c478bd9Sstevel@tonic-gate 	 * Determine the cpu for the interrupt.
1587c478bd9Sstevel@tonic-gate 	 */
1597c478bd9Sstevel@tonic-gate 	mutex_enter(&ib_p->ib_intr_lock);
1607c478bd9Sstevel@tonic-gate 	cpu_id = intr_dist_cpuid();
1617c478bd9Sstevel@tonic-gate #ifdef _STARFIRE
1627c478bd9Sstevel@tonic-gate 	cpu_id = pc_translate_tgtid(IB2CB(ib_p)->cb_ittrans_cookie, cpu_id,
163f0d69850Srameshc 	    IB_GET_MAPREG_INO(ino));
1647c478bd9Sstevel@tonic-gate #endif /* _STARFIRE */
1657c478bd9Sstevel@tonic-gate 	DEBUG2(DBG_IB, pci_p->pci_dip,
166f0d69850Srameshc 	    "ib_intr_enable: ino=%x cpu_id=%x\n", ino, cpu_id);
1677c478bd9Sstevel@tonic-gate 
1687c478bd9Sstevel@tonic-gate 	*imr_p = ib_get_map_reg(mondo, cpu_id);
1697c478bd9Sstevel@tonic-gate 	IB_INO_INTR_CLEAR(ib_clear_intr_reg_addr(ib_p, ino));
1707c478bd9Sstevel@tonic-gate 	mutex_exit(&ib_p->ib_intr_lock);
1717c478bd9Sstevel@tonic-gate }
1727c478bd9Sstevel@tonic-gate 
1737c478bd9Sstevel@tonic-gate /*
1747c478bd9Sstevel@tonic-gate  * Disable the interrupt via its interrupt mapping register.
1757c478bd9Sstevel@tonic-gate  * Can only be used for internal interrupts: thermal, power, ue, ce, pbm.
1767c478bd9Sstevel@tonic-gate  * If called under interrupt context, wait should be set to 0
1777c478bd9Sstevel@tonic-gate  */
1787c478bd9Sstevel@tonic-gate void
1797c478bd9Sstevel@tonic-gate ib_intr_disable(ib_t *ib_p, ib_ino_t ino, int wait)
1807c478bd9Sstevel@tonic-gate {
1817c478bd9Sstevel@tonic-gate 	volatile uint64_t *imr_p = ib_intr_map_reg_addr(ib_p, ino);
1827c478bd9Sstevel@tonic-gate 	volatile uint64_t *state_reg_p = IB_INO_INTR_STATE_REG(ib_p, ino);
1837c478bd9Sstevel@tonic-gate 	hrtime_t start_time;
1847c478bd9Sstevel@tonic-gate 
1857c478bd9Sstevel@tonic-gate 	/* disable the interrupt */
1867c478bd9Sstevel@tonic-gate 	mutex_enter(&ib_p->ib_intr_lock);
1877c478bd9Sstevel@tonic-gate 	IB_INO_INTR_OFF(imr_p);
1887c478bd9Sstevel@tonic-gate 	*imr_p;	/* flush previous write */
1897c478bd9Sstevel@tonic-gate 	mutex_exit(&ib_p->ib_intr_lock);
1907c478bd9Sstevel@tonic-gate 
1917c478bd9Sstevel@tonic-gate 	if (!wait)
1927c478bd9Sstevel@tonic-gate 		goto wait_done;
1937c478bd9Sstevel@tonic-gate 
1947c478bd9Sstevel@tonic-gate 	start_time = gethrtime();
1957c478bd9Sstevel@tonic-gate 	/* busy wait if there is interrupt being processed */
1967c478bd9Sstevel@tonic-gate 	while (IB_INO_INTR_PENDING(state_reg_p, ino) && !panicstr) {
1977c478bd9Sstevel@tonic-gate 		if (gethrtime() - start_time > pci_intrpend_timeout) {
1987c478bd9Sstevel@tonic-gate 			pbm_t *pbm_p = ib_p->ib_pci_p->pci_pbm_p;
1997c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "%s:%s: ib_intr_disable timeout %x",
200f0d69850Srameshc 			    pbm_p->pbm_nameinst_str,
201f0d69850Srameshc 			    pbm_p->pbm_nameaddr_str, ino);
2027c478bd9Sstevel@tonic-gate 				break;
2037c478bd9Sstevel@tonic-gate 		}
2047c478bd9Sstevel@tonic-gate 	}
2057c478bd9Sstevel@tonic-gate wait_done:
2067c478bd9Sstevel@tonic-gate 	IB_INO_INTR_PEND(ib_clear_intr_reg_addr(ib_p, ino));
2077c478bd9Sstevel@tonic-gate #ifdef _STARFIRE
2087c478bd9Sstevel@tonic-gate 	pc_ittrans_cleanup(IB2CB(ib_p)->cb_ittrans_cookie,
209f47a9c50Smathue 	    (volatile uint64_t *)(uintptr_t)ino);
2107c478bd9Sstevel@tonic-gate #endif /* _STARFIRE */
2117c478bd9Sstevel@tonic-gate }
2127c478bd9Sstevel@tonic-gate 
2137c478bd9Sstevel@tonic-gate /* can only used for psycho internal interrupts thermal, power, ue, ce, pbm */
2147c478bd9Sstevel@tonic-gate void
2157c478bd9Sstevel@tonic-gate ib_nintr_clear(ib_t *ib_p, ib_ino_t ino)
2167c478bd9Sstevel@tonic-gate {
2177c478bd9Sstevel@tonic-gate 	uint64_t *clr_reg = ib_clear_intr_reg_addr(ib_p, ino);
2187c478bd9Sstevel@tonic-gate 	IB_INO_INTR_CLEAR(clr_reg);
2197c478bd9Sstevel@tonic-gate }
2207c478bd9Sstevel@tonic-gate 
2217c478bd9Sstevel@tonic-gate /*
2227c478bd9Sstevel@tonic-gate  * distribute PBM and UPA interrupts. ino is set to 0 by caller if we
2237c478bd9Sstevel@tonic-gate  * are dealing with UPA interrupts (without inos).
2247c478bd9Sstevel@tonic-gate  */
2257c478bd9Sstevel@tonic-gate void
2267c478bd9Sstevel@tonic-gate ib_intr_dist_nintr(ib_t *ib_p, ib_ino_t ino, volatile uint64_t *imr_p)
2277c478bd9Sstevel@tonic-gate {
2287c478bd9Sstevel@tonic-gate 	volatile uint64_t imr = *imr_p;
2297c478bd9Sstevel@tonic-gate 	uint32_t cpu_id;
2307c478bd9Sstevel@tonic-gate 
2317c478bd9Sstevel@tonic-gate 	if (!IB_INO_INTR_ISON(imr))
2327c478bd9Sstevel@tonic-gate 		return;
2337c478bd9Sstevel@tonic-gate 
2347c478bd9Sstevel@tonic-gate 	cpu_id = intr_dist_cpuid();
2357c478bd9Sstevel@tonic-gate 
2367c478bd9Sstevel@tonic-gate #ifdef _STARFIRE
2377c478bd9Sstevel@tonic-gate 	if (ino) {
2387c478bd9Sstevel@tonic-gate 		cpu_id = pc_translate_tgtid(IB2CB(ib_p)->cb_ittrans_cookie,
239f0d69850Srameshc 		    cpu_id, IB_GET_MAPREG_INO(ino));
2407c478bd9Sstevel@tonic-gate 	}
2417c478bd9Sstevel@tonic-gate #else /* _STARFIRE */
2427c478bd9Sstevel@tonic-gate 	if (ib_map_reg_get_cpu(*imr_p) == cpu_id)
2437c478bd9Sstevel@tonic-gate 		return;
2447c478bd9Sstevel@tonic-gate #endif /* _STARFIRE */
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate 	*imr_p = ib_get_map_reg(IB_IMR2MONDO(imr), cpu_id);
2477c478bd9Sstevel@tonic-gate 	imr = *imr_p;	/* flush previous write */
2487c478bd9Sstevel@tonic-gate }
2497c478bd9Sstevel@tonic-gate 
2507851eb82Sschwartz /*
2517851eb82Sschwartz  * Converts into nsec, ticks logged with a given CPU.  Adds nsec to ih.
2527851eb82Sschwartz  */
2537851eb82Sschwartz /*ARGSUSED*/
2547851eb82Sschwartz void
2557851eb82Sschwartz ib_cpu_ticks_to_ih_nsec(ib_t *ib_p, ih_t *ih_p, uint32_t cpu_id)
2567851eb82Sschwartz {
2577851eb82Sschwartz 	extern kmutex_t pciintr_ks_template_lock;
2587851eb82Sschwartz 	hrtime_t ticks;
2597851eb82Sschwartz 
2607851eb82Sschwartz 	/*
2617851eb82Sschwartz 	 * Because we are updating two fields in ih_t we must lock
2627851eb82Sschwartz 	 * pciintr_ks_template_lock to prevent someone from reading the
2637851eb82Sschwartz 	 * kstats after we set ih_ticks to 0 and before we increment
2647851eb82Sschwartz 	 * ih_nsec to compensate.
2657851eb82Sschwartz 	 *
2667851eb82Sschwartz 	 * We must also protect against the interrupt arriving and incrementing
2677851eb82Sschwartz 	 * ih_ticks between the time we read it and when we reset it to 0.
2687851eb82Sschwartz 	 * To do this we use atomic_swap.
2697851eb82Sschwartz 	 */
2707851eb82Sschwartz 
2717851eb82Sschwartz 	ASSERT(MUTEX_HELD(&ib_p->ib_ino_lst_mutex));
2727851eb82Sschwartz 
2737851eb82Sschwartz 	mutex_enter(&pciintr_ks_template_lock);
2747851eb82Sschwartz 	ticks = atomic_swap_64(&ih_p->ih_ticks, 0);
2757851eb82Sschwartz 	ih_p->ih_nsec += (uint64_t)tick2ns(ticks, cpu_id);
2767851eb82Sschwartz 	mutex_exit(&pciintr_ks_template_lock);
2777851eb82Sschwartz }
2787851eb82Sschwartz 
2797c478bd9Sstevel@tonic-gate static void
2807c478bd9Sstevel@tonic-gate ib_intr_dist(ib_t *ib_p, ib_ino_info_t *ino_p)
2817c478bd9Sstevel@tonic-gate {
2827c478bd9Sstevel@tonic-gate 	uint32_t cpu_id = ino_p->ino_cpuid;
2837c478bd9Sstevel@tonic-gate 	ib_ino_t ino = ino_p->ino_ino;
2847c478bd9Sstevel@tonic-gate 	volatile uint64_t imr, *imr_p, *state_reg;
2857c478bd9Sstevel@tonic-gate 	hrtime_t start_time;
2867c478bd9Sstevel@tonic-gate 
2877c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&ib_p->ib_ino_lst_mutex));
2887c478bd9Sstevel@tonic-gate 	imr_p = ib_intr_map_reg_addr(ib_p, ino);
2897c478bd9Sstevel@tonic-gate 	state_reg = IB_INO_INTR_STATE_REG(ib_p, ino);
2907c478bd9Sstevel@tonic-gate 
2917c478bd9Sstevel@tonic-gate #ifdef _STARFIRE
2927c478bd9Sstevel@tonic-gate 	/*
2937c478bd9Sstevel@tonic-gate 	 * For Starfire it is a pain to check the current target for
2947c478bd9Sstevel@tonic-gate 	 * the mondo since we have to read the PC asics ITTR slot
2957c478bd9Sstevel@tonic-gate 	 * assigned to this mondo. It will be much easier to assume
2967c478bd9Sstevel@tonic-gate 	 * the current target is always different and do the target
2977c478bd9Sstevel@tonic-gate 	 * reprogram all the time.
2987c478bd9Sstevel@tonic-gate 	 */
2997c478bd9Sstevel@tonic-gate 	cpu_id = pc_translate_tgtid(IB2CB(ib_p)->cb_ittrans_cookie, cpu_id,
300f0d69850Srameshc 	    IB_GET_MAPREG_INO(ino));
3017c478bd9Sstevel@tonic-gate #else
3027c478bd9Sstevel@tonic-gate 	if (ib_map_reg_get_cpu(*imr_p) == cpu_id) /* same cpu, no reprog */
3037c478bd9Sstevel@tonic-gate 		return;
3047c478bd9Sstevel@tonic-gate #endif /* _STARFIRE */
3057c478bd9Sstevel@tonic-gate 
3067c478bd9Sstevel@tonic-gate 	/* disable interrupt, this could disrupt devices sharing our slot */
3077c478bd9Sstevel@tonic-gate 	IB_INO_INTR_OFF(imr_p);
3087c478bd9Sstevel@tonic-gate 	imr = *imr_p;	/* flush previous write */
3097c478bd9Sstevel@tonic-gate 
3107c478bd9Sstevel@tonic-gate 	/* busy wait if there is interrupt being processed */
3117c478bd9Sstevel@tonic-gate 	start_time = gethrtime();
3127c478bd9Sstevel@tonic-gate 	while (IB_INO_INTR_PENDING(state_reg, ino) && !panicstr) {
3137c478bd9Sstevel@tonic-gate 		if (gethrtime() - start_time > pci_intrpend_timeout) {
3147c478bd9Sstevel@tonic-gate 			pbm_t *pbm_p = ib_p->ib_pci_p->pci_pbm_p;
3157c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "%s:%s: ib_intr_dist(%p,%x) timeout",
316f0d69850Srameshc 			    pbm_p->pbm_nameinst_str,
317f0d69850Srameshc 			    pbm_p->pbm_nameaddr_str,
318f0d69850Srameshc 			    imr_p, IB_INO_TO_MONDO(ib_p, ino));
3197c478bd9Sstevel@tonic-gate 			break;
3207c478bd9Sstevel@tonic-gate 		}
3217c478bd9Sstevel@tonic-gate 	}
3227c478bd9Sstevel@tonic-gate 	*imr_p = ib_get_map_reg(IB_IMR2MONDO(imr), cpu_id);
3237c478bd9Sstevel@tonic-gate 	imr = *imr_p;	/* flush previous write */
3247c478bd9Sstevel@tonic-gate }
3257c478bd9Sstevel@tonic-gate 
3267c478bd9Sstevel@tonic-gate /*
3277c478bd9Sstevel@tonic-gate  * Redistribute interrupts of the specified weight. The first call has a weight
3287c478bd9Sstevel@tonic-gate  * of weight_max, which can be used to trigger initialization for
3297c478bd9Sstevel@tonic-gate  * redistribution. The inos with weight [weight_max, inf.) should be processed
3307c478bd9Sstevel@tonic-gate  * on the "weight == weight_max" call.  This first call is followed by calls
3317c478bd9Sstevel@tonic-gate  * of decreasing weights, inos of that weight should be processed.  The final
3327c478bd9Sstevel@tonic-gate  * call specifies a weight of zero, this can be used to trigger processing of
3337c478bd9Sstevel@tonic-gate  * stragglers.
3347c478bd9Sstevel@tonic-gate  */
3357c478bd9Sstevel@tonic-gate void
3367c478bd9Sstevel@tonic-gate ib_intr_dist_all(void *arg, int32_t weight_max, int32_t weight)
3377c478bd9Sstevel@tonic-gate {
3387c478bd9Sstevel@tonic-gate 	ib_t *ib_p = (ib_t *)arg;
3397c478bd9Sstevel@tonic-gate 	pci_t *pci_p = ib_p->ib_pci_p;
3407c478bd9Sstevel@tonic-gate 	ib_ino_info_t *ino_p;
341b0fc0e77Sgovinda 	ib_ino_pil_t *ipil_p;
3427c478bd9Sstevel@tonic-gate 	ih_t *ih_lst;
3437c478bd9Sstevel@tonic-gate 	int32_t dweight;
3447c478bd9Sstevel@tonic-gate 	int i;
3457c478bd9Sstevel@tonic-gate 
3467c478bd9Sstevel@tonic-gate 	if (weight == 0) {
3477c478bd9Sstevel@tonic-gate 		mutex_enter(&ib_p->ib_intr_lock);
3487c478bd9Sstevel@tonic-gate 		if (CHIP_TYPE(pci_p) != PCI_CHIP_XMITS) {
3497c478bd9Sstevel@tonic-gate 			for (i = 0; i < 2; i++)
3507c478bd9Sstevel@tonic-gate 				ib_intr_dist_nintr(ib_p, 0,
3517c478bd9Sstevel@tonic-gate 				    ib_p->ib_upa_imr[i]);
3527c478bd9Sstevel@tonic-gate 		}
3537c478bd9Sstevel@tonic-gate 		mutex_exit(&ib_p->ib_intr_lock);
3547c478bd9Sstevel@tonic-gate 	}
3557c478bd9Sstevel@tonic-gate 
3567c478bd9Sstevel@tonic-gate 	mutex_enter(&ib_p->ib_ino_lst_mutex);
3577c478bd9Sstevel@tonic-gate 
3587c478bd9Sstevel@tonic-gate 	/* Perform special processing for first call of a redistribution. */
3597c478bd9Sstevel@tonic-gate 	if (weight == weight_max) {
360b0fc0e77Sgovinda 		for (ino_p = ib_p->ib_ino_lst; ino_p;
361b0fc0e77Sgovinda 		    ino_p = ino_p->ino_next_p) {
3627c478bd9Sstevel@tonic-gate 
3637c478bd9Sstevel@tonic-gate 			/*
3647c478bd9Sstevel@tonic-gate 			 * Clear ino_established of each ino on first call.
3657c478bd9Sstevel@tonic-gate 			 * The ino_established field may be used by a pci
3667c478bd9Sstevel@tonic-gate 			 * nexus driver's pci_intr_dist_cpuid implementation
3677c478bd9Sstevel@tonic-gate 			 * when detection of established pci slot-cpu binding
3687c478bd9Sstevel@tonic-gate 			 * for multi function pci cards.
3697c478bd9Sstevel@tonic-gate 			 */
3707c478bd9Sstevel@tonic-gate 			ino_p->ino_established = 0;
3717c478bd9Sstevel@tonic-gate 
3727c478bd9Sstevel@tonic-gate 			/*
3737c478bd9Sstevel@tonic-gate 			 * recompute the ino_intr_weight based on the device
3747c478bd9Sstevel@tonic-gate 			 * weight of all devinfo nodes sharing the ino (this
3757c478bd9Sstevel@tonic-gate 			 * will allow us to pick up new weights established by
3767c478bd9Sstevel@tonic-gate 			 * i_ddi_set_intr_weight()).
3777c478bd9Sstevel@tonic-gate 			 */
3787c478bd9Sstevel@tonic-gate 			ino_p->ino_intr_weight = 0;
379b0fc0e77Sgovinda 
380b0fc0e77Sgovinda 			for (ipil_p = ino_p->ino_ipil_p; ipil_p;
381b0fc0e77Sgovinda 			    ipil_p = ipil_p->ipil_next_p) {
382b0fc0e77Sgovinda 				for (i = 0, ih_lst = ipil_p->ipil_ih_head;
383b0fc0e77Sgovinda 				    i < ipil_p->ipil_ih_size; i++,
384b0fc0e77Sgovinda 				    ih_lst = ih_lst->ih_next) {
385b0fc0e77Sgovinda 					dweight = i_ddi_get_intr_weight
386b0fc0e77Sgovinda 					    (ih_lst->ih_dip);
387b0fc0e77Sgovinda 					if (dweight > 0)
388b0fc0e77Sgovinda 						ino_p->ino_intr_weight +=
389b0fc0e77Sgovinda 						    dweight;
390b0fc0e77Sgovinda 				}
3917c478bd9Sstevel@tonic-gate 			}
3927c478bd9Sstevel@tonic-gate 		}
3937c478bd9Sstevel@tonic-gate 	}
3947c478bd9Sstevel@tonic-gate 
395b0fc0e77Sgovinda 	for (ino_p = ib_p->ib_ino_lst; ino_p; ino_p = ino_p->ino_next_p) {
3967c478bd9Sstevel@tonic-gate 		uint32_t orig_cpuid;
3977c478bd9Sstevel@tonic-gate 
3987c478bd9Sstevel@tonic-gate 		/*
3997c478bd9Sstevel@tonic-gate 		 * Get the weight of the ino and determine if we are going to
4007c478bd9Sstevel@tonic-gate 		 * process call.  We wait until an ib_intr_dist_all call of
4017c478bd9Sstevel@tonic-gate 		 * the proper weight occurs to support redistribution of all
4027c478bd9Sstevel@tonic-gate 		 * heavy weighted interrupts first (across all nexus driver
4037c478bd9Sstevel@tonic-gate 		 * instances).  This is done to ensure optimal
4047c478bd9Sstevel@tonic-gate 		 * INTR_WEIGHTED_DIST behavior.
4057c478bd9Sstevel@tonic-gate 		 */
4067c478bd9Sstevel@tonic-gate 		if ((weight == ino_p->ino_intr_weight) ||
4077c478bd9Sstevel@tonic-gate 		    ((weight >= weight_max) &&
4087c478bd9Sstevel@tonic-gate 		    (ino_p->ino_intr_weight >= weight_max))) {
4097c478bd9Sstevel@tonic-gate 			/* select cpuid to target and mark ino established */
4107c478bd9Sstevel@tonic-gate 			orig_cpuid = ino_p->ino_cpuid;
4117c478bd9Sstevel@tonic-gate 			if (cpu[orig_cpuid] == NULL)
4127c478bd9Sstevel@tonic-gate 				orig_cpuid = CPU->cpu_id;
4137c478bd9Sstevel@tonic-gate 			ino_p->ino_cpuid = pci_intr_dist_cpuid(ib_p, ino_p);
4147c478bd9Sstevel@tonic-gate 			ino_p->ino_established = 1;
4157c478bd9Sstevel@tonic-gate 
4167c478bd9Sstevel@tonic-gate 			/* Add device weight of ino devinfos to targeted cpu. */
417b0fc0e77Sgovinda 			for (ipil_p = ino_p->ino_ipil_p; ipil_p;
418b0fc0e77Sgovinda 			    ipil_p = ipil_p->ipil_next_p) {
419b0fc0e77Sgovinda 				for (i = 0, ih_lst = ipil_p->ipil_ih_head;
420b0fc0e77Sgovinda 				    i < ipil_p->ipil_ih_size; i++,
421b0fc0e77Sgovinda 				    ih_lst = ih_lst->ih_next) {
422b0fc0e77Sgovinda 
423b0fc0e77Sgovinda 					dweight = i_ddi_get_intr_weight(
424b0fc0e77Sgovinda 					    ih_lst->ih_dip);
425b0fc0e77Sgovinda 					intr_dist_cpuid_add_device_weight(
426b0fc0e77Sgovinda 					    ino_p->ino_cpuid, ih_lst->ih_dip,
427b0fc0e77Sgovinda 					    dweight);
428b0fc0e77Sgovinda 
429b0fc0e77Sgovinda 					/*
430b0fc0e77Sgovinda 					 * Different cpus may have different
431b0fc0e77Sgovinda 					 * clock speeds. to account for this,
432b0fc0e77Sgovinda 					 * whenever an interrupt is moved to a
433b0fc0e77Sgovinda 					 * new CPU, we convert the accumulated
434b0fc0e77Sgovinda 					 * ticks into nsec, based upon the clock
435b0fc0e77Sgovinda 					 * rate of the prior CPU.
436b0fc0e77Sgovinda 					 *
437b0fc0e77Sgovinda 					 * It is possible that the prior CPU no
438b0fc0e77Sgovinda 					 * longer exists. In this case, fall
439b0fc0e77Sgovinda 					 * back to using this CPU's clock rate.
440b0fc0e77Sgovinda 					 *
441b0fc0e77Sgovinda 					 * Note that the value in ih_ticks has
442b0fc0e77Sgovinda 					 * already been corrected for any power
443b0fc0e77Sgovinda 					 * savings mode which might have been
444b0fc0e77Sgovinda 					 * in effect.
445b0fc0e77Sgovinda 					 */
446b0fc0e77Sgovinda 					ib_cpu_ticks_to_ih_nsec(ib_p, ih_lst,
447b0fc0e77Sgovinda 					    orig_cpuid);
448b0fc0e77Sgovinda 				}
4497c478bd9Sstevel@tonic-gate 			}
4507c478bd9Sstevel@tonic-gate 
4517c478bd9Sstevel@tonic-gate 			/* program the hardware */
4527c478bd9Sstevel@tonic-gate 			ib_intr_dist(ib_p, ino_p);
4537c478bd9Sstevel@tonic-gate 		}
4547c478bd9Sstevel@tonic-gate 	}
4557c478bd9Sstevel@tonic-gate 	mutex_exit(&ib_p->ib_ino_lst_mutex);
4567c478bd9Sstevel@tonic-gate }
4577c478bd9Sstevel@tonic-gate 
4587c478bd9Sstevel@tonic-gate /*
4597c478bd9Sstevel@tonic-gate  * Reset interrupts to IDLE.  This function is called during
4607c478bd9Sstevel@tonic-gate  * panic handling after redistributing interrupts; it's needed to
4617c478bd9Sstevel@tonic-gate  * support dumping to network devices after 'sync' from OBP.
4627c478bd9Sstevel@tonic-gate  *
4637c478bd9Sstevel@tonic-gate  * N.B.  This routine runs in a context where all other threads
4647c478bd9Sstevel@tonic-gate  * are permanently suspended.
4657c478bd9Sstevel@tonic-gate  */
4667c478bd9Sstevel@tonic-gate static uint_t
4677c478bd9Sstevel@tonic-gate ib_intr_reset(void *arg)
4687c478bd9Sstevel@tonic-gate {
4697c478bd9Sstevel@tonic-gate 	ib_t *ib_p = (ib_t *)arg;
4707c478bd9Sstevel@tonic-gate 	ib_ino_t ino;
4717c478bd9Sstevel@tonic-gate 	uint64_t *clr_reg;
4727c478bd9Sstevel@tonic-gate 
4737c478bd9Sstevel@tonic-gate 	/*
4747c478bd9Sstevel@tonic-gate 	 * Note that we only actually care about interrupts that are
4757c478bd9Sstevel@tonic-gate 	 * potentially from network devices.
4767c478bd9Sstevel@tonic-gate 	 */
4777c478bd9Sstevel@tonic-gate 	for (ino = 0; ino <= ib_p->ib_max_ino; ino++) {
4787c478bd9Sstevel@tonic-gate 		clr_reg = ib_clear_intr_reg_addr(ib_p, ino);
4797c478bd9Sstevel@tonic-gate 		IB_INO_INTR_CLEAR(clr_reg);
4807c478bd9Sstevel@tonic-gate 	}
4817c478bd9Sstevel@tonic-gate 
4827c478bd9Sstevel@tonic-gate 	return (BF_NONE);
4837c478bd9Sstevel@tonic-gate }
4847c478bd9Sstevel@tonic-gate 
4857c478bd9Sstevel@tonic-gate void
4867c478bd9Sstevel@tonic-gate ib_suspend(ib_t *ib_p)
4877c478bd9Sstevel@tonic-gate {
4887c478bd9Sstevel@tonic-gate 	ib_ino_info_t *ip;
4897c478bd9Sstevel@tonic-gate 	pci_t *pci_p = ib_p->ib_pci_p;
4907c478bd9Sstevel@tonic-gate 
4917c478bd9Sstevel@tonic-gate 	/* save ino_lst interrupts' mapping registers content */
4927c478bd9Sstevel@tonic-gate 	mutex_enter(&ib_p->ib_ino_lst_mutex);
493b0fc0e77Sgovinda 	for (ip = ib_p->ib_ino_lst; ip; ip = ip->ino_next_p)
4947c478bd9Sstevel@tonic-gate 		ip->ino_map_reg_save = *ip->ino_map_reg;
4957c478bd9Sstevel@tonic-gate 	mutex_exit(&ib_p->ib_ino_lst_mutex);
4967c478bd9Sstevel@tonic-gate 
4977c478bd9Sstevel@tonic-gate 	if (CHIP_TYPE(pci_p) != PCI_CHIP_XMITS) {
4987c478bd9Sstevel@tonic-gate 		ib_p->ib_upa_imr_state[0] = *ib_p->ib_upa_imr[0];
4997c478bd9Sstevel@tonic-gate 		ib_p->ib_upa_imr_state[1] = *ib_p->ib_upa_imr[1];
5007c478bd9Sstevel@tonic-gate 	}
5017c478bd9Sstevel@tonic-gate }
5027c478bd9Sstevel@tonic-gate 
5037c478bd9Sstevel@tonic-gate void
5047c478bd9Sstevel@tonic-gate ib_resume(ib_t *ib_p)
5057c478bd9Sstevel@tonic-gate {
5067c478bd9Sstevel@tonic-gate 	ib_ino_info_t *ip;
5077c478bd9Sstevel@tonic-gate 	pci_t *pci_p = ib_p->ib_pci_p;
5087c478bd9Sstevel@tonic-gate 
5097c478bd9Sstevel@tonic-gate 	/* restore ino_lst interrupts' mapping registers content */
5107c478bd9Sstevel@tonic-gate 	mutex_enter(&ib_p->ib_ino_lst_mutex);
511b0fc0e77Sgovinda 	for (ip = ib_p->ib_ino_lst; ip; ip = ip->ino_next_p) {
5127c478bd9Sstevel@tonic-gate 		IB_INO_INTR_CLEAR(ip->ino_clr_reg);	 /* set intr to idle */
5137c478bd9Sstevel@tonic-gate 		*ip->ino_map_reg = ip->ino_map_reg_save; /* restore IMR */
5147c478bd9Sstevel@tonic-gate 	}
5157c478bd9Sstevel@tonic-gate 	mutex_exit(&ib_p->ib_ino_lst_mutex);
5167c478bd9Sstevel@tonic-gate 
5177c478bd9Sstevel@tonic-gate 	if (CHIP_TYPE(pci_p) != PCI_CHIP_XMITS) {
5187c478bd9Sstevel@tonic-gate 		*ib_p->ib_upa_imr[0] = ib_p->ib_upa_imr_state[0];
5197c478bd9Sstevel@tonic-gate 		*ib_p->ib_upa_imr[1] = ib_p->ib_upa_imr_state[1];
5207c478bd9Sstevel@tonic-gate 	}
5217c478bd9Sstevel@tonic-gate }
5227c478bd9Sstevel@tonic-gate 
5237c478bd9Sstevel@tonic-gate /*
5247c478bd9Sstevel@tonic-gate  * locate ino_info structure on ib_p->ib_ino_lst according to ino#
5257c478bd9Sstevel@tonic-gate  * returns NULL if not found.
5267c478bd9Sstevel@tonic-gate  */
5277c478bd9Sstevel@tonic-gate ib_ino_info_t *
5287c478bd9Sstevel@tonic-gate ib_locate_ino(ib_t *ib_p, ib_ino_t ino_num)
5297c478bd9Sstevel@tonic-gate {
5307c478bd9Sstevel@tonic-gate 	ib_ino_info_t *ino_p = ib_p->ib_ino_lst;
5317c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&ib_p->ib_ino_lst_mutex));
5327c478bd9Sstevel@tonic-gate 
533f0d69850Srameshc 	for (; ino_p && ino_p->ino_ino != ino_num; ino_p = ino_p->ino_next_p)
534f0d69850Srameshc 		;
5357c478bd9Sstevel@tonic-gate 	return (ino_p);
5367c478bd9Sstevel@tonic-gate }
5377c478bd9Sstevel@tonic-gate 
5387c478bd9Sstevel@tonic-gate #define	IB_INO_TO_SLOT(ino) (IB_IS_OBIO_INO(ino) ? 0xff : ((ino) & 0x1f) >> 2)
5397c478bd9Sstevel@tonic-gate 
540b0fc0e77Sgovinda ib_ino_pil_t *
541b0fc0e77Sgovinda ib_new_ino_pil(ib_t *ib_p, ib_ino_t ino_num, uint_t pil, ih_t *ih_p)
5427c478bd9Sstevel@tonic-gate {
543b0fc0e77Sgovinda 	ib_ino_pil_t	*ipil_p = kmem_zalloc(sizeof (ib_ino_pil_t), KM_SLEEP);
544b0fc0e77Sgovinda 	ib_ino_info_t	*ino_p;
5457c478bd9Sstevel@tonic-gate 
546b0fc0e77Sgovinda 	if ((ino_p = ib_locate_ino(ib_p, ino_num)) == NULL) {
547b0fc0e77Sgovinda 		ino_p = kmem_zalloc(sizeof (ib_ino_info_t), KM_SLEEP);
548b0fc0e77Sgovinda 
549b0fc0e77Sgovinda 		ino_p->ino_next_p = ib_p->ib_ino_lst;
550b0fc0e77Sgovinda 		ib_p->ib_ino_lst = ino_p;
551b0fc0e77Sgovinda 
552b0fc0e77Sgovinda 		ino_p->ino_ino = ino_num;
553b0fc0e77Sgovinda 		ino_p->ino_slot_no = IB_INO_TO_SLOT(ino_num);
554b0fc0e77Sgovinda 		ino_p->ino_ib_p = ib_p;
555b0fc0e77Sgovinda 		ino_p->ino_clr_reg = ib_clear_intr_reg_addr(ib_p, ino_num);
556b0fc0e77Sgovinda 		ino_p->ino_map_reg = ib_intr_map_reg_addr(ib_p, ino_num);
557b0fc0e77Sgovinda 		ino_p->ino_unclaimed_intrs = 0;
558b0fc0e77Sgovinda 		ino_p->ino_lopil = pil;
559b0fc0e77Sgovinda 	}
5607c478bd9Sstevel@tonic-gate 
5617c478bd9Sstevel@tonic-gate 	ih_p->ih_next = ih_p;
562b0fc0e77Sgovinda 	ipil_p->ipil_pil = pil;
563b0fc0e77Sgovinda 	ipil_p->ipil_ih_head = ih_p;
564b0fc0e77Sgovinda 	ipil_p->ipil_ih_tail = ih_p;
565b0fc0e77Sgovinda 	ipil_p->ipil_ih_start = ih_p;
566b0fc0e77Sgovinda 	ipil_p->ipil_ih_size = 1;
567b0fc0e77Sgovinda 	ipil_p->ipil_ino_p = ino_p;
5687c478bd9Sstevel@tonic-gate 
569b0fc0e77Sgovinda 	ipil_p->ipil_next_p = ino_p->ino_ipil_p;
570b0fc0e77Sgovinda 	ino_p->ino_ipil_p = ipil_p;
571b0fc0e77Sgovinda 	ino_p->ino_ipil_size++;
572b0fc0e77Sgovinda 
573b0fc0e77Sgovinda 	if (ino_p->ino_lopil > pil)
574b0fc0e77Sgovinda 		ino_p->ino_lopil = pil;
575b0fc0e77Sgovinda 
576b0fc0e77Sgovinda 	return (ipil_p);
5777c478bd9Sstevel@tonic-gate }
5787c478bd9Sstevel@tonic-gate 
5797c478bd9Sstevel@tonic-gate void
580b0fc0e77Sgovinda ib_delete_ino_pil(ib_t *ib_p, ib_ino_pil_t *ipil_p)
5817c478bd9Sstevel@tonic-gate {
582b0fc0e77Sgovinda 	ib_ino_info_t	*ino_p = ipil_p->ipil_ino_p;
583b0fc0e77Sgovinda 	ib_ino_pil_t	*prev, *next;
584b0fc0e77Sgovinda 	ushort_t	pil = ipil_p->ipil_pil;
585b0fc0e77Sgovinda 
5867c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&ib_p->ib_ino_lst_mutex));
587b0fc0e77Sgovinda 
588b0fc0e77Sgovinda 	if (ino_p->ino_ipil_p == ipil_p)
589b0fc0e77Sgovinda 		ino_p->ino_ipil_p = ipil_p->ipil_next_p;
5907c478bd9Sstevel@tonic-gate 	else {
591b0fc0e77Sgovinda 		for (prev = next = ino_p->ino_ipil_p; next != ipil_p;
592f0d69850Srameshc 		    prev = next, next = next->ipil_next_p)
593f0d69850Srameshc 			;
594b0fc0e77Sgovinda 
595b0fc0e77Sgovinda 		if (prev)
596b0fc0e77Sgovinda 			prev->ipil_next_p = ipil_p->ipil_next_p;
597b0fc0e77Sgovinda 	}
598b0fc0e77Sgovinda 
599b0fc0e77Sgovinda 	kmem_free(ipil_p, sizeof (ib_ino_pil_t));
600b0fc0e77Sgovinda 
601*e4517573Srameshc 	if ((--ino_p->ino_ipil_size) && (ino_p->ino_lopil == pil)) {
602*e4517573Srameshc 		for (next = ino_p->ino_ipil_p, pil = next->ipil_pil;
603*e4517573Srameshc 		    next; next = next->ipil_next_p) {
604*e4517573Srameshc 
605b0fc0e77Sgovinda 			if (pil > next->ipil_pil)
606b0fc0e77Sgovinda 				pil = next->ipil_pil;
607b0fc0e77Sgovinda 		}
608*e4517573Srameshc 		/*
609*e4517573Srameshc 		 * Value stored in pil should be the lowest pil.
610*e4517573Srameshc 		 */
611b0fc0e77Sgovinda 		ino_p->ino_lopil = pil;
612b0fc0e77Sgovinda 	}
613b0fc0e77Sgovinda 
614*e4517573Srameshc 	if (ino_p->ino_ipil_size)
615b0fc0e77Sgovinda 		return;
616b0fc0e77Sgovinda 
617b0fc0e77Sgovinda 	if (ib_p->ib_ino_lst == ino_p)
618b0fc0e77Sgovinda 		ib_p->ib_ino_lst = ino_p->ino_next_p;
619b0fc0e77Sgovinda 	else {
620b0fc0e77Sgovinda 		ib_ino_info_t	*list = ib_p->ib_ino_lst;
621b0fc0e77Sgovinda 
622f0d69850Srameshc 		for (; list->ino_next_p != ino_p; list = list->ino_next_p)
623f0d69850Srameshc 			;
624b0fc0e77Sgovinda 		list->ino_next_p = ino_p->ino_next_p;
6257c478bd9Sstevel@tonic-gate 	}
6267c478bd9Sstevel@tonic-gate }
6277c478bd9Sstevel@tonic-gate 
6287c478bd9Sstevel@tonic-gate /* free all ino when we are detaching */
6297c478bd9Sstevel@tonic-gate void
6307c478bd9Sstevel@tonic-gate ib_free_ino_all(ib_t *ib_p)
6317c478bd9Sstevel@tonic-gate {
632b0fc0e77Sgovinda 	ib_ino_info_t *ino_p = ib_p->ib_ino_lst;
6337c478bd9Sstevel@tonic-gate 	ib_ino_info_t *next = NULL;
634b0fc0e77Sgovinda 
635b0fc0e77Sgovinda 	while (ino_p) {
636b0fc0e77Sgovinda 		next = ino_p->ino_next_p;
637b0fc0e77Sgovinda 		kmem_free(ino_p, sizeof (ib_ino_info_t));
638b0fc0e77Sgovinda 		ino_p = next;
6397c478bd9Sstevel@tonic-gate 	}
6407c478bd9Sstevel@tonic-gate }
6417c478bd9Sstevel@tonic-gate 
642b0fc0e77Sgovinda /*
643b0fc0e77Sgovinda  * Locate ib_ino_pil_t structure on ino_p->ino_ipil_p according to ino#
644b0fc0e77Sgovinda  * returns NULL if not found.
645b0fc0e77Sgovinda  */
646b0fc0e77Sgovinda ib_ino_pil_t *
647b0fc0e77Sgovinda ib_ino_locate_ipil(ib_ino_info_t *ino_p, uint_t pil)
648b0fc0e77Sgovinda {
649b0fc0e77Sgovinda 	ib_ino_pil_t	*ipil_p = ino_p->ino_ipil_p;
650b0fc0e77Sgovinda 
651f0d69850Srameshc 	for (; ipil_p && ipil_p->ipil_pil != pil; ipil_p = ipil_p->ipil_next_p)
652f0d69850Srameshc 		;
653b0fc0e77Sgovinda 
654b0fc0e77Sgovinda 	return (ipil_p);
655b0fc0e77Sgovinda }
656b0fc0e77Sgovinda 
6577c478bd9Sstevel@tonic-gate void
658b0fc0e77Sgovinda ib_ino_add_intr(pci_t *pci_p, ib_ino_pil_t *ipil_p, ih_t *ih_p)
6597c478bd9Sstevel@tonic-gate {
660b0fc0e77Sgovinda 	ib_ino_info_t *ino_p = ipil_p->ipil_ino_p;
6617c478bd9Sstevel@tonic-gate 	ib_ino_t ino = ino_p->ino_ino;
6627c478bd9Sstevel@tonic-gate 	ib_t *ib_p = ino_p->ino_ib_p;
6637c478bd9Sstevel@tonic-gate 	volatile uint64_t *state_reg = IB_INO_INTR_STATE_REG(ib_p, ino);
6647c478bd9Sstevel@tonic-gate 	hrtime_t start_time;
6657c478bd9Sstevel@tonic-gate 
6667c478bd9Sstevel@tonic-gate 	ASSERT(ib_p == pci_p->pci_ib_p);
6677c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&ib_p->ib_ino_lst_mutex));
6687c478bd9Sstevel@tonic-gate 
6697c478bd9Sstevel@tonic-gate 	/* disable interrupt, this could disrupt devices sharing our slot */
6707c478bd9Sstevel@tonic-gate 	IB_INO_INTR_OFF(ino_p->ino_map_reg);
6717c478bd9Sstevel@tonic-gate 	*ino_p->ino_map_reg;
6727c478bd9Sstevel@tonic-gate 
6737c478bd9Sstevel@tonic-gate 	/* do NOT modify the link list until after the busy wait */
6747c478bd9Sstevel@tonic-gate 
6757c478bd9Sstevel@tonic-gate 	/*
6767c478bd9Sstevel@tonic-gate 	 * busy wait if there is interrupt being processed.
6777c478bd9Sstevel@tonic-gate 	 * either the pending state will be cleared by the interrupt wrapper
6787c478bd9Sstevel@tonic-gate 	 * or the interrupt will be marked as blocked indicating that it was
6797c478bd9Sstevel@tonic-gate 	 * jabbering.
6807c478bd9Sstevel@tonic-gate 	 */
6817c478bd9Sstevel@tonic-gate 	start_time = gethrtime();
682b0fc0e77Sgovinda 	while ((ino_p->ino_unclaimed_intrs <= pci_unclaimed_intr_max) &&
683f0d69850Srameshc 	    IB_INO_INTR_PENDING(state_reg, ino) && !panicstr) {
6847c478bd9Sstevel@tonic-gate 		if (gethrtime() - start_time > pci_intrpend_timeout) {
6857c478bd9Sstevel@tonic-gate 			pbm_t *pbm_p = pci_p->pci_pbm_p;
6867c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "%s:%s: ib_ino_add_intr %x timeout",
687f0d69850Srameshc 			    pbm_p->pbm_nameinst_str,
688f0d69850Srameshc 			    pbm_p->pbm_nameaddr_str, ino);
6897c478bd9Sstevel@tonic-gate 			break;
6907c478bd9Sstevel@tonic-gate 		}
6917c478bd9Sstevel@tonic-gate 	}
6927c478bd9Sstevel@tonic-gate 
693b0fc0e77Sgovinda 	/* link up ih_t */
694b0fc0e77Sgovinda 	ih_p->ih_next = ipil_p->ipil_ih_head;
695b0fc0e77Sgovinda 	ipil_p->ipil_ih_tail->ih_next = ih_p;
696b0fc0e77Sgovinda 	ipil_p->ipil_ih_tail = ih_p;
6977c478bd9Sstevel@tonic-gate 
698b0fc0e77Sgovinda 	ipil_p->ipil_ih_start = ipil_p->ipil_ih_head;
699b0fc0e77Sgovinda 	ipil_p->ipil_ih_size++;
7007c478bd9Sstevel@tonic-gate 
7017c478bd9Sstevel@tonic-gate 	/*
7027c478bd9Sstevel@tonic-gate 	 * if the interrupt was previously blocked (left in pending state)
7037c478bd9Sstevel@tonic-gate 	 * because of jabber we need to clear the pending state in case the
7047c478bd9Sstevel@tonic-gate 	 * jabber has gone away.
7057c478bd9Sstevel@tonic-gate 	 */
706b0fc0e77Sgovinda 	if (ino_p->ino_unclaimed_intrs > pci_unclaimed_intr_max) {
7077c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN,
7087c478bd9Sstevel@tonic-gate 		    "%s%d: ib_ino_add_intr: ino 0x%x has been unblocked",
7097c478bd9Sstevel@tonic-gate 		    ddi_driver_name(pci_p->pci_dip),
7107c478bd9Sstevel@tonic-gate 		    ddi_get_instance(pci_p->pci_dip),
7117c478bd9Sstevel@tonic-gate 		    ino_p->ino_ino);
712b0fc0e77Sgovinda 		ino_p->ino_unclaimed_intrs = 0;
7137c478bd9Sstevel@tonic-gate 		IB_INO_INTR_CLEAR(ino_p->ino_clr_reg);
7147c478bd9Sstevel@tonic-gate 	}
7157c478bd9Sstevel@tonic-gate 
7167c478bd9Sstevel@tonic-gate 	/* re-enable interrupt */
7177c478bd9Sstevel@tonic-gate 	IB_INO_INTR_ON(ino_p->ino_map_reg);
7187c478bd9Sstevel@tonic-gate 	*ino_p->ino_map_reg;
7197c478bd9Sstevel@tonic-gate }
7207c478bd9Sstevel@tonic-gate 
7217c478bd9Sstevel@tonic-gate /*
7227c478bd9Sstevel@tonic-gate  * removes pci_ispec_t from the ino's link list.
7237c478bd9Sstevel@tonic-gate  * uses hardware mutex to lock out interrupt threads.
7247c478bd9Sstevel@tonic-gate  * Side effects: interrupt belongs to that ino is turned off on return.
7257c478bd9Sstevel@tonic-gate  * if we are sharing PCI slot with other inos, the caller needs
7267c478bd9Sstevel@tonic-gate  * to turn it back on.
7277c478bd9Sstevel@tonic-gate  */
7287c478bd9Sstevel@tonic-gate void
729b0fc0e77Sgovinda ib_ino_rem_intr(pci_t *pci_p, ib_ino_pil_t *ipil_p, ih_t *ih_p)
7307c478bd9Sstevel@tonic-gate {
731b0fc0e77Sgovinda 	ib_ino_info_t *ino_p = ipil_p->ipil_ino_p;
7327c478bd9Sstevel@tonic-gate 	int i;
7337c478bd9Sstevel@tonic-gate 	ib_ino_t ino = ino_p->ino_ino;
734b0fc0e77Sgovinda 	ih_t *ih_lst = ipil_p->ipil_ih_head;
7357c478bd9Sstevel@tonic-gate 	volatile uint64_t *state_reg =
736f0d69850Srameshc 	    IB_INO_INTR_STATE_REG(ino_p->ino_ib_p, ino);
7377c478bd9Sstevel@tonic-gate 	hrtime_t start_time;
7387c478bd9Sstevel@tonic-gate 
7397c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&ino_p->ino_ib_p->ib_ino_lst_mutex));
7407c478bd9Sstevel@tonic-gate 	/* disable interrupt, this could disrupt devices sharing our slot */
7417c478bd9Sstevel@tonic-gate 	IB_INO_INTR_OFF(ino_p->ino_map_reg);
7427c478bd9Sstevel@tonic-gate 	*ino_p->ino_map_reg;
7437c478bd9Sstevel@tonic-gate 
7447c478bd9Sstevel@tonic-gate 	/* do NOT modify the link list until after the busy wait */
7457c478bd9Sstevel@tonic-gate 
7467c478bd9Sstevel@tonic-gate 	/*
7477c478bd9Sstevel@tonic-gate 	 * busy wait if there is interrupt being processed.
7487c478bd9Sstevel@tonic-gate 	 * either the pending state will be cleared by the interrupt wrapper
7497c478bd9Sstevel@tonic-gate 	 * or the interrupt will be marked as blocked indicating that it was
7507c478bd9Sstevel@tonic-gate 	 * jabbering.
7517c478bd9Sstevel@tonic-gate 	 */
7527c478bd9Sstevel@tonic-gate 	start_time = gethrtime();
753b0fc0e77Sgovinda 	while ((ino_p->ino_unclaimed_intrs <= pci_unclaimed_intr_max) &&
754f0d69850Srameshc 	    IB_INO_INTR_PENDING(state_reg, ino) && !panicstr) {
7557c478bd9Sstevel@tonic-gate 		if (gethrtime() - start_time > pci_intrpend_timeout) {
7567c478bd9Sstevel@tonic-gate 			pbm_t *pbm_p = pci_p->pci_pbm_p;
7577c478bd9Sstevel@tonic-gate 			cmn_err(CE_WARN, "%s:%s: ib_ino_rem_intr %x timeout",
758f0d69850Srameshc 			    pbm_p->pbm_nameinst_str,
759f0d69850Srameshc 			    pbm_p->pbm_nameaddr_str, ino);
7607c478bd9Sstevel@tonic-gate 			break;
7617c478bd9Sstevel@tonic-gate 		}
7627c478bd9Sstevel@tonic-gate 	}
7637c478bd9Sstevel@tonic-gate 
764b0fc0e77Sgovinda 	if (ipil_p->ipil_ih_size == 1) {
7657c478bd9Sstevel@tonic-gate 		if (ih_lst != ih_p)
7667c478bd9Sstevel@tonic-gate 			goto not_found;
7677c478bd9Sstevel@tonic-gate 		/* no need to set head/tail as ino_p will be freed */
7687c478bd9Sstevel@tonic-gate 		goto reset;
7697c478bd9Sstevel@tonic-gate 	}
7707c478bd9Sstevel@tonic-gate 
7717c478bd9Sstevel@tonic-gate 	/*
7727c478bd9Sstevel@tonic-gate 	 * if the interrupt was previously blocked (left in pending state)
7737c478bd9Sstevel@tonic-gate 	 * because of jabber we need to clear the pending state in case the
7747c478bd9Sstevel@tonic-gate 	 * jabber has gone away.
7757c478bd9Sstevel@tonic-gate 	 */
776b0fc0e77Sgovinda 	if (ino_p->ino_unclaimed_intrs > pci_unclaimed_intr_max) {
7777c478bd9Sstevel@tonic-gate 		cmn_err(CE_WARN,
7787c478bd9Sstevel@tonic-gate 		    "%s%d: ib_ino_rem_intr: ino 0x%x has been unblocked",
7797c478bd9Sstevel@tonic-gate 		    ddi_driver_name(pci_p->pci_dip),
7807c478bd9Sstevel@tonic-gate 		    ddi_get_instance(pci_p->pci_dip),
7817c478bd9Sstevel@tonic-gate 		    ino_p->ino_ino);
782b0fc0e77Sgovinda 		ino_p->ino_unclaimed_intrs = 0;
7837c478bd9Sstevel@tonic-gate 		IB_INO_INTR_CLEAR(ino_p->ino_clr_reg);
7847c478bd9Sstevel@tonic-gate 	}
7857c478bd9Sstevel@tonic-gate 
7867c478bd9Sstevel@tonic-gate 	/* search the link list for ih_p */
7877c478bd9Sstevel@tonic-gate 	for (i = 0;
788f0d69850Srameshc 	    (i < ipil_p->ipil_ih_size) && (ih_lst->ih_next != ih_p);
789f0d69850Srameshc 	    i++, ih_lst = ih_lst->ih_next)
790f0d69850Srameshc 		;
7917c478bd9Sstevel@tonic-gate 	if (ih_lst->ih_next != ih_p)
7927c478bd9Sstevel@tonic-gate 		goto not_found;
7937c478bd9Sstevel@tonic-gate 
7947c478bd9Sstevel@tonic-gate 	/* remove ih_p from the link list and maintain the head/tail */
7957c478bd9Sstevel@tonic-gate 	ih_lst->ih_next = ih_p->ih_next;
796b0fc0e77Sgovinda 	if (ipil_p->ipil_ih_head == ih_p)
797b0fc0e77Sgovinda 		ipil_p->ipil_ih_head = ih_p->ih_next;
798b0fc0e77Sgovinda 	if (ipil_p->ipil_ih_tail == ih_p)
799b0fc0e77Sgovinda 		ipil_p->ipil_ih_tail = ih_lst;
800b0fc0e77Sgovinda 	ipil_p->ipil_ih_start = ipil_p->ipil_ih_head;
8017c478bd9Sstevel@tonic-gate reset:
8027c478bd9Sstevel@tonic-gate 	if (ih_p->ih_config_handle)
8037c478bd9Sstevel@tonic-gate 		pci_config_teardown(&ih_p->ih_config_handle);
8047c478bd9Sstevel@tonic-gate 	if (ih_p->ih_ksp != NULL)
8057c478bd9Sstevel@tonic-gate 		kstat_delete(ih_p->ih_ksp);
8067c478bd9Sstevel@tonic-gate 	kmem_free(ih_p, sizeof (ih_t));
807b0fc0e77Sgovinda 	ipil_p->ipil_ih_size--;
8087c478bd9Sstevel@tonic-gate 
8097c478bd9Sstevel@tonic-gate 	return;
8107c478bd9Sstevel@tonic-gate not_found:
8117c478bd9Sstevel@tonic-gate 	DEBUG2(DBG_R_INTX, ino_p->ino_ib_p->ib_pci_p->pci_dip,
812f0d69850Srameshc 	    "ino_p=%x does not have ih_p=%x\n", ino_p, ih_p);
8137c478bd9Sstevel@tonic-gate }
8147c478bd9Sstevel@tonic-gate 
8157c478bd9Sstevel@tonic-gate ih_t *
816b0fc0e77Sgovinda ib_intr_locate_ih(ib_ino_pil_t *ipil_p, dev_info_t *rdip, uint32_t inum)
8177c478bd9Sstevel@tonic-gate {
818b0fc0e77Sgovinda 	ih_t *ih_p = ipil_p->ipil_ih_head;
8197c478bd9Sstevel@tonic-gate 	int i;
820b0fc0e77Sgovinda 
821b0fc0e77Sgovinda 	for (i = 0; i < ipil_p->ipil_ih_size; i++, ih_p = ih_p->ih_next) {
822b0fc0e77Sgovinda 		if (ih_p->ih_dip == rdip && ih_p->ih_inum == inum)
823b0fc0e77Sgovinda 			return (ih_p);
8247c478bd9Sstevel@tonic-gate 	}
825b0fc0e77Sgovinda 
8267c478bd9Sstevel@tonic-gate 	return ((ih_t *)NULL);
8277c478bd9Sstevel@tonic-gate }
8287c478bd9Sstevel@tonic-gate 
8297c478bd9Sstevel@tonic-gate ih_t *
8307c478bd9Sstevel@tonic-gate ib_alloc_ih(dev_info_t *rdip, uint32_t inum,
8317851eb82Sschwartz 	uint_t (*int_handler)(caddr_t int_handler_arg1,
8327851eb82Sschwartz 	caddr_t int_handler_arg2),
8337851eb82Sschwartz 	caddr_t int_handler_arg1,
8347851eb82Sschwartz 	caddr_t int_handler_arg2)
8357c478bd9Sstevel@tonic-gate {
8367c478bd9Sstevel@tonic-gate 	ih_t *ih_p;
8377c478bd9Sstevel@tonic-gate 
8387c478bd9Sstevel@tonic-gate 	ih_p = kmem_alloc(sizeof (ih_t), KM_SLEEP);
8397c478bd9Sstevel@tonic-gate 	ih_p->ih_dip = rdip;
8407c478bd9Sstevel@tonic-gate 	ih_p->ih_inum = inum;
8417c478bd9Sstevel@tonic-gate 	ih_p->ih_intr_state = PCI_INTR_STATE_DISABLE;
8427c478bd9Sstevel@tonic-gate 	ih_p->ih_handler = int_handler;
8437c478bd9Sstevel@tonic-gate 	ih_p->ih_handler_arg1 = int_handler_arg1;
8447c478bd9Sstevel@tonic-gate 	ih_p->ih_handler_arg2 = int_handler_arg2;
8457c478bd9Sstevel@tonic-gate 	ih_p->ih_config_handle = NULL;
8467c478bd9Sstevel@tonic-gate 	ih_p->ih_nsec = 0;
8477c478bd9Sstevel@tonic-gate 	ih_p->ih_ticks = 0;
8486d44af1bSesolom 	ih_p->ih_ksp = NULL;
8497c478bd9Sstevel@tonic-gate 
8507c478bd9Sstevel@tonic-gate 	return (ih_p);
8517c478bd9Sstevel@tonic-gate }
8527c478bd9Sstevel@tonic-gate 
8537c478bd9Sstevel@tonic-gate int
8547c478bd9Sstevel@tonic-gate ib_update_intr_state(pci_t *pci_p, dev_info_t *rdip,
8557851eb82Sschwartz 	ddi_intr_handle_impl_t *hdlp, uint_t new_intr_state)
8567c478bd9Sstevel@tonic-gate {
8577c478bd9Sstevel@tonic-gate 	ib_t		*ib_p = pci_p->pci_ib_p;
8587c478bd9Sstevel@tonic-gate 	ib_ino_info_t	*ino_p;
859b0fc0e77Sgovinda 	ib_ino_pil_t	*ipil_p;
8607c478bd9Sstevel@tonic-gate 	ib_mondo_t	mondo;
8617c478bd9Sstevel@tonic-gate 	ih_t		*ih_p;
8627c478bd9Sstevel@tonic-gate 	int		ret = DDI_FAILURE;
8637c478bd9Sstevel@tonic-gate 
864f910463cSgovinda 	/*
865f910463cSgovinda 	 * For PULSE interrupts, pci driver don't allocate
866f910463cSgovinda 	 * ib_ino_info_t and ih_t data structures and also,
867f910463cSgovinda 	 * not maintains any interrupt state information.
868f910463cSgovinda 	 * So, just return success from here.
869f910463cSgovinda 	 */
870f910463cSgovinda 	if (hdlp->ih_vector & PCI_PULSE_INO) {
871f910463cSgovinda 		DEBUG0(DBG_IB, ib_p->ib_pci_p->pci_dip,
872f910463cSgovinda 		    "ib_update_intr_state: PULSE interrupt, return success\n");
873f910463cSgovinda 
874f910463cSgovinda 		return (DDI_SUCCESS);
875f910463cSgovinda 	}
876f910463cSgovinda 
8777c478bd9Sstevel@tonic-gate 	mutex_enter(&ib_p->ib_ino_lst_mutex);
8787c478bd9Sstevel@tonic-gate 
8797c478bd9Sstevel@tonic-gate 	if ((mondo = pci_xlate_intr(pci_p->pci_dip, rdip, pci_p->pci_ib_p,
880a195726fSgovinda 	    IB_MONDO_TO_INO(hdlp->ih_vector))) == 0) {
8817c478bd9Sstevel@tonic-gate 		mutex_exit(&ib_p->ib_ino_lst_mutex);
8827c478bd9Sstevel@tonic-gate 		return (ret);
8837c478bd9Sstevel@tonic-gate 	}
8847c478bd9Sstevel@tonic-gate 
885b0fc0e77Sgovinda 	ino_p = ib_locate_ino(ib_p, IB_MONDO_TO_INO(mondo));
886b0fc0e77Sgovinda 	if (ino_p && (ipil_p = ib_ino_locate_ipil(ino_p, hdlp->ih_pri))) {
887b0fc0e77Sgovinda 		if (ih_p = ib_intr_locate_ih(ipil_p, rdip, hdlp->ih_inum)) {
8887c478bd9Sstevel@tonic-gate 			ih_p->ih_intr_state = new_intr_state;
8897c478bd9Sstevel@tonic-gate 			ret = DDI_SUCCESS;
8907c478bd9Sstevel@tonic-gate 		}
8917c478bd9Sstevel@tonic-gate 	}
8927c478bd9Sstevel@tonic-gate 
8937c478bd9Sstevel@tonic-gate 	mutex_exit(&ib_p->ib_ino_lst_mutex);
8947c478bd9Sstevel@tonic-gate 	return (ret);
8957c478bd9Sstevel@tonic-gate }
8967851eb82Sschwartz 
8977851eb82Sschwartz /*
8987851eb82Sschwartz  * Return the dips or number of dips associated with a given interrupt block.
8997851eb82Sschwartz  * Size of dips array arg is passed in as dips_ret arg.
9007851eb82Sschwartz  * Number of dips returned is returned in dips_ret arg.
9017851eb82Sschwartz  * Array of dips gets returned in the dips argument.
9027851eb82Sschwartz  * Function returns number of dips existing for the given interrupt block.
9037851eb82Sschwartz  *
9047851eb82Sschwartz  */
9057851eb82Sschwartz uint8_t
9067851eb82Sschwartz ib_get_ino_devs(
9077851eb82Sschwartz 	ib_t *ib_p, uint32_t ino, uint8_t *devs_ret, pcitool_intr_dev_t *devs)
9087851eb82Sschwartz {
909b0fc0e77Sgovinda 	ib_ino_info_t	*ino_p;
910b0fc0e77Sgovinda 	ib_ino_pil_t	*ipil_p;
911b0fc0e77Sgovinda 	ih_t		*ih_p;
912b0fc0e77Sgovinda 	uint32_t	num_devs = 0;
913b0fc0e77Sgovinda 	int		i, j;
9147851eb82Sschwartz 
9157851eb82Sschwartz 	mutex_enter(&ib_p->ib_ino_lst_mutex);
9167851eb82Sschwartz 	ino_p = ib_locate_ino(ib_p, ino);
9177851eb82Sschwartz 	if (ino_p != NULL) {
918b0fc0e77Sgovinda 		for (j = 0, ipil_p = ino_p->ino_ipil_p; ipil_p;
919b0fc0e77Sgovinda 		    ipil_p = ipil_p->ipil_next_p) {
920b0fc0e77Sgovinda 			num_devs += ipil_p->ipil_ih_size;
921b0fc0e77Sgovinda 
922b0fc0e77Sgovinda 			for (i = 0, ih_p = ipil_p->ipil_ih_head;
923b0fc0e77Sgovinda 			    ((i < ipil_p->ipil_ih_size) && (i < *devs_ret));
924b0fc0e77Sgovinda 			    i++, j++, ih_p = ih_p->ih_next) {
925b0fc0e77Sgovinda 				(void) strncpy(devs[i].driver_name,
926b0fc0e77Sgovinda 				    ddi_driver_name(ih_p->ih_dip),
927b0fc0e77Sgovinda 				    MAXMODCONFNAME-1);
928b0fc0e77Sgovinda 				devs[i].driver_name[MAXMODCONFNAME] = '\0';
929b0fc0e77Sgovinda 				(void) ddi_pathname(ih_p->ih_dip, devs[i].path);
930b0fc0e77Sgovinda 				devs[i].dev_inst =
931b0fc0e77Sgovinda 				    ddi_get_instance(ih_p->ih_dip);
932b0fc0e77Sgovinda 			}
9337851eb82Sschwartz 		}
934b0fc0e77Sgovinda 		*devs_ret = j;
9357851eb82Sschwartz 	}
9367851eb82Sschwartz 
9377851eb82Sschwartz 	mutex_exit(&ib_p->ib_ino_lst_mutex);
9387851eb82Sschwartz 
9397851eb82Sschwartz 	return (num_devs);
9407851eb82Sschwartz }
9417851eb82Sschwartz 
9427851eb82Sschwartz void ib_log_new_cpu(ib_t *ib_p, uint32_t old_cpu_id, uint32_t new_cpu_id,
9437851eb82Sschwartz 	uint32_t ino)
9447851eb82Sschwartz {
945b0fc0e77Sgovinda 	ib_ino_info_t	*ino_p;
946b0fc0e77Sgovinda 	ib_ino_pil_t	*ipil_p;
947b0fc0e77Sgovinda 	ih_t		*ih_p;
948b0fc0e77Sgovinda 	int		i;
9497851eb82Sschwartz 
9507851eb82Sschwartz 	mutex_enter(&ib_p->ib_ino_lst_mutex);
9517851eb82Sschwartz 
9527851eb82Sschwartz 	/* Log in OS data structures the new CPU. */
9537851eb82Sschwartz 	ino_p = ib_locate_ino(ib_p, ino);
9547851eb82Sschwartz 	if (ino_p != NULL) {
9557851eb82Sschwartz 
9567851eb82Sschwartz 		/* Log in OS data structures the new CPU. */
9577851eb82Sschwartz 		ino_p->ino_cpuid = new_cpu_id;
9587851eb82Sschwartz 
959b0fc0e77Sgovinda 		for (ipil_p = ino_p->ino_ipil_p; ipil_p;
960b0fc0e77Sgovinda 		    ipil_p = ipil_p->ipil_next_p) {
961b0fc0e77Sgovinda 			for (i = 0, ih_p = ipil_p->ipil_ih_head;
962b0fc0e77Sgovinda 			    (i < ipil_p->ipil_ih_size);
963b0fc0e77Sgovinda 			    i++, ih_p = ih_p->ih_next) {
964b0fc0e77Sgovinda 				/*
965b0fc0e77Sgovinda 				 * Account for any residual time
966b0fc0e77Sgovinda 				 * to be logged for old cpu.
967b0fc0e77Sgovinda 				 */
968b0fc0e77Sgovinda 				ib_cpu_ticks_to_ih_nsec(ib_p,
969b0fc0e77Sgovinda 				    ipil_p->ipil_ih_head, old_cpu_id);
970b0fc0e77Sgovinda 			}
971b0fc0e77Sgovinda 		}
9727851eb82Sschwartz 	}
9737851eb82Sschwartz 
9747851eb82Sschwartz 	mutex_exit(&ib_p->ib_ino_lst_mutex);
9757851eb82Sschwartz }
976