Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.11.2.1
      1  1.11.2.1  thorpej /*	$NetBSD: intr.h,v 1.11.2.1 2002/01/10 19:43:10 thorpej Exp $	*/
      2       1.1  thorpej 
      3       1.1  thorpej /*-
      4       1.6  thorpej  * Copyright (c) 1996, 1997, 1999 The NetBSD Foundation, Inc.
      5       1.1  thorpej  * All rights reserved.
      6       1.1  thorpej  *
      7       1.1  thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8       1.1  thorpej  * by Jason R. Thorpe.
      9       1.1  thorpej  *
     10       1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     11       1.1  thorpej  * modification, are permitted provided that the following conditions
     12       1.1  thorpej  * are met:
     13       1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     14       1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     15       1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16       1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     17       1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     18       1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     19       1.1  thorpej  *    must display the following acknowledgement:
     20       1.1  thorpej  *        This product includes software developed by the NetBSD
     21       1.1  thorpej  *        Foundation, Inc. and its contributors.
     22       1.1  thorpej  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.1  thorpej  *    contributors may be used to endorse or promote products derived
     24       1.1  thorpej  *    from this software without specific prior written permission.
     25       1.1  thorpej  *
     26       1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.1  thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.3      jtc  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.3      jtc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     37       1.1  thorpej  */
     38       1.1  thorpej 
     39       1.1  thorpej #ifndef _HP300_INTR_H_
     40       1.1  thorpej #define	_HP300_INTR_H_
     41       1.1  thorpej 
     42  1.11.2.1  thorpej #include <sys/device.h>
     43       1.1  thorpej #include <sys/queue.h>
     44  1.11.2.1  thorpej #include <machine/psl.h>
     45       1.1  thorpej 
     46       1.1  thorpej /*
     47       1.1  thorpej  * Interrupt "levels".  These are a more abstract representation
     48       1.1  thorpej  * of interrupt levels, and do not have the same meaning as m68k
     49       1.1  thorpej  * CPU interrupt levels.  They serve two purposes:
     50       1.1  thorpej  *
     51       1.1  thorpej  *	- properly order ISRs in the list for that CPU ipl
     52       1.1  thorpej  *	- compute CPU PSL values for the spl*() calls.
     53       1.1  thorpej  */
     54       1.1  thorpej #define	IPL_NONE	0	/* disable only this interrupt */
     55       1.1  thorpej #define	IPL_BIO		1	/* disable block I/O interrupts */
     56       1.1  thorpej #define	IPL_NET		2	/* disable network interrupts */
     57       1.1  thorpej #define	IPL_TTY		3	/* disable terminal interrupts */
     58       1.1  thorpej #define	IPL_TTYNOBUF	4	/* IPL_TTY + higher ISR priority */
     59       1.1  thorpej #define	IPL_CLOCK	5	/* disable clock interrupts */
     60       1.1  thorpej #define	IPL_HIGH	6	/* disable all interrupts */
     61       1.1  thorpej 
     62  1.11.2.1  thorpej /* Copied from alpha/include/intr.h */
     63  1.11.2.1  thorpej #define	IPL_SOFTSERIAL	0	/* serial software interrupts */
     64  1.11.2.1  thorpej #define	IPL_SOFTNET	1	/* network software interrupts */
     65  1.11.2.1  thorpej #define	IPL_SOFTCLOCK	2	/* clock software interrupts */
     66  1.11.2.1  thorpej #define	IPL_SOFT	3	/* other software interrupts */
     67  1.11.2.1  thorpej #define	IPL_NSOFT	4
     68  1.11.2.1  thorpej 
     69  1.11.2.1  thorpej #define	IPL_SOFTNAMES {							\
     70  1.11.2.1  thorpej 	"serial",							\
     71  1.11.2.1  thorpej 	"net",								\
     72  1.11.2.1  thorpej 	"clock",							\
     73  1.11.2.1  thorpej 	"misc",								\
     74  1.11.2.1  thorpej }
     75  1.11.2.1  thorpej 
     76       1.1  thorpej /*
     77       1.1  thorpej  * Convert PSL values to CPU IPLs and vice-versa.
     78       1.1  thorpej  */
     79       1.1  thorpej #define	PSLTOIPL(x)	(((x) >> 8) & 0xf)
     80       1.1  thorpej #define	IPLTOPSL(x)	((((x) & 0xf) << 8) | PSL_S)
     81       1.1  thorpej 
     82       1.1  thorpej #ifdef _KERNEL
     83       1.1  thorpej /*
     84       1.6  thorpej  * This array contains the appropriate PSL_S|PSL_IPL? values
     85       1.4   kleink  * to raise interrupt priority to the requested level.
     86       1.1  thorpej  */
     87       1.6  thorpej extern unsigned short hp300_ipls[];
     88       1.6  thorpej 
     89       1.6  thorpej #define	HP300_IPL_SOFT		0
     90       1.6  thorpej #define	HP300_IPL_BIO		1
     91       1.6  thorpej #define	HP300_IPL_NET		2
     92       1.6  thorpej #define	HP300_IPL_TTY		3
     93  1.11.2.1  thorpej #define	HP300_IPL_VM		4
     94       1.6  thorpej #define	HP300_IPL_CLOCK		5
     95       1.6  thorpej #define	HP300_IPL_HIGH		6
     96       1.6  thorpej #define	HP300_NIPLS		7
     97       1.1  thorpej 
     98       1.1  thorpej /* These spl calls are _not_ to be used by machine-independent code. */
     99       1.7  thorpej #define	splhil()	splraise1()
    100       1.1  thorpej #define	splkbd()	splhil()
    101       1.1  thorpej 
    102       1.1  thorpej /* These spl calls are used by machine-independent code. */
    103  1.11.2.1  thorpej /* spl0 requires checking for software interrupts */
    104       1.7  thorpej #define	spllowersoftclock() spl1()
    105       1.7  thorpej #define	splsoft()	splraise1()
    106       1.7  thorpej #define	splsoftclock()	splsoft()
    107       1.7  thorpej #define	splsoftnet()	splsoft()
    108  1.11.2.1  thorpej #define splsoftserial	splsoft()
    109       1.6  thorpej #define	splbio()	_splraise(hp300_ipls[HP300_IPL_BIO])
    110       1.6  thorpej #define	splnet()	_splraise(hp300_ipls[HP300_IPL_NET])
    111       1.6  thorpej #define	spltty()	_splraise(hp300_ipls[HP300_IPL_TTY])
    112  1.11.2.1  thorpej #define	splvm()		_splraise(hp300_ipls[HP300_IPL_VM])
    113       1.1  thorpej #define	splclock()	spl6()
    114       1.6  thorpej #define	splstatclock()	splclock()
    115       1.1  thorpej #define	splhigh()	spl7()
    116       1.8  thorpej #define	splsched()	spl7()
    117       1.9  thorpej #define	spllock()	spl7()
    118       1.1  thorpej 
    119       1.1  thorpej /* watch out for side effects */
    120       1.1  thorpej #define	splx(s)		((s) & PSL_IPL ? _spl((s)) : spl0())
    121       1.1  thorpej 
    122  1.11.2.1  thorpej struct hp300_intrhand {
    123  1.11.2.1  thorpej 	LIST_ENTRY(hp300_intrhand) ih_q;
    124  1.11.2.1  thorpej 	int (*ih_fn)(void *);
    125  1.11.2.1  thorpej 	void *ih_arg;
    126  1.11.2.1  thorpej 	int ih_ipl;
    127  1.11.2.1  thorpej 	int ih_priority;
    128  1.11.2.1  thorpej };
    129  1.11.2.1  thorpej 
    130  1.11.2.1  thorpej struct hp300_intr {
    131  1.11.2.1  thorpej 	LIST_HEAD(, hp300_intrhand) hi_q;
    132  1.11.2.1  thorpej 	struct evcnt hi_evcnt;
    133  1.11.2.1  thorpej };
    134  1.11.2.1  thorpej 
    135       1.1  thorpej /*
    136  1.11.2.1  thorpej  * Software Interrupts.
    137       1.1  thorpej  */
    138       1.1  thorpej 
    139  1.11.2.1  thorpej struct hp300_soft_intrhand {
    140  1.11.2.1  thorpej 	LIST_ENTRY(hp300_soft_intrhand) sih_q;
    141  1.11.2.1  thorpej 	struct hp300_soft_intr *sih_intrhead;
    142  1.11.2.1  thorpej 	void (*sih_fn)(void *);
    143  1.11.2.1  thorpej 	void *sih_arg;
    144  1.11.2.1  thorpej 	volatile int sih_pending;
    145  1.11.2.1  thorpej };
    146       1.1  thorpej 
    147  1.11.2.1  thorpej struct hp300_soft_intr {
    148  1.11.2.1  thorpej 	LIST_HEAD(, hp300_soft_intrhand) hsi_q;
    149  1.11.2.1  thorpej 	struct evcnt hsi_evcnt;
    150  1.11.2.1  thorpej 	uint8_t hsi_ipl;
    151  1.11.2.1  thorpej };
    152  1.11.2.1  thorpej 
    153  1.11.2.1  thorpej void	*softintr_establish(int, void (*)(void *), void *);
    154  1.11.2.1  thorpej void	softintr_disestablish(void *);
    155  1.11.2.1  thorpej void	softintr_init(void);
    156  1.11.2.1  thorpej void	softintr_dispatch(void);
    157       1.1  thorpej 
    158  1.11.2.1  thorpej extern volatile u_int8_t ssir;
    159  1.11.2.1  thorpej #define setsoft(x)	ssir |= (1<<(x))
    160  1.11.2.1  thorpej 
    161  1.11.2.1  thorpej #define softintr_schedule(arg)				\
    162  1.11.2.1  thorpej do {							\
    163  1.11.2.1  thorpej 	struct hp300_soft_intrhand *__sih = (arg);	\
    164  1.11.2.1  thorpej 	__sih->sih_pending = 1;				\
    165  1.11.2.1  thorpej 	setsoft(__sih->sih_intrhead->hsi_ipl);		\
    166  1.11.2.1  thorpej } while (0)
    167  1.11.2.1  thorpej 
    168  1.11.2.1  thorpej /* XXX For legacy software interrupts */
    169  1.11.2.1  thorpej extern struct hp300_soft_intrhand *softnet_intrhand;
    170  1.11.2.1  thorpej #define setsoftnet()	softintr_schedule(softnet_intrhand)
    171       1.1  thorpej 
    172       1.1  thorpej /* locore.s */
    173  1.11.2.1  thorpej int	spl0(void);
    174       1.1  thorpej 
    175       1.1  thorpej /* intr.c */
    176  1.11.2.1  thorpej void	intr_init(void);
    177  1.11.2.1  thorpej void	*intr_establish(int (*)(void *), void *, int, int);
    178  1.11.2.1  thorpej void	intr_disestablish(void *);
    179  1.11.2.1  thorpej void	intr_dispatch(int);
    180  1.11.2.1  thorpej void	intr_printlevels(void);
    181  1.11.2.1  thorpej void	netintr(void);
    182  1.11.2.1  thorpej 
    183       1.1  thorpej #endif /* _KERNEL */
    184       1.1  thorpej 
    185       1.1  thorpej #endif /* _HP300_INTR_H_ */
    186