pic.c revision 1.25.2.4       1  1.25.2.4     skrll /*	$NetBSD: pic.c,v 1.25.2.4 2017/08/28 17:51:31 skrll Exp $	*/
      2       1.2      matt /*-
      3       1.2      matt  * Copyright (c) 2008 The NetBSD Foundation, Inc.
      4       1.2      matt  * All rights reserved.
      5       1.2      matt  *
      6       1.2      matt  * This code is derived from software contributed to The NetBSD Foundation
      7       1.2      matt  * by Matt Thomas.
      8       1.2      matt  *
      9       1.2      matt  * Redistribution and use in source and binary forms, with or without
     10       1.2      matt  * modification, are permitted provided that the following conditions
     11       1.2      matt  * are met:
     12       1.2      matt  * 1. Redistributions of source code must retain the above copyright
     13       1.2      matt  *    notice, this list of conditions and the following disclaimer.
     14       1.2      matt  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.2      matt  *    notice, this list of conditions and the following disclaimer in the
     16       1.2      matt  *    documentation and/or other materials provided with the distribution.
     17       1.2      matt  *
     18       1.2      matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     19       1.2      matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     20       1.2      matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     21       1.2      matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     22       1.2      matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     23       1.2      matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     24       1.2      matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     25       1.2      matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     26       1.2      matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     27       1.2      matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     28       1.2      matt  * POSSIBILITY OF SUCH DAMAGE.
     29       1.2      matt  */
     30      1.21      matt 
     31      1.21      matt #define _INTR_PRIVATE
     32      1.21      matt #include "opt_ddb.h"
     33      1.25     skrll #include "opt_multiprocessor.h"
     34      1.21      matt 
     35       1.2      matt #include <sys/cdefs.h>
     36  1.25.2.4     skrll __KERNEL_RCSID(0, "$NetBSD: pic.c,v 1.25.2.4 2017/08/28 17:51:31 skrll Exp $");
     37       1.2      matt 
     38       1.2      matt #include <sys/param.h>
     39      1.13      matt #include <sys/atomic.h>
     40      1.13      matt #include <sys/cpu.h>
     41       1.2      matt #include <sys/evcnt.h>
     42      1.13      matt #include <sys/intr.h>
     43      1.13      matt #include <sys/kernel.h>
     44      1.11      matt #include <sys/kmem.h>
     45  1.25.2.2     skrll #include <sys/mutex.h>
     46  1.25.2.2     skrll #include <sys/once.h>
     47      1.13      matt #include <sys/xcall.h>
     48      1.22     rmind #include <sys/ipi.h>
     49       1.2      matt 
     50  1.25.2.1     skrll #if defined(__arm__)
     51       1.2      matt #include <arm/armreg.h>
     52       1.2      matt #include <arm/cpufunc.h>
     53  1.25.2.1     skrll #elif defined(__aarch64__)
     54  1.25.2.1     skrll #include <aarch64/locore.h>
     55  1.25.2.1     skrll #define I32_bit		DAIF_I
     56  1.25.2.1     skrll #define F32_bit		DAIF_F
     57  1.25.2.1     skrll #endif
     58       1.2      matt 
     59      1.21      matt #ifdef DDB
     60      1.21      matt #include <arm/db_machdep.h>
     61      1.21      matt #endif
     62      1.21      matt 
     63       1.2      matt #include <arm/pic/picvar.h>
     64       1.2      matt 
     65  1.25.2.2     skrll #if defined(__HAVE_PIC_PENDING_INTRS)
     66  1.25.2.2     skrll /*
     67  1.25.2.2     skrll  * This implementation of pending interrupts on a MULTIPROCESSOR system makes
     68  1.25.2.2     skrll  * the assumption that a PIC (pic_softc) shall only have all its interrupts
     69  1.25.2.2     skrll  * come from the same CPU.  In other words, interrupts from a single PIC will
     70  1.25.2.2     skrll  * not be distributed among multiple CPUs.
     71  1.25.2.2     skrll  */
     72  1.25.2.2     skrll struct pic_pending {
     73  1.25.2.2     skrll 	volatile uint32_t blocked_pics;
     74  1.25.2.2     skrll 	volatile uint32_t pending_pics;
     75  1.25.2.2     skrll 	volatile uint32_t pending_ipls;
     76  1.25.2.2     skrll };
     77       1.2      matt static uint32_t
     78       1.2      matt 	pic_find_pending_irqs_by_ipl(struct pic_softc *, size_t, uint32_t, int);
     79       1.2      matt static struct pic_softc *
     80  1.25.2.2     skrll 	pic_list_find_pic_by_pending_ipl(struct pic_pending *, uint32_t);
     81       1.2      matt static void
     82  1.25.2.2     skrll 	pic_deliver_irqs(struct pic_pending *, struct pic_softc *, int, void *);
     83       1.2      matt static void
     84  1.25.2.2     skrll 	pic_list_deliver_irqs(struct pic_pending *, register_t, int, void *);
     85  1.25.2.2     skrll 
     86  1.25.2.2     skrll #ifdef MULTIPROCESSOR
     87  1.25.2.2     skrll percpu_t *pic_pending_percpu;
     88  1.25.2.2     skrll #else
     89  1.25.2.2     skrll struct pic_pending pic_pending;
     90  1.25.2.2     skrll #endif /* MULTIPROCESSOR */
     91  1.25.2.2     skrll #endif /* __HAVE_PIC_PENDING_INTRS */
     92       1.2      matt 
     93       1.2      matt struct pic_softc *pic_list[PIC_MAXPICS];
     94       1.2      matt #if PIC_MAXPICS > 32
     95       1.2      matt #error PIC_MAXPICS > 32 not supported
     96       1.2      matt #endif
     97       1.2      matt struct intrsource *pic_sources[PIC_MAXMAXSOURCES];
     98       1.2      matt struct intrsource *pic__iplsources[PIC_MAXMAXSOURCES];
     99       1.2      matt struct intrsource **pic_iplsource[NIPL] = {
    100       1.2      matt 	[0 ... NIPL-1] = pic__iplsources,
    101       1.2      matt };
    102       1.2      matt size_t pic_ipl_offset[NIPL+1];
    103  1.25.2.2     skrll 
    104  1.25.2.2     skrll static kmutex_t pic_lock;
    105       1.2      matt size_t pic_sourcebase;
    106  1.25.2.2     skrll static struct evcnt pic_deferral_ev =
    107       1.2      matt     EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "deferred", "intr");
    108       1.2      matt EVCNT_ATTACH_STATIC(pic_deferral_ev);
    109       1.2      matt 
    110  1.25.2.2     skrll static int pic_init(void);
    111  1.25.2.2     skrll 
    112      1.11      matt #ifdef __HAVE_PIC_SET_PRIORITY
    113      1.11      matt void
    114      1.11      matt pic_set_priority(struct cpu_info *ci, int newipl)
    115      1.11      matt {
    116      1.13      matt 	register_t psw = cpsid(I32_bit);
    117      1.13      matt 	if (pic_list[0] != NULL)
    118      1.13      matt 		(pic_list[0]->pic_ops->pic_set_priority)(pic_list[0], newipl);
    119      1.11      matt 	ci->ci_cpl = newipl;
    120      1.13      matt 	if ((psw & I32_bit) == 0)
    121      1.13      matt 		cpsie(I32_bit);
    122      1.13      matt }
    123      1.13      matt #endif
    124      1.13      matt 
    125      1.13      matt #ifdef MULTIPROCESSOR
    126      1.13      matt int
    127  1.25.2.2     skrll pic_ipi_ast(void *arg)
    128  1.25.2.2     skrll {
    129  1.25.2.2     skrll 	setsoftast(curcpu());
    130  1.25.2.2     skrll 	return 1;
    131  1.25.2.2     skrll }
    132  1.25.2.2     skrll 
    133  1.25.2.2     skrll int
    134      1.13      matt pic_ipi_nop(void *arg)
    135      1.13      matt {
    136      1.13      matt 	/* do nothing */
    137      1.13      matt 	return 1;
    138      1.13      matt }
    139      1.13      matt 
    140      1.13      matt int
    141      1.13      matt pic_ipi_xcall(void *arg)
    142      1.13      matt {
    143      1.13      matt 	xc_ipi_handler();
    144      1.13      matt 	return 1;
    145      1.13      matt }
    146      1.13      matt 
    147      1.22     rmind int
    148      1.22     rmind pic_ipi_generic(void *arg)
    149      1.22     rmind {
    150      1.22     rmind 	ipi_cpu_handler();
    151      1.22     rmind 	return 1;
    152      1.22     rmind }
    153      1.22     rmind 
    154      1.21      matt #ifdef DDB
    155      1.21      matt int
    156      1.21      matt pic_ipi_ddb(void *arg)
    157      1.21      matt {
    158      1.23     skrll //	printf("%s: %s: tf=%p\n", __func__, curcpu()->ci_cpuname, arg);
    159      1.21      matt 	kdb_trap(-1, arg);
    160      1.21      matt 	return 1;
    161      1.21      matt }
    162  1.25.2.2     skrll 
    163  1.25.2.2     skrll #ifdef __HAVE_PREEMPTION
    164  1.25.2.2     skrll int
    165  1.25.2.2     skrll pic_ipi_kpreempt(void *arg)
    166  1.25.2.2     skrll {
    167  1.25.2.2     skrll 	atomic_or_uint(&curcpu()->ci_astpending, __BIT(1));
    168  1.25.2.2     skrll 	return 1;
    169  1.25.2.2     skrll }
    170      1.21      matt #endif
    171  1.25.2.2     skrll #endif /* MULTIPROCESSOR */
    172      1.21      matt 
    173      1.13      matt void
    174      1.13      matt intr_cpu_init(struct cpu_info *ci)
    175      1.13      matt {
    176      1.13      matt 	for (size_t slot = 0; slot < PIC_MAXPICS; slot++) {
    177      1.13      matt 		struct pic_softc * const pic = pic_list[slot];
    178      1.13      matt 		if (pic != NULL && pic->pic_ops->pic_cpu_init != NULL) {
    179      1.13      matt 			(*pic->pic_ops->pic_cpu_init)(pic, ci);
    180      1.13      matt 		}
    181      1.13      matt 	}
    182      1.13      matt }
    183      1.13      matt 
    184      1.13      matt typedef void (*pic_ipi_send_func_t)(struct pic_softc *, u_long);
    185      1.13      matt 
    186  1.25.2.2     skrll void
    187  1.25.2.2     skrll intr_ipi_send(const kcpuset_t *kcp, u_long ipi)
    188      1.13      matt {
    189  1.25.2.2     skrll 	struct cpu_info * const ci = curcpu();
    190  1.25.2.2     skrll 	KASSERT(ipi < NIPI);
    191  1.25.2.2     skrll 	bool __diagused sent_p = false;
    192      1.13      matt 	for (size_t slot = 0; slot < PIC_MAXPICS; slot++) {
    193      1.13      matt 		struct pic_softc * const pic = pic_list[slot];
    194  1.25.2.2     skrll 		if (pic == NULL || pic->pic_cpus == NULL)
    195  1.25.2.2     skrll 			continue;
    196  1.25.2.2     skrll 		if (kcp == NULL || kcpuset_intersecting_p(kcp, pic->pic_cpus)) {
    197  1.25.2.2     skrll 			// never send to ourself
    198  1.25.2.2     skrll 			if (pic->pic_cpus == ci->ci_kcpuset)
    199  1.25.2.2     skrll 				continue;
    200  1.25.2.2     skrll 
    201  1.25.2.2     skrll 			(*pic->pic_ops->pic_ipi_send)(pic, kcp, ipi);
    202  1.25.2.2     skrll 			// If we were targeting a single CPU or this pic
    203  1.25.2.2     skrll 			// handles all cpus, we're done.
    204  1.25.2.2     skrll 			if (kcp != NULL || pic->pic_cpus == kcpuset_running)
    205  1.25.2.2     skrll 				return;
    206  1.25.2.2     skrll 			sent_p = true;
    207      1.13      matt 		}
    208      1.13      matt 	}
    209  1.25.2.2     skrll 	KASSERT(cold || sent_p);
    210      1.13      matt }
    211      1.13      matt #endif /* MULTIPROCESSOR */
    212      1.13      matt 
    213      1.13      matt #ifdef __HAVE_PIC_FAST_SOFTINTS
    214      1.13      matt int
    215      1.13      matt pic_handle_softint(void *arg)
    216      1.13      matt {
    217      1.13      matt 	void softint_switch(lwp_t *, int);
    218  1.25.2.2     skrll 	struct cpu_info * const ci = curcpu();
    219      1.13      matt 	const size_t softint = (size_t) arg;
    220      1.13      matt 	int s = splhigh();
    221      1.13      matt 	ci->ci_intr_depth--;	// don't count these as interrupts
    222      1.13      matt 	softint_switch(ci->ci_softlwps[softint], s);
    223      1.13      matt 	ci->ci_intr_depth++;
    224      1.13      matt 	splx(s);
    225      1.13      matt 	return 1;
    226      1.11      matt }
    227      1.11      matt #endif
    228       1.2      matt 
    229       1.2      matt int
    230       1.2      matt pic_handle_intr(void *arg)
    231       1.2      matt {
    232       1.2      matt 	struct pic_softc * const pic = arg;
    233       1.2      matt 	int rv;
    234       1.2      matt 
    235       1.2      matt 	rv = (*pic->pic_ops->pic_find_pending_irqs)(pic);
    236       1.2      matt 
    237       1.2      matt 	return rv > 0;
    238       1.2      matt }
    239       1.2      matt 
    240  1.25.2.2     skrll #if defined(__HAVE_PIC_PENDING_INTRS)
    241       1.2      matt void
    242       1.2      matt pic_mark_pending_source(struct pic_softc *pic, struct intrsource *is)
    243       1.2      matt {
    244       1.2      matt 	const uint32_t ipl_mask = __BIT(is->is_ipl);
    245       1.2      matt 
    246       1.4      matt 	atomic_or_32(&pic->pic_pending_irqs[is->is_irq >> 5],
    247       1.4      matt 	    __BIT(is->is_irq & 0x1f));
    248       1.2      matt 
    249       1.4      matt 	atomic_or_32(&pic->pic_pending_ipls, ipl_mask);
    250  1.25.2.2     skrll #ifdef MULTIPROCESSOR
    251  1.25.2.2     skrll 	struct pic_pending *pend = percpu_getref(pic_pending_percpu);
    252  1.25.2.2     skrll #else
    253  1.25.2.2     skrll 	struct pic_pending *pend = &pic_pending;
    254  1.25.2.2     skrll #endif
    255  1.25.2.2     skrll 	atomic_or_32(&pend->pending_ipls, ipl_mask);
    256  1.25.2.2     skrll 	atomic_or_32(&pend->pending_pics, __BIT(pic->pic_id));
    257  1.25.2.2     skrll #ifdef MULTIPROCESSOR
    258  1.25.2.2     skrll 	percpu_putref(pic_pending_percpu);
    259  1.25.2.2     skrll #endif
    260       1.2      matt }
    261       1.2      matt 
    262       1.2      matt void
    263       1.2      matt pic_mark_pending(struct pic_softc *pic, int irq)
    264       1.2      matt {
    265       1.2      matt 	struct intrsource * const is = pic->pic_sources[irq];
    266       1.2      matt 
    267       1.2      matt 	KASSERT(irq < pic->pic_maxsources);
    268       1.2      matt 	KASSERT(is != NULL);
    269       1.2      matt 
    270       1.2      matt 	pic_mark_pending_source(pic, is);
    271       1.2      matt }
    272       1.2      matt 
    273       1.2      matt uint32_t
    274       1.2      matt pic_mark_pending_sources(struct pic_softc *pic, size_t irq_base,
    275       1.2      matt 	uint32_t pending)
    276       1.2      matt {
    277       1.2      matt 	struct intrsource ** const isbase = &pic->pic_sources[irq_base];
    278       1.2      matt 	struct intrsource *is;
    279       1.4      matt 	volatile uint32_t *ipending = &pic->pic_pending_irqs[irq_base >> 5];
    280       1.2      matt 	uint32_t ipl_mask = 0;
    281       1.2      matt 
    282       1.2      matt 	if (pending == 0)
    283       1.2      matt 		return ipl_mask;
    284       1.2      matt 
    285       1.2      matt 	KASSERT((irq_base & 31) == 0);
    286  1.25.2.2     skrll 
    287       1.2      matt 	(*pic->pic_ops->pic_block_irqs)(pic, irq_base, pending);
    288       1.2      matt 
    289       1.4      matt 	atomic_or_32(ipending, pending);
    290       1.2      matt         while (pending != 0) {
    291       1.2      matt 		int n = ffs(pending);
    292       1.2      matt 		if (n-- == 0)
    293       1.2      matt 			break;
    294       1.2      matt 		is = isbase[n];
    295       1.2      matt 		KASSERT(is != NULL);
    296       1.2      matt 		KASSERT(irq_base <= is->is_irq && is->is_irq < irq_base + 32);
    297       1.2      matt 		pending &= ~__BIT(n);
    298       1.2      matt 		ipl_mask |= __BIT(is->is_ipl);
    299       1.2      matt 	}
    300       1.2      matt 
    301       1.4      matt 	atomic_or_32(&pic->pic_pending_ipls, ipl_mask);
    302  1.25.2.2     skrll #ifdef MULTIPROCESSOR
    303  1.25.2.2     skrll 	struct pic_pending *pend = percpu_getref(pic_pending_percpu);
    304  1.25.2.2     skrll #else
    305  1.25.2.2     skrll 	struct pic_pending *pend = &pic_pending;
    306  1.25.2.2     skrll #endif
    307  1.25.2.2     skrll 	atomic_or_32(&pend->pending_ipls, ipl_mask);
    308  1.25.2.2     skrll 	atomic_or_32(&pend->pending_pics, __BIT(pic->pic_id));
    309  1.25.2.2     skrll #ifdef MULTIPROCESSOR
    310  1.25.2.2     skrll 	percpu_putref(pic_pending_percpu);
    311  1.25.2.2     skrll #endif
    312       1.2      matt 	return ipl_mask;
    313       1.2      matt }
    314       1.2      matt 
    315       1.2      matt uint32_t
    316       1.2      matt pic_find_pending_irqs_by_ipl(struct pic_softc *pic, size_t irq_base,
    317       1.2      matt 	uint32_t pending, int ipl)
    318       1.2      matt {
    319       1.2      matt 	uint32_t ipl_irq_mask = 0;
    320       1.2      matt 	uint32_t irq_mask;
    321       1.2      matt 
    322       1.2      matt 	for (;;) {
    323       1.2      matt 		int irq = ffs(pending);
    324       1.2      matt 		if (irq-- == 0)
    325       1.2      matt 			return ipl_irq_mask;
    326       1.2      matt 
    327       1.2      matt 		irq_mask = __BIT(irq);
    328       1.8       bsh #if 1
    329      1.10     skrll     		KASSERTMSG(pic->pic_sources[irq_base + irq] != NULL,
    330      1.10     skrll 		   "%s: irq_base %zu irq %d\n", __func__, irq_base, irq);
    331       1.8       bsh #else
    332       1.8       bsh 		if (pic->pic_sources[irq_base + irq] == NULL) {
    333       1.8       bsh 			aprint_error("stray interrupt? irq_base=%zu irq=%d\n",
    334       1.8       bsh 			    irq_base, irq);
    335       1.8       bsh 		} else
    336       1.8       bsh #endif
    337       1.2      matt 		if (pic->pic_sources[irq_base + irq]->is_ipl == ipl)
    338       1.2      matt 			ipl_irq_mask |= irq_mask;
    339       1.2      matt 
    340       1.2      matt 		pending &= ~irq_mask;
    341       1.2      matt 	}
    342       1.2      matt }
    343  1.25.2.2     skrll #endif /* __HAVE_PIC_PENDING_INTRS */
    344       1.2      matt 
    345       1.2      matt void
    346       1.2      matt pic_dispatch(struct intrsource *is, void *frame)
    347       1.2      matt {
    348      1.20      matt 	int (*func)(void *) = is->is_func;
    349      1.20      matt 	void *arg = is->is_arg;
    350       1.2      matt 
    351      1.20      matt 	if (__predict_false(arg == NULL)) {
    352      1.20      matt 		if (__predict_false(frame == NULL)) {
    353      1.20      matt 			pic_deferral_ev.ev_count++;
    354      1.20      matt 			return;
    355      1.20      matt 		}
    356      1.20      matt 		arg = frame;
    357       1.2      matt 	}
    358      1.13      matt 
    359      1.20      matt #ifdef MULTIPROCESSOR
    360      1.20      matt 	if (!is->is_mpsafe) {
    361      1.20      matt 		KERNEL_LOCK(1, NULL);
    362      1.21      matt 		const u_int ci_blcnt __diagused = curcpu()->ci_biglock_count;
    363      1.21      matt 		const u_int l_blcnt __diagused = curlwp->l_blcnt;
    364      1.20      matt 		(void)(*func)(arg);
    365      1.21      matt 		KASSERT(ci_blcnt == curcpu()->ci_biglock_count);
    366      1.21      matt 		KASSERT(l_blcnt == curlwp->l_blcnt);
    367      1.20      matt 		KERNEL_UNLOCK_ONE(NULL);
    368      1.20      matt 	} else
    369      1.20      matt #endif
    370      1.20      matt 		(void)(*func)(arg);
    371      1.20      matt 
    372      1.20      matt 
    373      1.13      matt 	struct pic_percpu * const pcpu = percpu_getref(is->is_pic->pic_percpu);
    374      1.13      matt 	KASSERT(pcpu->pcpu_magic == PICPERCPU_MAGIC);
    375      1.13      matt 	pcpu->pcpu_evs[is->is_irq].ev_count++;
    376      1.13      matt 	percpu_putref(is->is_pic->pic_percpu);
    377       1.2      matt }
    378       1.2      matt 
    379  1.25.2.2     skrll #if defined(__HAVE_PIC_PENDING_INTRS)
    380       1.2      matt void
    381  1.25.2.2     skrll pic_deliver_irqs(struct pic_pending *pend, struct pic_softc *pic, int ipl,
    382  1.25.2.2     skrll     void *frame)
    383       1.2      matt {
    384       1.2      matt 	const uint32_t ipl_mask = __BIT(ipl);
    385       1.2      matt 	struct intrsource *is;
    386       1.4      matt 	volatile uint32_t *ipending = pic->pic_pending_irqs;
    387       1.4      matt 	volatile uint32_t *iblocked = pic->pic_blocked_irqs;
    388       1.2      matt 	size_t irq_base;
    389       1.2      matt #if PIC_MAXSOURCES > 32
    390       1.2      matt 	size_t irq_count;
    391       1.6  kiyohara 	int poi = 0;		/* Possibility of interrupting */
    392       1.2      matt #endif
    393       1.2      matt 	uint32_t pending_irqs;
    394       1.2      matt 	uint32_t blocked_irqs;
    395       1.2      matt 	int irq;
    396      1.19    martin 	bool progress __diagused = false;
    397  1.25.2.2     skrll 
    398       1.2      matt 	KASSERT(pic->pic_pending_ipls & ipl_mask);
    399       1.2      matt 
    400       1.2      matt 	irq_base = 0;
    401       1.2      matt #if PIC_MAXSOURCES > 32
    402       1.2      matt 	irq_count = 0;
    403       1.2      matt #endif
    404       1.2      matt 
    405       1.2      matt 	for (;;) {
    406       1.2      matt 		pending_irqs = pic_find_pending_irqs_by_ipl(pic, irq_base,
    407       1.2      matt 		    *ipending, ipl);
    408       1.2      matt 		KASSERT((pending_irqs & *ipending) == pending_irqs);
    409       1.2      matt 		KASSERT((pending_irqs & ~(*ipending)) == 0);
    410       1.2      matt 		if (pending_irqs == 0) {
    411       1.2      matt #if PIC_MAXSOURCES > 32
    412       1.2      matt 			irq_count += 32;
    413       1.6  kiyohara 			if (__predict_true(irq_count >= pic->pic_maxsources)) {
    414       1.6  kiyohara 				if (!poi)
    415       1.6  kiyohara 					/*Interrupt at this level was handled.*/
    416       1.6  kiyohara 					break;
    417       1.6  kiyohara 				irq_base = 0;
    418       1.6  kiyohara 				irq_count = 0;
    419       1.6  kiyohara 				poi = 0;
    420       1.2      matt 				ipending = pic->pic_pending_irqs;
    421       1.2      matt 				iblocked = pic->pic_blocked_irqs;
    422       1.6  kiyohara 			} else {
    423       1.6  kiyohara 				irq_base += 32;
    424       1.6  kiyohara 				ipending++;
    425       1.6  kiyohara 				iblocked++;
    426       1.6  kiyohara 				KASSERT(irq_base <= pic->pic_maxsources);
    427       1.2      matt 			}
    428       1.2      matt 			continue;
    429       1.2      matt #else
    430       1.2      matt 			break;
    431       1.2      matt #endif
    432       1.2      matt 		}
    433       1.2      matt 		progress = true;
    434       1.5  kiyohara 		blocked_irqs = 0;
    435       1.2      matt 		do {
    436       1.2      matt 			irq = ffs(pending_irqs) - 1;
    437       1.2      matt 			KASSERT(irq >= 0);
    438       1.2      matt 
    439       1.4      matt 			atomic_and_32(ipending, ~__BIT(irq));
    440       1.2      matt 			is = pic->pic_sources[irq_base + irq];
    441       1.2      matt 			if (is != NULL) {
    442       1.2      matt 				cpsie(I32_bit);
    443       1.2      matt 				pic_dispatch(is, frame);
    444       1.2      matt 				cpsid(I32_bit);
    445       1.6  kiyohara #if PIC_MAXSOURCES > 32
    446       1.6  kiyohara 				/*
    447       1.6  kiyohara 				 * There is a possibility of interrupting
    448       1.6  kiyohara 				 * from cpsie() to cpsid().
    449       1.6  kiyohara 				 */
    450       1.6  kiyohara 				poi = 1;
    451       1.6  kiyohara #endif
    452       1.5  kiyohara 				blocked_irqs |= __BIT(irq);
    453       1.2      matt 			} else {
    454       1.2      matt 				KASSERT(0);
    455       1.2      matt 			}
    456       1.2      matt 			pending_irqs = pic_find_pending_irqs_by_ipl(pic,
    457       1.2      matt 			    irq_base, *ipending, ipl);
    458       1.2      matt 		} while (pending_irqs);
    459       1.2      matt 		if (blocked_irqs) {
    460       1.4      matt 			atomic_or_32(iblocked, blocked_irqs);
    461  1.25.2.2     skrll 			atomic_or_32(&pend->blocked_pics, __BIT(pic->pic_id));
    462       1.2      matt 		}
    463       1.2      matt 	}
    464       1.2      matt 
    465       1.2      matt 	KASSERT(progress);
    466       1.2      matt 	/*
    467       1.2      matt 	 * Since interrupts are disabled, we don't have to be too careful
    468       1.2      matt 	 * about these.
    469       1.2      matt 	 */
    470       1.4      matt 	if (atomic_and_32_nv(&pic->pic_pending_ipls, ~ipl_mask) == 0)
    471  1.25.2.2     skrll 		atomic_and_32(&pend->pending_pics, ~__BIT(pic->pic_id));
    472       1.2      matt }
    473       1.2      matt 
    474       1.2      matt static void
    475  1.25.2.2     skrll pic_list_unblock_irqs(struct pic_pending *pend)
    476       1.2      matt {
    477  1.25.2.2     skrll 	uint32_t blocked_pics = pend->blocked_pics;
    478  1.25.2.2     skrll 
    479  1.25.2.2     skrll 	pend->blocked_pics = 0;
    480       1.2      matt 
    481       1.2      matt 	for (;;) {
    482       1.2      matt 		struct pic_softc *pic;
    483       1.2      matt #if PIC_MAXSOURCES > 32
    484       1.4      matt 		volatile uint32_t *iblocked;
    485       1.4      matt 		uint32_t blocked;
    486       1.2      matt 		size_t irq_base;
    487       1.2      matt #endif
    488       1.2      matt 
    489       1.4      matt 		int pic_id = ffs(blocked_pics);
    490       1.2      matt 		if (pic_id-- == 0)
    491       1.2      matt 			return;
    492       1.2      matt 
    493       1.2      matt 		pic = pic_list[pic_id];
    494       1.2      matt 		KASSERT(pic != NULL);
    495       1.2      matt #if PIC_MAXSOURCES > 32
    496       1.2      matt 		for (irq_base = 0, iblocked = pic->pic_blocked_irqs;
    497       1.2      matt 		     irq_base < pic->pic_maxsources;
    498       1.2      matt 		     irq_base += 32, iblocked++) {
    499       1.4      matt 			if ((blocked = *iblocked) != 0) {
    500       1.2      matt 				(*pic->pic_ops->pic_unblock_irqs)(pic,
    501       1.4      matt 				    irq_base, blocked);
    502       1.4      matt 				atomic_and_32(iblocked, ~blocked);
    503       1.2      matt 			}
    504       1.2      matt 		}
    505       1.2      matt #else
    506       1.2      matt 		KASSERT(pic->pic_blocked_irqs[0] != 0);
    507       1.2      matt 		(*pic->pic_ops->pic_unblock_irqs)(pic,
    508       1.2      matt 		    0, pic->pic_blocked_irqs[0]);
    509       1.4      matt 		pic->pic_blocked_irqs[0] = 0;
    510       1.2      matt #endif
    511       1.4      matt 		blocked_pics &= ~__BIT(pic_id);
    512       1.2      matt 	}
    513       1.2      matt }
    514       1.2      matt 
    515       1.2      matt 
    516       1.2      matt struct pic_softc *
    517  1.25.2.2     skrll pic_list_find_pic_by_pending_ipl(struct pic_pending *pend, uint32_t ipl_mask)
    518       1.2      matt {
    519  1.25.2.2     skrll 	uint32_t pending_pics = pend->pending_pics;
    520       1.2      matt 	struct pic_softc *pic;
    521       1.2      matt 
    522       1.2      matt 	for (;;) {
    523       1.4      matt 		int pic_id = ffs(pending_pics);
    524       1.2      matt 		if (pic_id-- == 0)
    525       1.2      matt 			return NULL;
    526       1.2      matt 
    527       1.2      matt 		pic = pic_list[pic_id];
    528       1.2      matt 		KASSERT(pic != NULL);
    529       1.2      matt 		if (pic->pic_pending_ipls & ipl_mask)
    530       1.2      matt 			return pic;
    531       1.4      matt 		pending_pics &= ~__BIT(pic_id);
    532       1.2      matt 	}
    533       1.2      matt }
    534       1.2      matt 
    535       1.2      matt void
    536  1.25.2.2     skrll pic_list_deliver_irqs(struct pic_pending *pend, register_t psw, int ipl,
    537  1.25.2.2     skrll     void *frame)
    538       1.2      matt {
    539       1.2      matt 	const uint32_t ipl_mask = __BIT(ipl);
    540       1.2      matt 	struct pic_softc *pic;
    541       1.2      matt 
    542  1.25.2.2     skrll 	while ((pic = pic_list_find_pic_by_pending_ipl(pend, ipl_mask)) != NULL) {
    543  1.25.2.2     skrll 		pic_deliver_irqs(pend, pic, ipl, frame);
    544       1.2      matt 		KASSERT((pic->pic_pending_ipls & ipl_mask) == 0);
    545       1.2      matt 	}
    546  1.25.2.2     skrll 	atomic_and_32(&pend->pending_ipls, ~ipl_mask);
    547       1.2      matt }
    548  1.25.2.2     skrll #endif /* __HAVE_PIC_PENDING_INTRS */
    549       1.2      matt 
    550       1.2      matt void
    551       1.2      matt pic_do_pending_ints(register_t psw, int newipl, void *frame)
    552       1.2      matt {
    553       1.2      matt 	struct cpu_info * const ci = curcpu();
    554      1.13      matt 	if (__predict_false(newipl == IPL_HIGH)) {
    555      1.13      matt 		KASSERTMSG(ci->ci_cpl == IPL_HIGH, "cpl %d", ci->ci_cpl);
    556       1.2      matt 		return;
    557      1.13      matt 	}
    558  1.25.2.2     skrll #if defined(__HAVE_PIC_PENDING_INTRS)
    559  1.25.2.2     skrll #ifdef MULTIPROCESSOR
    560  1.25.2.2     skrll 	struct pic_pending *pend = percpu_getref(pic_pending_percpu);
    561  1.25.2.2     skrll #else
    562  1.25.2.2     skrll 	struct pic_pending *pend = &pic_pending;
    563  1.25.2.2     skrll #endif
    564  1.25.2.2     skrll 	while ((pend->pending_ipls & ~__BIT(newipl)) > __BIT(newipl)) {
    565  1.25.2.2     skrll 		KASSERT(pend->pending_ipls < __BIT(NIPL));
    566       1.2      matt 		for (;;) {
    567  1.25.2.2     skrll 			int ipl = 31 - __builtin_clz(pend->pending_ipls);
    568       1.2      matt 			KASSERT(ipl < NIPL);
    569       1.2      matt 			if (ipl <= newipl)
    570       1.2      matt 				break;
    571       1.2      matt 
    572      1.12      matt 			pic_set_priority(ci, ipl);
    573  1.25.2.2     skrll 			pic_list_deliver_irqs(pend, psw, ipl, frame);
    574  1.25.2.2     skrll 			pic_list_unblock_irqs(pend);
    575       1.2      matt 		}
    576       1.2      matt 	}
    577  1.25.2.2     skrll #ifdef MULTIPROCESSOR
    578  1.25.2.2     skrll 	percpu_putref(pic_pending_percpu);
    579  1.25.2.2     skrll #endif
    580  1.25.2.2     skrll #endif /* __HAVE_PIC_PENDING_INTRS */
    581  1.25.2.2     skrll #ifdef __HAVE_PREEMPTION
    582  1.25.2.2     skrll 	if (newipl == IPL_NONE && (ci->ci_astpending & __BIT(1))) {
    583  1.25.2.2     skrll 		pic_set_priority(ci, IPL_SCHED);
    584  1.25.2.2     skrll 		kpreempt(0);
    585  1.25.2.2     skrll 	}
    586  1.25.2.2     skrll #endif
    587       1.2      matt 	if (ci->ci_cpl != newipl)
    588      1.11      matt 		pic_set_priority(ci, newipl);
    589      1.13      matt }
    590      1.13      matt 
    591      1.13      matt static void
    592      1.13      matt pic_percpu_allocate(void *v0, void *v1, struct cpu_info *ci)
    593      1.13      matt {
    594      1.13      matt 	struct pic_percpu * const pcpu = v0;
    595      1.13      matt 	struct pic_softc * const pic = v1;
    596      1.13      matt 
    597      1.13      matt 	pcpu->pcpu_evs = kmem_zalloc(pic->pic_maxsources * sizeof(pcpu->pcpu_evs[0]),
    598      1.13      matt 	    KM_SLEEP);
    599      1.13      matt 	KASSERT(pcpu->pcpu_evs != NULL);
    600      1.13      matt 
    601      1.13      matt #define	PCPU_NAMELEN	32
    602      1.14      matt #ifdef DIAGNOSTIC
    603      1.13      matt 	const size_t namelen = strlen(pic->pic_name) + 4 + strlen(ci->ci_data.cpu_name);
    604      1.14      matt #endif
    605      1.13      matt 
    606      1.13      matt 	KASSERT(namelen < PCPU_NAMELEN);
    607      1.13      matt 	pcpu->pcpu_name = kmem_alloc(PCPU_NAMELEN, KM_SLEEP);
    608      1.13      matt #ifdef MULTIPROCESSOR
    609      1.13      matt 	snprintf(pcpu->pcpu_name, PCPU_NAMELEN,
    610      1.13      matt 	    "%s (%s)", pic->pic_name, ci->ci_data.cpu_name);
    611      1.13      matt #else
    612      1.13      matt 	strlcpy(pcpu->pcpu_name, pic->pic_name, PCPU_NAMELEN);
    613      1.13      matt #endif
    614      1.13      matt 	pcpu->pcpu_magic = PICPERCPU_MAGIC;
    615      1.13      matt #if 0
    616      1.13      matt 	printf("%s: %s %s: <%s>\n",
    617      1.13      matt 	    __func__, ci->ci_data.cpu_name, pic->pic_name,
    618      1.13      matt 	    pcpu->pcpu_name);
    619       1.2      matt #endif
    620       1.2      matt }
    621       1.2      matt 
    622  1.25.2.2     skrll #if defined(__HAVE_PIC_PENDING_INTRS) && defined(MULTIPROCESSOR)
    623  1.25.2.2     skrll static void
    624  1.25.2.2     skrll pic_pending_zero(void *v0, void *v1, struct cpu_info *ci)
    625  1.25.2.2     skrll {
    626  1.25.2.2     skrll 	struct pic_pending * const p = v0;
    627  1.25.2.2     skrll 	memset(p, 0, sizeof(*p));
    628  1.25.2.2     skrll }
    629  1.25.2.2     skrll #endif /* __HAVE_PIC_PENDING_INTRS && MULTIPROCESSOR */
    630  1.25.2.2     skrll 
    631  1.25.2.2     skrll static int
    632  1.25.2.2     skrll pic_init(void)
    633  1.25.2.2     skrll {
    634  1.25.2.2     skrll 
    635  1.25.2.2     skrll 	mutex_init(&pic_lock, MUTEX_DEFAULT, IPL_HIGH);
    636  1.25.2.2     skrll 
    637  1.25.2.2     skrll 	return 0;
    638  1.25.2.2     skrll }
    639  1.25.2.2     skrll 
    640       1.2      matt void
    641       1.2      matt pic_add(struct pic_softc *pic, int irqbase)
    642       1.2      matt {
    643       1.2      matt 	int slot, maybe_slot = -1;
    644  1.25.2.2     skrll 	size_t sourcebase;
    645  1.25.2.2     skrll 	static ONCE_DECL(pic_once);
    646  1.25.2.2     skrll 
    647  1.25.2.2     skrll 	RUN_ONCE(&pic_once, pic_init);
    648       1.2      matt 
    649      1.13      matt 	KASSERT(strlen(pic->pic_name) > 0);
    650      1.13      matt 
    651  1.25.2.2     skrll #if defined(__HAVE_PIC_PENDING_INTRS) && defined(MULTIPROCESSOR)
    652  1.25.2.2     skrll 	if (__predict_false(pic_pending_percpu == NULL)) {
    653  1.25.2.2     skrll 		pic_pending_percpu = percpu_alloc(sizeof(struct pic_pending));
    654  1.25.2.2     skrll 
    655  1.25.2.2     skrll 		/*
    656  1.25.2.2     skrll 		 * Now zero the per-cpu pending data.
    657  1.25.2.2     skrll 		 */
    658  1.25.2.2     skrll 		percpu_foreach(pic_pending_percpu, pic_pending_zero, NULL);
    659  1.25.2.2     skrll 	}
    660  1.25.2.2     skrll #endif /* __HAVE_PIC_PENDING_INTRS && MULTIPROCESSOR */
    661  1.25.2.2     skrll 
    662  1.25.2.2     skrll 	mutex_enter(&pic_lock);
    663       1.2      matt 	for (slot = 0; slot < PIC_MAXPICS; slot++) {
    664       1.2      matt 		struct pic_softc * const xpic = pic_list[slot];
    665       1.2      matt 		if (xpic == NULL) {
    666       1.2      matt 			if (maybe_slot < 0)
    667       1.2      matt 				maybe_slot = slot;
    668       1.2      matt 			if (irqbase < 0)
    669       1.2      matt 				break;
    670       1.2      matt 			continue;
    671       1.2      matt 		}
    672       1.2      matt 		if (irqbase < 0 || xpic->pic_irqbase < 0)
    673       1.2      matt 			continue;
    674       1.2      matt 		if (irqbase >= xpic->pic_irqbase + xpic->pic_maxsources)
    675       1.2      matt 			continue;
    676       1.2      matt 		if (irqbase + pic->pic_maxsources <= xpic->pic_irqbase)
    677       1.2      matt 			continue;
    678       1.2      matt 		panic("pic_add: pic %s (%zu sources @ irq %u) conflicts"
    679       1.2      matt 		    " with pic %s (%zu sources @ irq %u)",
    680       1.2      matt 		    pic->pic_name, pic->pic_maxsources, irqbase,
    681       1.2      matt 		    xpic->pic_name, xpic->pic_maxsources, xpic->pic_irqbase);
    682       1.2      matt 	}
    683       1.2      matt 	slot = maybe_slot;
    684       1.2      matt #if 0
    685       1.2      matt 	printf("%s: pic_sourcebase=%zu pic_maxsources=%zu\n",
    686       1.2      matt 	    pic->pic_name, pic_sourcebase, pic->pic_maxsources);
    687       1.2      matt #endif
    688      1.17      matt 	KASSERTMSG(pic->pic_maxsources <= PIC_MAXSOURCES, "%zu",
    689      1.17      matt 	    pic->pic_maxsources);
    690       1.2      matt 	KASSERT(pic_sourcebase + pic->pic_maxsources <= PIC_MAXMAXSOURCES);
    691  1.25.2.2     skrll 	sourcebase = pic_sourcebase;
    692  1.25.2.2     skrll 	pic_sourcebase += pic->pic_maxsources;
    693  1.25.2.2     skrll 
    694  1.25.2.2     skrll 	mutex_exit(&pic_lock);
    695       1.2      matt 
    696      1.13      matt 	/*
    697      1.13      matt 	 * Allocate a pointer to each cpu's evcnts and then, for each cpu,
    698      1.13      matt 	 * allocate its evcnts and then attach an evcnt for each pin.
    699      1.13      matt 	 * We can't allocate the evcnt structures directly since
    700  1.25.2.2     skrll 	 * percpu will move the contents of percpu memory around and
    701      1.13      matt 	 * corrupt the pointers in the evcnts themselves.  Remember, any
    702      1.13      matt 	 * problem can be solved with sufficient indirection.
    703      1.13      matt 	 */
    704      1.13      matt 	pic->pic_percpu = percpu_alloc(sizeof(struct pic_percpu));
    705      1.13      matt 
    706      1.13      matt 	/*
    707      1.13      matt 	 * Now allocate the per-cpu evcnts.
    708      1.13      matt 	 */
    709      1.13      matt 	percpu_foreach(pic->pic_percpu, pic_percpu_allocate, pic);
    710      1.13      matt 
    711  1.25.2.2     skrll 	pic->pic_sources = &pic_sources[sourcebase];
    712       1.2      matt 	pic->pic_irqbase = irqbase;
    713       1.2      matt 	pic->pic_id = slot;
    714      1.13      matt #ifdef __HAVE_PIC_SET_PRIORITY
    715      1.13      matt 	KASSERT((slot == 0) == (pic->pic_ops->pic_set_priority != NULL));
    716      1.13      matt #endif
    717      1.13      matt #ifdef MULTIPROCESSOR
    718  1.25.2.2     skrll 	KASSERT((pic->pic_cpus != NULL) == (pic->pic_ops->pic_ipi_send != NULL));
    719      1.13      matt #endif
    720       1.2      matt 	pic_list[slot] = pic;
    721       1.2      matt }
    722       1.2      matt 
    723       1.2      matt int
    724       1.2      matt pic_alloc_irq(struct pic_softc *pic)
    725       1.2      matt {
    726       1.2      matt 	int irq;
    727       1.2      matt 
    728       1.2      matt 	for (irq = 0; irq < pic->pic_maxsources; irq++) {
    729       1.2      matt 		if (pic->pic_sources[irq] == NULL)
    730       1.2      matt 			return irq;
    731       1.2      matt 	}
    732       1.2      matt 
    733       1.2      matt 	return -1;
    734       1.2      matt }
    735       1.2      matt 
    736      1.13      matt static void
    737      1.13      matt pic_percpu_evcnt_attach(void *v0, void *v1, struct cpu_info *ci)
    738      1.13      matt {
    739      1.13      matt 	struct pic_percpu * const pcpu = v0;
    740      1.13      matt 	struct intrsource * const is = v1;
    741      1.13      matt 
    742      1.13      matt 	KASSERT(pcpu->pcpu_magic == PICPERCPU_MAGIC);
    743      1.13      matt 	evcnt_attach_dynamic(&pcpu->pcpu_evs[is->is_irq], EVCNT_TYPE_INTR, NULL,
    744      1.13      matt 	    pcpu->pcpu_name, is->is_source);
    745      1.13      matt }
    746      1.13      matt 
    747       1.2      matt void *
    748       1.2      matt pic_establish_intr(struct pic_softc *pic, int irq, int ipl, int type,
    749       1.2      matt 	int (*func)(void *), void *arg)
    750       1.2      matt {
    751       1.2      matt 	struct intrsource *is;
    752       1.2      matt 	int off, nipl;
    753       1.2      matt 
    754       1.2      matt 	if (pic->pic_sources[irq]) {
    755       1.2      matt 		printf("pic_establish_intr: pic %s irq %d already present\n",
    756       1.2      matt 		    pic->pic_name, irq);
    757       1.2      matt 		return NULL;
    758       1.2      matt 	}
    759       1.2      matt 
    760      1.11      matt 	is = kmem_zalloc(sizeof(*is), KM_SLEEP);
    761       1.2      matt 	is->is_pic = pic;
    762       1.2      matt 	is->is_irq = irq;
    763       1.2      matt 	is->is_ipl = ipl;
    764      1.21      matt 	is->is_type = type & 0xff;
    765       1.2      matt 	is->is_func = func;
    766       1.2      matt 	is->is_arg = arg;
    767      1.20      matt #ifdef MULTIPROCESSOR
    768      1.24     skrll 	is->is_mpsafe = (type & IST_MPSAFE) || ipl != IPL_VM;
    769      1.20      matt #endif
    770      1.13      matt 
    771       1.2      matt 	if (pic->pic_ops->pic_source_name)
    772       1.2      matt 		(*pic->pic_ops->pic_source_name)(pic, irq, is->is_source,
    773       1.2      matt 		    sizeof(is->is_source));
    774       1.2      matt 	else
    775       1.2      matt 		snprintf(is->is_source, sizeof(is->is_source), "irq %d", irq);
    776       1.2      matt 
    777      1.13      matt 	/*
    778      1.13      matt 	 * Now attach the per-cpu evcnts.
    779      1.13      matt 	 */
    780      1.13      matt 	percpu_foreach(pic->pic_percpu, pic_percpu_evcnt_attach, is);
    781       1.2      matt 
    782       1.2      matt 	pic->pic_sources[irq] = is;
    783       1.2      matt 
    784       1.2      matt 	/*
    785       1.2      matt 	 * First try to use an existing slot which is empty.
    786       1.2      matt 	 */
    787       1.2      matt 	for (off = pic_ipl_offset[ipl]; off < pic_ipl_offset[ipl+1]; off++) {
    788       1.2      matt 		if (pic__iplsources[off] == NULL) {
    789       1.2      matt 			is->is_iplidx = off - pic_ipl_offset[ipl];
    790       1.2      matt 			pic__iplsources[off] = is;
    791  1.25.2.3     skrll 			goto unblock;
    792       1.2      matt 		}
    793       1.2      matt 	}
    794       1.2      matt 
    795       1.2      matt 	/*
    796       1.2      matt 	 * Move up all the sources by one.
    797       1.2      matt  	 */
    798       1.2      matt 	if (ipl < NIPL) {
    799       1.2      matt 		off = pic_ipl_offset[ipl+1];
    800       1.2      matt 		memmove(&pic__iplsources[off+1], &pic__iplsources[off],
    801       1.2      matt 		    sizeof(pic__iplsources[0]) * (pic_ipl_offset[NIPL] - off));
    802       1.2      matt 	}
    803       1.2      matt 
    804       1.2      matt 	/*
    805       1.2      matt 	 * Advance the offset of all IPLs higher than this.  Include an
    806       1.2      matt 	 * extra one as well.  Thus the number of sources per ipl is
    807       1.2      matt 	 * pic_ipl_offset[ipl+1] - pic_ipl_offset[ipl].
    808       1.2      matt 	 */
    809       1.2      matt 	for (nipl = ipl + 1; nipl <= NIPL; nipl++)
    810       1.2      matt 		pic_ipl_offset[nipl]++;
    811       1.2      matt 
    812       1.2      matt 	/*
    813       1.2      matt 	 * Insert into the previously made position at the end of this IPL's
    814       1.2      matt 	 * sources.
    815       1.2      matt 	 */
    816       1.2      matt 	off = pic_ipl_offset[ipl + 1] - 1;
    817       1.2      matt 	is->is_iplidx = off - pic_ipl_offset[ipl];
    818       1.2      matt 	pic__iplsources[off] = is;
    819       1.2      matt 
    820       1.2      matt 	(*pic->pic_ops->pic_establish_irq)(pic, is);
    821       1.2      matt 
    822  1.25.2.3     skrll unblock:
    823       1.2      matt 	(*pic->pic_ops->pic_unblock_irqs)(pic, is->is_irq & ~0x1f,
    824       1.2      matt 	    __BIT(is->is_irq & 0x1f));
    825  1.25.2.2     skrll 
    826       1.2      matt 	/* We're done. */
    827       1.2      matt 	return is;
    828       1.2      matt }
    829       1.2      matt 
    830      1.13      matt static void
    831      1.13      matt pic_percpu_evcnt_deattach(void *v0, void *v1, struct cpu_info *ci)
    832      1.13      matt {
    833      1.13      matt 	struct pic_percpu * const pcpu = v0;
    834      1.13      matt 	struct intrsource * const is = v1;
    835      1.13      matt 
    836      1.13      matt 	KASSERT(pcpu->pcpu_magic == PICPERCPU_MAGIC);
    837      1.13      matt 	evcnt_detach(&pcpu->pcpu_evs[is->is_irq]);
    838      1.13      matt }
    839      1.13      matt 
    840       1.2      matt void
    841       1.2      matt pic_disestablish_source(struct intrsource *is)
    842       1.2      matt {
    843       1.2      matt 	struct pic_softc * const pic = is->is_pic;
    844       1.2      matt 	const int irq = is->is_irq;
    845       1.2      matt 
    846      1.13      matt 	KASSERT(is == pic->pic_sources[irq]);
    847      1.13      matt 
    848      1.15   msaitoh 	(*pic->pic_ops->pic_block_irqs)(pic, irq & ~0x1f, __BIT(irq & 0x1f));
    849       1.2      matt 	pic->pic_sources[irq] = NULL;
    850       1.2      matt 	pic__iplsources[pic_ipl_offset[is->is_ipl] + is->is_iplidx] = NULL;
    851      1.13      matt 	/*
    852      1.13      matt 	 * Now detach the per-cpu evcnts.
    853      1.13      matt 	 */
    854      1.13      matt 	percpu_foreach(pic->pic_percpu, pic_percpu_evcnt_deattach, is);
    855       1.2      matt 
    856      1.11      matt 	kmem_free(is, sizeof(*is));
    857       1.2      matt }
    858       1.2      matt 
    859       1.2      matt void *
    860       1.2      matt intr_establish(int irq, int ipl, int type, int (*func)(void *), void *arg)
    861       1.2      matt {
    862      1.11      matt 	KASSERT(!cpu_intr_p());
    863      1.11      matt 	KASSERT(!cpu_softintr_p());
    864      1.11      matt 
    865      1.13      matt 	for (size_t slot = 0; slot < PIC_MAXPICS; slot++) {
    866       1.2      matt 		struct pic_softc * const pic = pic_list[slot];
    867       1.2      matt 		if (pic == NULL || pic->pic_irqbase < 0)
    868       1.2      matt 			continue;
    869       1.2      matt 		if (pic->pic_irqbase <= irq
    870       1.2      matt 		    && irq < pic->pic_irqbase + pic->pic_maxsources) {
    871       1.2      matt 			return pic_establish_intr(pic, irq - pic->pic_irqbase,
    872       1.2      matt 			    ipl, type, func, arg);
    873       1.2      matt 		}
    874       1.2      matt 	}
    875       1.2      matt 
    876       1.2      matt 	return NULL;
    877       1.2      matt }
    878       1.2      matt 
    879       1.2      matt void
    880       1.2      matt intr_disestablish(void *ih)
    881       1.2      matt {
    882       1.2      matt 	struct intrsource * const is = ih;
    883      1.13      matt 
    884      1.13      matt 	KASSERT(!cpu_intr_p());
    885      1.13      matt 	KASSERT(!cpu_softintr_p());
    886      1.13      matt 
    887       1.2      matt 	pic_disestablish_source(is);
    888       1.2      matt }
    889