Home | History | Annotate | Line # | Download | only in marvell
marvell_intr.h revision 1.14
      1  1.14       he /*	$NetBSD: marvell_intr.h,v 1.14 2008/04/24 11:36:51 he Exp $	*/
      2   1.1     matt 
      3   1.1     matt /*-
      4   1.1     matt  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5   1.1     matt  * All rights reserved.
      6   1.1     matt  *
      7   1.1     matt  * This code is derived from software contributed to The NetBSD Foundation
      8   1.1     matt  * by Charles M. Hannum.
      9   1.1     matt  *
     10   1.1     matt  * Redistribution and use in source and binary forms, with or without
     11   1.1     matt  * modification, are permitted provided that the following conditions
     12   1.1     matt  * are met:
     13   1.1     matt  * 1. Redistributions of source code must retain the above copyright
     14   1.1     matt  *    notice, this list of conditions and the following disclaimer.
     15   1.1     matt  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.1     matt  *    notice, this list of conditions and the following disclaimer in the
     17   1.1     matt  *    documentation and/or other materials provided with the distribution.
     18   1.1     matt  * 3. All advertising materials mentioning features or use of this software
     19   1.1     matt  *    must display the following acknowledgement:
     20   1.1     matt  *        This product includes software developed by the NetBSD
     21   1.1     matt  *        Foundation, Inc. and its contributors.
     22   1.1     matt  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23   1.1     matt  *    contributors may be used to endorse or promote products derived
     24   1.1     matt  *    from this software without specific prior written permission.
     25   1.1     matt  *
     26   1.1     matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27   1.1     matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28   1.1     matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29   1.1     matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30   1.1     matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31   1.1     matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32   1.1     matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33   1.1     matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34   1.1     matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35   1.1     matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36   1.1     matt  * POSSIBILITY OF SUCH DAMAGE.
     37   1.1     matt  */
     38   1.1     matt 
     39   1.1     matt #ifndef _MVPPPC_INTR_H_
     40   1.1     matt #define _MVPPPC_INTR_H_
     41   1.1     matt 
     42  1.14       he #include <powerpc/psl.h>
     43  1.14       he #include <powerpc/frame.h>
     44  1.14       he 
     45   1.1     matt /*
     46   1.1     matt  * Interrupt Priority Levels
     47   1.1     matt  */
     48   1.1     matt #define	IPL_NONE	0	/* nothing */
     49   1.1     matt #define	IPL_SOFTCLOCK	1	/* timeouts */
     50  1.13       ad #define	IPL_SOFTBIO	2	/* block I/O */
     51  1.13       ad #define	IPL_SOFTNET	3	/* protocol stacks */
     52  1.13       ad #define	IPL_SOFTSERIAL	4	/* serial */
     53   1.1     matt #define	IPL_VM		12	/* memory allocation */
     54  1.13       ad #define	IPL_SCHED	14	/* clock */
     55   1.1     matt #define	IPL_HIGH	15	/* everything */
     56   1.1     matt #define	NIPL		16
     57   1.1     matt #define IPL_PRIMASK	0xf
     58   1.1     matt #define IPL_EE		0x10	/* enable external interrupts on splx */
     59   1.1     matt 
     60   1.1     matt /* Interrupt sharing types. */
     61   1.1     matt #define	IST_NONE	0	/* none */
     62   1.1     matt #define	IST_PULSE	1	/* pulsed */
     63   1.1     matt #define	IST_EDGE	2	/* edge-triggered */
     64   1.1     matt #define	IST_LEVEL	3	/* level-triggered */
     65   1.1     matt #define	IST_SOFT	4	/* software-triggered */
     66   1.1     matt #define	IST_CLOCK	5	/* exclusive for clock */
     67   1.1     matt #define	NIST		6
     68   1.1     matt 
     69   1.1     matt #if !defined(_LOCORE) && defined(_KERNEL)
     70   1.6     matt 
     71   1.6     matt #define	CLKF_BASEPRI(frame)	((frame)->pri == IPL_NONE)
     72   1.1     matt 
     73   1.1     matt /*
     74   1.1     matt  * we support 128 IRQs:
     75   1.1     matt  *	96 (ICU_LEN) hard interrupt IRQs:
     76   1.1     matt  *		- 64 Main Cause IRQs,
     77   1.1     matt  *		- 32 GPP IRQs,
     78   1.1     matt  *	and 32 softint IRQs
     79   1.1     matt  */
     80   1.1     matt #define ICU_LEN		96	/* number of  HW IRQs */
     81   1.1     matt #define IRQ_GPP_BASE	64	/* base of GPP IRQs */
     82   1.1     matt #define IRQ_GPP_SUM	(32+24) /* GPP[7..0] interrupt */	/* XXX */
     83   1.1     matt #define NIRQ		128	/* total # of HW IRQs */
     84   1.1     matt 
     85   1.1     matt #define IMASK_ICU_LO	0
     86   1.1     matt #define IMASK_ICU_HI	1
     87   1.1     matt #define IMASK_ICU_GPP	2
     88   1.1     matt #define IMASK_SOFTINT	3
     89   1.1     matt #define IMASK_WORDSHIFT 5	/* log2(32) */
     90   1.1     matt #define IMASK_BITMASK	~((~0) << IMASK_WORDSHIFT)
     91   1.1     matt 
     92   1.1     matt #define IRQ_IS_GPP(irq) ((irq >= IRQ_GPP_BASE) && (irq < ICU_LEN))
     93   1.1     matt 
     94   1.1     matt /*
     95   1.1     matt  * interrupt mask bit vector
     96   1.1     matt  */
     97   1.5     matt typedef struct {
     98   1.5     matt 	u_int32_t bits[4];
     99   1.5     matt } imask_t __attribute__ ((aligned(16)));
    100   1.5     matt 
    101   1.9    perry static inline void imask_zero(imask_t *);
    102   1.9    perry static inline void imask_zero_v(volatile imask_t *);
    103   1.9    perry static inline void imask_dup_v(imask_t *, const volatile imask_t *);
    104   1.9    perry static inline void imask_and(imask_t *, const imask_t *);
    105   1.9    perry static inline void imask_andnot_v(volatile imask_t *, const imask_t *);
    106   1.9    perry static inline void imask_andnot_icu_vv(volatile imask_t *, const volatile imask_t *);
    107   1.9    perry static inline int imask_empty(const imask_t *);
    108   1.9    perry static inline void imask_orbit(imask_t *, int);
    109   1.9    perry static inline void imask_orbit_v(volatile imask_t *, int);
    110   1.9    perry static inline void imask_clrbit(imask_t *, int);
    111   1.9    perry static inline void imask_clrbit_v(volatile imask_t *, int);
    112   1.9    perry static inline u_int32_t imask_andbit_v(const volatile imask_t *, int);
    113   1.9    perry static inline int imask_test_v(const volatile imask_t *, const imask_t *);
    114   1.1     matt 
    115   1.9    perry static inline void
    116   1.1     matt imask_zero(imask_t *idp)
    117   1.1     matt {
    118   1.5     matt 	idp->bits[IMASK_ICU_LO]  = 0;
    119   1.5     matt 	idp->bits[IMASK_ICU_HI]  = 0;
    120   1.5     matt 	idp->bits[IMASK_ICU_GPP] = 0;
    121   1.5     matt 	idp->bits[IMASK_SOFTINT] = 0;
    122   1.1     matt }
    123   1.1     matt 
    124   1.9    perry static inline void
    125   1.1     matt imask_zero_v(volatile imask_t *idp)
    126   1.1     matt {
    127   1.5     matt 	idp->bits[IMASK_ICU_LO]  = 0;
    128   1.5     matt 	idp->bits[IMASK_ICU_HI]  = 0;
    129   1.5     matt 	idp->bits[IMASK_ICU_GPP] = 0;
    130   1.5     matt 	idp->bits[IMASK_SOFTINT] = 0;
    131   1.1     matt }
    132   1.1     matt 
    133   1.9    perry static inline void
    134   1.5     matt imask_dup_v(imask_t *idp, const volatile imask_t *isp)
    135   1.1     matt {
    136   1.5     matt 	*idp = *isp;
    137   1.1     matt }
    138   1.1     matt 
    139   1.9    perry static inline void
    140   1.5     matt imask_and(imask_t *idp, const imask_t *isp)
    141   1.1     matt {
    142   1.5     matt 	idp->bits[IMASK_ICU_LO]  &= isp->bits[IMASK_ICU_LO];
    143   1.5     matt 	idp->bits[IMASK_ICU_HI]  &= isp->bits[IMASK_ICU_HI];
    144   1.5     matt 	idp->bits[IMASK_ICU_GPP] &= isp->bits[IMASK_ICU_GPP];
    145   1.5     matt 	idp->bits[IMASK_SOFTINT] &= isp->bits[IMASK_SOFTINT];
    146   1.1     matt }
    147   1.1     matt 
    148   1.9    perry static inline void
    149   1.5     matt imask_andnot_v(volatile imask_t *idp, const imask_t *isp)
    150   1.1     matt {
    151   1.5     matt 	idp->bits[IMASK_ICU_LO]  &= ~isp->bits[IMASK_ICU_LO];
    152   1.5     matt 	idp->bits[IMASK_ICU_HI]  &= ~isp->bits[IMASK_ICU_HI];
    153   1.5     matt 	idp->bits[IMASK_ICU_GPP] &= ~isp->bits[IMASK_ICU_GPP];
    154   1.5     matt 	idp->bits[IMASK_SOFTINT] &= ~isp->bits[IMASK_SOFTINT];
    155   1.1     matt }
    156   1.1     matt 
    157   1.9    perry static inline void
    158   1.5     matt imask_andnot_icu_vv(volatile imask_t *idp, const volatile imask_t *isp)
    159   1.1     matt {
    160   1.5     matt 	idp->bits[IMASK_ICU_LO]  &= ~isp->bits[IMASK_ICU_LO];
    161   1.5     matt 	idp->bits[IMASK_ICU_HI]  &= ~isp->bits[IMASK_ICU_HI];
    162   1.5     matt 	idp->bits[IMASK_ICU_GPP] &= ~isp->bits[IMASK_ICU_GPP];
    163   1.1     matt }
    164   1.1     matt 
    165   1.9    perry static inline int
    166   1.5     matt imask_empty(const imask_t *isp)
    167   1.1     matt {
    168   1.5     matt 	return (! (isp->bits[IMASK_ICU_LO] | isp->bits[IMASK_ICU_HI] |
    169   1.5     matt 		   isp->bits[IMASK_ICU_GPP]| isp->bits[IMASK_SOFTINT]));
    170   1.1     matt }
    171   1.1     matt 
    172   1.9    perry static inline void
    173   1.1     matt imask_orbit(imask_t *idp, int bitno)
    174   1.1     matt {
    175   1.5     matt 	idp->bits[bitno>>IMASK_WORDSHIFT] |= (1 << (bitno&IMASK_BITMASK));
    176   1.1     matt }
    177   1.1     matt 
    178   1.9    perry static inline void
    179   1.1     matt imask_orbit_v(volatile imask_t *idp, int bitno)
    180   1.1     matt {
    181   1.5     matt 	idp->bits[bitno>>IMASK_WORDSHIFT] |= (1 << (bitno&IMASK_BITMASK));
    182   1.1     matt }
    183   1.1     matt 
    184   1.9    perry static inline void
    185   1.1     matt imask_clrbit(imask_t *idp, int bitno)
    186   1.1     matt {
    187   1.5     matt 	idp->bits[bitno>>IMASK_WORDSHIFT] &= ~(1 << (bitno&IMASK_BITMASK));
    188   1.1     matt }
    189   1.1     matt 
    190   1.9    perry static inline void
    191   1.1     matt imask_clrbit_v(volatile imask_t *idp, int bitno)
    192   1.1     matt {
    193   1.5     matt 	idp->bits[bitno>>IMASK_WORDSHIFT] &= ~(1 << (bitno&IMASK_BITMASK));
    194   1.1     matt }
    195   1.1     matt 
    196   1.9    perry static inline u_int32_t
    197   1.5     matt imask_andbit_v(const volatile imask_t *idp, int bitno)
    198   1.1     matt {
    199   1.5     matt 	return idp->bits[bitno>>IMASK_WORDSHIFT] & (1 << (bitno&IMASK_BITMASK));
    200   1.1     matt }
    201   1.1     matt 
    202   1.9    perry static inline int
    203   1.5     matt imask_test_v(const volatile imask_t *idp, const imask_t *isp)
    204   1.1     matt {
    205   1.5     matt 	return ((idp->bits[IMASK_ICU_LO]  & isp->bits[IMASK_ICU_LO]) ||
    206   1.5     matt 		(idp->bits[IMASK_ICU_HI]  & isp->bits[IMASK_ICU_HI]) ||
    207   1.5     matt 		(idp->bits[IMASK_ICU_GPP] & isp->bits[IMASK_ICU_GPP])||
    208   1.5     matt 		(idp->bits[IMASK_SOFTINT] & isp->bits[IMASK_SOFTINT]));
    209   1.1     matt }
    210   1.1     matt 
    211   1.1     matt #ifdef EXT_INTR_STATS
    212   1.1     matt /*
    213   1.1     matt  * ISR timing stats
    214   1.1     matt  */
    215   1.1     matt 
    216   1.1     matt typedef struct ext_intr_hist {
    217   1.1     matt 	u_int64_t tcause;
    218   1.1     matt 	u_int64_t tcommit;
    219   1.1     matt 	u_int64_t tstart;
    220   1.1     matt 	u_int64_t tfin;
    221   1.1     matt } ext_intr_hist_t __attribute__ ((aligned(32)));
    222   1.1     matt 
    223   1.1     matt typedef struct ext_intr_stat {
    224   1.1     matt         struct ext_intr_hist *histp;
    225   1.1     matt         unsigned int histix;
    226   1.1     matt         u_int64_t cnt;
    227   1.1     matt         u_int64_t sum;
    228   1.1     matt         u_int64_t min;
    229   1.1     matt         u_int64_t max;
    230   1.1     matt         u_int64_t pnd;
    231   1.1     matt         u_int64_t borrowed;
    232   1.1     matt         struct ext_intr_stat *save;
    233   1.1     matt 	unsigned long preempted[NIRQ];	/* XXX */
    234   1.1     matt } ext_intr_stat_t  __attribute__ ((aligned(32)));
    235   1.1     matt 
    236   1.1     matt extern int intr_depth_max;
    237   1.1     matt extern int ext_intr_stats_enb;
    238   1.1     matt extern ext_intr_stat_t ext_intr_stats[];
    239   1.1     matt extern ext_intr_stat_t *ext_intr_statp;
    240   1.1     matt 
    241   1.1     matt extern void ext_intr_stats_init __P((void));
    242   1.1     matt extern void ext_intr_stats_cause
    243   1.1     matt 	__P((u_int32_t, u_int32_t, u_int32_t, u_int32_t));
    244   1.1     matt extern void ext_intr_stats_pend
    245   1.1     matt 	__P((u_int32_t, u_int32_t, u_int32_t, u_int32_t));
    246   1.1     matt extern void ext_intr_stats_commit __P((imask_t *));
    247   1.1     matt extern void ext_intr_stats_commit_m __P((imask_t *));
    248   1.1     matt extern void ext_intr_stats_commit_irq __P((u_int));
    249   1.1     matt extern u_int64_t ext_intr_stats_pre  __P((int));
    250   1.1     matt extern void ext_intr_stats_post __P((int, u_int64_t));
    251   1.1     matt 
    252   1.1     matt #define EXT_INTR_STATS_INIT() ext_intr_stats_init()
    253   1.1     matt #define EXT_INTR_STATS_CAUSE(l, h, g, s)  ext_intr_stats_cause(l, h, g, s)
    254   1.1     matt #define EXT_INTR_STATS_COMMIT_M(m) ext_intr_stats_commit_m(m)
    255   1.1     matt #define EXT_INTR_STATS_COMMIT_IRQ(i) ext_intr_stats_commit_irq(i)
    256   1.1     matt #define EXT_INTR_STATS_DECL(t) u_int64_t t
    257   1.1     matt #define EXT_INTR_STATS_PRE(i, t) t = ext_intr_stats_pre(i)
    258   1.1     matt #define EXT_INTR_STATS_POST(i, t) ext_intr_stats_post(i, t)
    259   1.1     matt #define EXT_INTR_STATS_PEND(l, h, g, s) ext_intr_stats_pend(l, h, g, s)
    260   1.1     matt #define EXT_INTR_STATS_PEND_IRQ(i) ext_intr_stats[i].pnd++
    261   1.1     matt #define EXT_INTR_STATS_DEPTH() \
    262   1.1     matt 		 intr_depth_max = (intr_depth > intr_depth_max) ? \
    263   1.1     matt 			 intr_depth : intr_depth_max
    264   1.1     matt 
    265   1.1     matt #else /* EXT_INTR_STATS */
    266   1.1     matt 
    267   1.1     matt #define EXT_INTR_STATS_INIT()
    268   1.1     matt #define EXT_INTR_STATS_CAUSE(l, h, g, s)
    269   1.1     matt #define EXT_INTR_STATS_COMMIT_M(m)
    270   1.1     matt #define EXT_INTR_STATS_COMMIT_IRQ(i)
    271   1.1     matt #define EXT_INTR_STATS_DECL(t)
    272   1.1     matt #define EXT_INTR_STATS_PRE(irq, t)
    273   1.1     matt #define EXT_INTR_STATS_POST(i, t)
    274   1.1     matt #define EXT_INTR_STATS_PEND(l, h, g, s)
    275   1.1     matt #define EXT_INTR_STATS_PEND_IRQ(i)
    276   1.1     matt #define EXT_INTR_STATS_DEPTH()
    277   1.1     matt 
    278   1.1     matt #endif	/* EXT_INTR_STATS */
    279   1.1     matt 
    280   1.1     matt 
    281   1.1     matt #ifdef SPL_STATS
    282   1.1     matt typedef struct spl_hist {
    283   1.1     matt 	int level;
    284   1.1     matt 	void *addr;
    285   1.1     matt 	u_int64_t time;
    286   1.1     matt } spl_hist_t;
    287   1.1     matt 
    288   1.1     matt extern  void spl_stats_init();
    289   1.1     matt extern  void spl_stats_log();
    290   1.1     matt extern unsigned int spl_stats_enb;
    291   1.1     matt 
    292   1.1     matt #define SPL_STATS_INIT()	spl_stats_init()
    293   1.1     matt #define SPL_STATS_LOG(ipl, cc)	spl_stats_log((ipl), (cc))
    294   1.1     matt 
    295   1.1     matt #else
    296   1.1     matt 
    297   1.1     matt #define SPL_STATS_INIT()
    298   1.1     matt #define SPL_STATS_LOG(ipl, cc)
    299   1.1     matt 
    300   1.1     matt #endif	/* SPL_STATS */
    301   1.1     matt 
    302   1.1     matt 
    303   1.1     matt void intr_dispatch __P((void));
    304   1.1     matt #ifdef SPL_INLINE
    305   1.9    perry static inline int splraise __P((int));
    306   1.9    perry static inline int spllower __P((int));
    307   1.9    perry static inline void splx __P((int));
    308   1.1     matt #else
    309   1.1     matt extern int splraise __P((int));
    310   1.1     matt extern int spllower __P((int));
    311   1.1     matt extern void splx __P((int));
    312   1.1     matt #endif
    313   1.1     matt 
    314   1.1     matt extern volatile int tickspending;
    315   1.1     matt 
    316   1.1     matt extern volatile imask_t ipending;
    317   1.1     matt extern imask_t imask[];
    318   1.1     matt 
    319   1.1     matt /*
    320   1.1     matt  * inlines for manipulating PSL_EE
    321   1.1     matt  */
    322   1.9    perry static inline void
    323   1.1     matt extintr_restore(register_t omsr)
    324   1.1     matt {
    325   1.9    perry 	__asm volatile ("sync; mtmsr %0;" :: "r"(omsr));
    326   1.1     matt }
    327   1.1     matt 
    328   1.9    perry static inline register_t
    329   1.1     matt extintr_enable(void)
    330   1.1     matt {
    331   1.1     matt 	register_t omsr;
    332   1.1     matt 
    333   1.9    perry 	__asm volatile("sync;");
    334   1.9    perry 	__asm volatile("mfmsr %0;" : "=r"(omsr));
    335   1.9    perry 	__asm volatile("mtmsr %0;" :: "r"(omsr | PSL_EE));
    336   1.1     matt 
    337   1.1     matt 	return omsr;
    338   1.1     matt }
    339   1.1     matt 
    340   1.9    perry static inline register_t
    341   1.1     matt extintr_disable(void)
    342   1.1     matt {
    343   1.1     matt 	register_t omsr;
    344   1.1     matt 
    345   1.9    perry 	__asm volatile("mfmsr %0;" : "=r"(omsr));
    346   1.9    perry 	__asm volatile("mtmsr %0;" :: "r"(omsr & ~PSL_EE));
    347   1.9    perry 	__asm volatile("isync;");
    348   1.1     matt 
    349   1.1     matt 	return omsr;
    350   1.1     matt }
    351   1.1     matt 
    352   1.1     matt #ifdef SPL_INLINE
    353   1.9    perry static inline int
    354   1.1     matt splraise(int ncpl)
    355   1.1     matt {
    356   1.1     matt 	int ocpl;
    357   1.1     matt 	register_t omsr;
    358   1.1     matt 
    359   1.1     matt 	omsr = extintr_disable();
    360   1.1     matt 	ocpl = cpl;
    361   1.1     matt         if (ncpl > cpl) {
    362   1.1     matt 		SPL_STATS_LOG(ncpl, 0);
    363   1.1     matt                 cpl = ncpl;
    364   1.1     matt 		if ((ncpl == IPL_HIGH) && ((omsr & PSL_EE) != 0)) {
    365   1.1     matt 			/* leave external interrupts disabled */
    366   1.1     matt 			return (ocpl | IPL_EE);
    367   1.1     matt 		}
    368   1.1     matt 	}
    369   1.1     matt         extintr_restore(omsr);
    370   1.1     matt         return (ocpl);
    371   1.1     matt }
    372   1.1     matt 
    373   1.9    perry static inline void
    374   1.1     matt splx(int xcpl)
    375   1.1     matt {
    376   1.1     matt 	imask_t *ncplp;
    377   1.1     matt 	register_t omsr;
    378   1.1     matt 	int ncpl = xcpl & IPL_PRIMASK;
    379   1.1     matt 
    380   1.1     matt 	ncplp = &imask[ncpl];
    381   1.1     matt 
    382   1.1     matt 	omsr = extintr_disable();
    383   1.1     matt 	if (ncpl < cpl) {
    384   1.1     matt 		cpl = ncpl;
    385   1.1     matt 		SPL_STATS_LOG(ncpl, 0);
    386   1.1     matt 		if (imask_test_v(&ipending, ncplp))
    387   1.1     matt 			intr_dispatch();
    388   1.1     matt 	}
    389   1.1     matt 	if (xcpl & IPL_EE)
    390   1.1     matt 		omsr |= PSL_EE;
    391   1.1     matt 	extintr_restore(omsr);
    392   1.1     matt }
    393   1.1     matt 
    394   1.9    perry static inline int
    395   1.1     matt spllower(int ncpl)
    396   1.1     matt {
    397   1.1     matt 	int ocpl;
    398   1.1     matt 	imask_t *ncplp;
    399   1.1     matt 	register_t omsr;
    400   1.1     matt 
    401   1.1     matt 	ncpl &= IPL_PRIMASK;
    402   1.1     matt 	ncplp = &imask[ncpl];
    403   1.1     matt 
    404   1.1     matt 	omsr = extintr_disable();
    405   1.1     matt 	ocpl = cpl;
    406   1.1     matt 	cpl = ncpl;
    407   1.1     matt 	SPL_STATS_LOG(ncpl, 0);
    408   1.1     matt #ifdef EXT_INTR_STATS
    409   1.1     matt         ext_intr_statp = 0;
    410   1.1     matt #endif
    411   1.1     matt 	if (imask_test_v(&ipending, ncplp))
    412   1.1     matt 		intr_dispatch();
    413   1.1     matt 
    414   1.1     matt 	if (ncpl < IPL_HIGH)
    415   1.1     matt 		omsr |= PSL_EE;
    416   1.1     matt 	extintr_restore(omsr);
    417   1.1     matt 
    418   1.1     matt 	return (ocpl);
    419   1.1     matt }
    420   1.1     matt #endif	/* SPL_INLINE */
    421   1.1     matt 
    422   1.1     matt 
    423   1.1     matt /*
    424   1.1     matt  * Soft interrupt IRQs
    425   1.1     matt  * see also intrnames[] in locore.S
    426   1.1     matt  */
    427   1.1     matt #define SIR_BASE	(NIRQ-32)
    428  1.12  garbled #define SIXBIT(ipl)	((ipl) - SIR_BASE) /* XXX rennovate later */
    429   1.1     matt #define SIR_SOFTCLOCK	(NIRQ-5)
    430  1.12  garbled #define SIR_CLOCK	SIXBIT(SIR_SOFTCLOCK) /* XXX rennovate later */
    431   1.4     matt #define SIR_SOFTNET	(NIRQ-4)
    432  1.13       ad #define SIR_SOFTBIO	(NIRQ-3)
    433   1.4     matt #define SIR_SOFTSERIAL	(NIRQ-2)
    434   1.1     matt #define SIR_HWCLOCK	(NIRQ-1)
    435  1.12  garbled #define SPL_CLOCK	SIXBIT(SIR_HWCLOCK) /* XXX rennovate later */
    436   1.4     matt #define SIR_RES		~(SIBIT(SIR_SOFTCLOCK)|\
    437   1.4     matt 			  SIBIT(SIR_SOFTNET)|\
    438  1.13       ad 			  SIBIT(SIR_SOFTBIO)|\
    439   1.4     matt 			  SIBIT(SIR_SOFTSERIAL)|\
    440   1.4     matt 			  SIBIT(SIR_HWCLOCK))
    441   1.1     matt 
    442   1.7     matt struct intrhand;
    443   1.4     matt 
    444   1.1     matt /*
    445   1.1     matt  * Miscellaneous
    446   1.1     matt  */
    447   1.1     matt #define	spl0()		spllower(IPL_NONE)
    448   1.1     matt 
    449  1.11     yamt typedef int ipl_t;
    450  1.11     yamt typedef struct {
    451  1.11     yamt 	ipl_t _ipl;
    452  1.11     yamt } ipl_cookie_t;
    453  1.11     yamt 
    454  1.11     yamt static inline ipl_cookie_t
    455  1.11     yamt makeiplcookie(ipl_t ipl)
    456  1.11     yamt {
    457  1.11     yamt 
    458  1.11     yamt 	return (ipl_cookie_t){._ipl = ipl};
    459  1.11     yamt }
    460  1.11     yamt 
    461  1.11     yamt static inline int
    462  1.11     yamt splraiseipl(ipl_cookie_t icookie)
    463  1.11     yamt {
    464  1.11     yamt 
    465  1.11     yamt 	return splraise(icookie._ipl);
    466  1.11     yamt }
    467   1.8     yamt 
    468   1.8     yamt #include <sys/spl.h>
    469   1.8     yamt 
    470   1.1     matt #define SIBIT(ipl)	(1 << ((ipl) - SIR_BASE))
    471   1.1     matt 
    472   1.1     matt void	*intr_establish(int, int, int, int (*)(void *), void *);
    473   1.1     matt void	intr_disestablish(void *);
    474   1.1     matt void	init_interrupt(void);
    475   1.1     matt const char * intr_typename(int);
    476   1.1     matt const char * intr_string(int);
    477   1.1     matt const struct evcnt * intr_evcnt(int);
    478   1.1     matt void	ext_intr(struct intrframe *);
    479   1.1     matt 
    480  1.12  garbled /* the following are needed to compile until this port is properly
    481  1.12  garbled  * converted to ppcoea-rennovation.
    482  1.12  garbled  */
    483  1.12  garbled void genppc_cpu_configure(void);
    484  1.12  garbled 
    485   1.1     matt void	strayintr(int);
    486   1.2     matt 
    487   1.1     matt /*
    488   1.1     matt  * defines for indexing intrcnt
    489   1.1     matt  */
    490   1.1     matt #define CNT_IRQ0	0
    491   1.1     matt #define CNT_CLOCK	SIR_HWCLOCK
    492   1.1     matt #define CNT_SOFTCLOCK	SIR_SOFTCLOCK
    493   1.1     matt #define CNT_SOFTNET	SIR_NET
    494   1.1     matt #define CNT_SOFTSERIAL	SIR_SOFTSERIAL
    495  1.13       ad #define CNT_SOFTBIO	SIR_BIO
    496   1.1     matt 
    497   1.1     matt #endif /* !_LOCORE */
    498   1.1     matt 
    499   1.1     matt #endif /* _MVPPPC_INTR_H_ */
    500