Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.5.6.1
      1  1.5.6.1    cherry /*	$NetBSD: intr.h,v 1.5.6.1 2011/06/23 14:19:30 cherry Exp $ */
      2      1.2   garbled 
      3      1.2   garbled /*-
      4      1.2   garbled  * Copyright (c) 2007 Michael Lorenz
      5      1.2   garbled  * All rights reserved.
      6      1.2   garbled  *
      7      1.2   garbled  * Redistribution and use in source and binary forms, with or without
      8      1.2   garbled  * modification, are permitted provided that the following conditions
      9      1.2   garbled  * are met:
     10      1.2   garbled  * 1. Redistributions of source code must retain the above copyright
     11      1.2   garbled  *    notice, this list of conditions and the following disclaimer.
     12      1.2   garbled  * 2. Redistributions in binary form must reproduce the above copyright
     13      1.2   garbled  *    notice, this list of conditions and the following disclaimer in the
     14      1.2   garbled  *    documentation and/or other materials provided with the distribution.
     15      1.2   garbled  *
     16      1.2   garbled  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17      1.2   garbled  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18      1.2   garbled  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19      1.2   garbled  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20      1.2   garbled  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21      1.2   garbled  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22      1.2   garbled  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23      1.2   garbled  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24      1.2   garbled  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25      1.2   garbled  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26      1.2   garbled  * POSSIBILITY OF SUCH DAMAGE.
     27      1.2   garbled  */
     28      1.2   garbled 
     29  1.5.6.1    cherry #ifndef _LOCORE
     30      1.2   garbled #include <sys/cdefs.h>
     31  1.5.6.1    cherry __KERNEL_RCSID(0, "$NetBSD: intr.h,v 1.5.6.1 2011/06/23 14:19:30 cherry Exp $");
     32  1.5.6.1    cherry #endif
     33      1.2   garbled 
     34      1.2   garbled #ifndef POWERPC_INTR_MACHDEP_H
     35      1.2   garbled #define POWERPC_INTR_MACHDEP_H
     36      1.2   garbled 
     37  1.5.6.1    cherry #define	__HAVE_FAST_SOFTINTS	1
     38  1.5.6.1    cherry 
     39      1.2   garbled 
     40      1.2   garbled /* Interrupt priority `levels'. */
     41      1.2   garbled #define	IPL_NONE	0	/* nothing */
     42      1.2   garbled #define	IPL_SOFTCLOCK	1	/* timeouts */
     43      1.3        ad #define	IPL_SOFTBIO	2	/* block I/O */
     44      1.3        ad #define	IPL_SOFTNET	3	/* protocol stacks */
     45      1.3        ad #define	IPL_SOFTSERIAL	4	/* serial */
     46      1.3        ad #define	IPL_VM		5	/* memory allocation */
     47      1.3        ad #define	IPL_SCHED	6
     48      1.3        ad #define	IPL_HIGH	7	/* everything */
     49      1.3        ad #define	NIPL		8
     50      1.2   garbled 
     51      1.2   garbled /* Interrupt sharing types. */
     52      1.2   garbled #define	IST_NONE	0	/* none */
     53      1.2   garbled #define	IST_PULSE	1	/* pulsed */
     54      1.2   garbled #define	IST_EDGE	2	/* edge-triggered */
     55      1.2   garbled #define	IST_LEVEL	3	/* level-triggered */
     56      1.2   garbled 
     57  1.5.6.1    cherry #if !defined(_LOCORE)
     58  1.5.6.1    cherry void *	intr_establish(int, int, int, int (*)(void *), void *);
     59  1.5.6.1    cherry void	intr_disestablish(void *);
     60  1.5.6.1    cherry const char *
     61  1.5.6.1    cherry 	intr_typename(int);
     62  1.5.6.1    cherry 
     63  1.5.6.1    cherry int	splraise(int);
     64  1.5.6.1    cherry int	spllower(int);
     65  1.5.6.1    cherry void	splx(int);
     66  1.5.6.1    cherry 
     67  1.5.6.1    cherry #if !defined(_MODULE)
     68  1.5.6.1    cherry 
     69  1.5.6.1    cherry void	genppc_cpu_configure(void);
     70  1.5.6.1    cherry 
     71      1.2   garbled /*
     72      1.2   garbled  * Interrupt handler chains.  intr_establish() inserts a handler into
     73      1.2   garbled  * the list.  The handler is called with its (single) argument.
     74      1.2   garbled  */
     75      1.2   garbled struct intrhand {
     76      1.2   garbled 	int	(*ih_fun)(void *);
     77      1.2   garbled 	void	*ih_arg;
     78      1.2   garbled 	struct	intrhand *ih_next;
     79  1.5.6.1    cherry 	int	ih_ipl;
     80  1.5.6.1    cherry 	int	ih_virq;
     81      1.2   garbled };
     82      1.2   garbled 
     83  1.5.6.1    cherry void softint_fast_dispatch(struct lwp *, int);
     84  1.5.6.1    cherry 
     85  1.5.6.1    cherry #define softint_init_md		powerpc_softint_init_md
     86  1.5.6.1    cherry #define softint_trigger		powerpc_softint_trigger
     87  1.5.6.1    cherry 
     88  1.5.6.1    cherry #ifdef __IMASK_T
     89  1.5.6.1    cherry typedef __IMASK_T imask_t;
     90  1.5.6.1    cherry #else
     91  1.5.6.1    cherry typedef uint32_t imask_t;
     92  1.5.6.1    cherry #endif
     93      1.2   garbled 
     94      1.5  kiyohara extern imask_t imask[];
     95      1.5  kiyohara 
     96  1.5.6.1    cherry #define NVIRQ		(sizeof(imask_t)*8)	/* 32 virtual IRQs */
     97  1.5.6.1    cherry #ifndef NIRQ
     98      1.5  kiyohara #define NIRQ		128	/* up to 128 HW IRQs */
     99  1.5.6.1    cherry #endif
    100      1.5  kiyohara 
    101  1.5.6.1    cherry #define HWIRQ_MAX       (NVIRQ - 1)
    102  1.5.6.1    cherry #define HWIRQ_MASK     	(~(imask_t)0 >> 1)
    103      1.5  kiyohara 
    104  1.5.6.1    cherry #define	PIC_VIRQ_TO_MASK(v)	__BIT(HWIRQ_MAX - (v))
    105  1.5.6.1    cherry #define PIC_VIRQ_MS_PENDING(p)	__builtin_clz(p)
    106      1.2   garbled 
    107  1.5.6.1    cherry #endif /* !_MODULE */
    108      1.2   garbled 
    109      1.2   garbled #define spl0()		spllower(0)
    110      1.2   garbled 
    111      1.2   garbled typedef int ipl_t;
    112      1.2   garbled typedef struct {
    113      1.2   garbled 	ipl_t _ipl;
    114      1.2   garbled } ipl_cookie_t;
    115      1.2   garbled 
    116      1.2   garbled static inline ipl_cookie_t
    117      1.2   garbled makeiplcookie(ipl_t ipl)
    118      1.2   garbled {
    119      1.2   garbled 
    120      1.2   garbled 	return (ipl_cookie_t){._ipl = ipl};
    121      1.2   garbled }
    122      1.2   garbled 
    123      1.2   garbled static inline int
    124      1.2   garbled splraiseipl(ipl_cookie_t icookie)
    125      1.2   garbled {
    126      1.2   garbled 
    127  1.5.6.1    cherry 	return splraise(icookie._ipl);
    128      1.2   garbled }
    129      1.2   garbled 
    130      1.2   garbled #include <sys/spl.h>
    131      1.2   garbled 
    132      1.2   garbled #endif /* _LOCORE */
    133      1.2   garbled 
    134      1.2   garbled #endif /* POWERPC_INTR_MACHDEP_H */
    135