Home | History | Annotate | Line # | Download | only in include
intr.h revision 1.5
      1  1.5      matt /* $NetBSD: intr.h,v 1.5 2011/05/02 00:17:35 matt Exp $ */
      2  1.4      matt /*-
      3  1.4      matt  * Copyright (c) 2009, 2010 The NetBSD Foundation, Inc.
      4  1.4      matt  * All rights reserved.
      5  1.4      matt  *
      6  1.4      matt  * This code is derived from software contributed to The NetBSD Foundation
      7  1.4      matt  * by Matt Thomas <matt (at) 3am-software.com>.
      8  1.1  jonathan  *
      9  1.1  jonathan  * Redistribution and use in source and binary forms, with or without
     10  1.1  jonathan  * modification, are permitted provided that the following conditions
     11  1.1  jonathan  * are met:
     12  1.1  jonathan  * 1. Redistributions of source code must retain the above copyright
     13  1.1  jonathan  *    notice, this list of conditions and the following disclaimer.
     14  1.1  jonathan  * 2. Redistributions in binary form must reproduce the above copyright
     15  1.1  jonathan  *    notice, this list of conditions and the following disclaimer in the
     16  1.1  jonathan  *    documentation and/or other materials provided with the distribution.
     17  1.1  jonathan  *
     18  1.4      matt  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     19  1.4      matt  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     20  1.4      matt  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     21  1.4      matt  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     22  1.4      matt  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     23  1.4      matt  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     24  1.4      matt  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     25  1.4      matt  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     26  1.4      matt  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     27  1.4      matt  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     28  1.4      matt  * POSSIBILITY OF SUCH DAMAGE.
     29  1.4      matt  */
     30  1.4      matt 
     31  1.4      matt #ifndef _MIPS_INTR_H_
     32  1.4      matt #define	_MIPS_INTR_H_
     33  1.4      matt 
     34  1.4      matt #ifdef _KERNEL_OPT
     35  1.4      matt #include "opt_multiprocessor.h"
     36  1.4      matt #endif
     37  1.4      matt 
     38  1.4      matt /*
     39  1.4      matt  * This is a common <machine/intr.h> for all MIPS platforms.
     40  1.1  jonathan  */
     41  1.1  jonathan 
     42  1.4      matt #define	IPL_NONE	0
     43  1.4      matt #define	IPL_SOFTCLOCK	(IPL_NONE+1)
     44  1.4      matt #define	IPL_SOFTBIO	(IPL_SOFTCLOCK)	/* shares SWINT with softclock */
     45  1.4      matt #define	IPL_SOFTNET	(IPL_SOFTBIO+1)
     46  1.4      matt #define	IPL_SOFTSERIAL	(IPL_SOFTNET)	/* shares SWINT with softnet */
     47  1.4      matt #define	IPL_VM		(IPL_SOFTSERIAL+1)
     48  1.4      matt #define	IPL_SCHED	(IPL_VM+1)
     49  1.4      matt #define	IPL_DDB		(IPL_SCHED+1)
     50  1.4      matt #define	IPL_HIGH	(IPL_DDB+1)
     51  1.4      matt 
     52  1.4      matt #define	_IPL_N		(IPL_HIGH+1)
     53  1.4      matt #define	_IPL_NAMES(pfx)	{ pfx"none", pfx"softclock/bio", pfx"softnet/serial", \
     54  1.4      matt 			  pfx"vm", pfx"sched", pfx"ddb", pfx"high" }
     55  1.4      matt 
     56  1.4      matt #define	IST_UNUSABLE	-1		/* interrupt cannot be used */
     57  1.4      matt #define	IST_NONE	0		/* none (dummy) */
     58  1.4      matt #define	IST_PULSE	1		/* pulsed */
     59  1.4      matt #define	IST_EDGE	2		/* edge-triggered */
     60  1.4      matt #define	IST_LEVEL	3		/* level-triggered */
     61  1.4      matt #define	IST_LEVEL_HIGH	4		/* level triggered, active high */
     62  1.4      matt #define	IST_LEVEL_LOW	5		/* level triggered, active low */
     63  1.4      matt 
     64  1.4      matt #define	IPI_NOP		0		/* do nothing, interrupt only */
     65  1.4      matt #define	IPI_AST		1		/* force ast */
     66  1.4      matt #define	IPI_SHOOTDOWN	2		/* do a tlb shootdown */
     67  1.4      matt #define	IPI_SYNCICACHE	3		/* sync icache for pages */
     68  1.4      matt #define	IPI_KPREEMPT	4		/* schedule a kernel preemption */
     69  1.4      matt #define	IPI_SUSPEND	5		/* DDB suspend signaling */
     70  1.4      matt #define	IPI_HALT	6		/* halt cpu */
     71  1.5      matt #define	IPI_XCALL	7		/* xcall */
     72  1.5      matt #define	NIPIS		8
     73  1.4      matt 
     74  1.4      matt #ifdef __INTR_PRIVATE
     75  1.4      matt struct splsw {
     76  1.4      matt 	int	(*splsw_splhigh)(void);
     77  1.4      matt 	int	(*splsw_splsched)(void);
     78  1.4      matt 	int	(*splsw_splvm)(void);
     79  1.4      matt 	int	(*splsw_splsoftserial)(void);
     80  1.4      matt 	int	(*splsw_splsoftnet)(void);
     81  1.4      matt 	int	(*splsw_splsoftbio)(void);
     82  1.4      matt 	int	(*splsw_splsoftclock)(void);
     83  1.4      matt 	int	(*splsw_splraise)(int);
     84  1.4      matt 	void	(*splsw_spl0)(void);
     85  1.4      matt 	void	(*splsw_splx)(int);
     86  1.4      matt 	int	(*splsw_splhigh_noprof)(void);
     87  1.4      matt 	void	(*splsw_splx_noprof)(int);
     88  1.4      matt 	void	(*splsw__setsoftintr)(uint32_t);
     89  1.4      matt 	void	(*splsw__clrsoftintr)(uint32_t);
     90  1.4      matt 	int	(*splsw_splintr)(uint32_t *);
     91  1.4      matt 	void	(*splsw_splcheck)(void);
     92  1.4      matt };
     93  1.4      matt 
     94  1.4      matt struct ipl_sr_map {
     95  1.4      matt 	uint32_t sr_bits[_IPL_N];
     96  1.4      matt };
     97  1.4      matt #else
     98  1.4      matt struct splsw;
     99  1.4      matt #endif /* __INTR_PRIVATE */
    100  1.4      matt 
    101  1.4      matt typedef int ipl_t;
    102  1.4      matt typedef struct {
    103  1.4      matt         ipl_t _spl;
    104  1.4      matt } ipl_cookie_t;
    105  1.4      matt 
    106  1.4      matt #ifdef _KERNEL
    107  1.4      matt 
    108  1.4      matt #if defined(MULTIPROCESSOR) && defined(__HAVE_FAST_SOFTINTS)
    109  1.4      matt #define __HAVE_PREEMPTION	1
    110  1.4      matt #define SOFTINT_KPREEMPT	(SOFTINT_COUNT+0)
    111  1.4      matt #endif
    112  1.4      matt 
    113  1.4      matt #ifdef __INTR_PRIVATE
    114  1.4      matt extern	struct splsw	mips_splsw;
    115  1.4      matt extern	struct ipl_sr_map ipl_sr_map;
    116  1.4      matt #endif /* __INTR_PRIVATE */
    117  1.4      matt 
    118  1.4      matt int	splhigh(void);
    119  1.4      matt int	splhigh_noprof(void);
    120  1.4      matt int	splsched(void);
    121  1.4      matt int	splvm(void);
    122  1.4      matt int	splsoftserial(void);
    123  1.4      matt int	splsoftnet(void);
    124  1.4      matt int	splsoftbio(void);
    125  1.4      matt int	splsoftclock(void);
    126  1.4      matt int	splraise(int);
    127  1.4      matt void	splx(int);
    128  1.4      matt void	splx_noprof(int);
    129  1.4      matt void	spl0(void);
    130  1.4      matt int	splintr(uint32_t *);
    131  1.4      matt void	_setsoftintr(uint32_t);
    132  1.4      matt void	_clrsoftintr(uint32_t);
    133  1.4      matt 
    134  1.4      matt struct cpu_info;
    135  1.4      matt 
    136  1.4      matt void	ipi_init(struct cpu_info *);
    137  1.4      matt void	ipi_process(struct cpu_info *, uint64_t);
    138  1.1  jonathan 
    139  1.1  jonathan /*
    140  1.4      matt  * These make no sense *NOT* to be inlined.
    141  1.1  jonathan  */
    142  1.4      matt static inline ipl_cookie_t
    143  1.4      matt makeiplcookie(ipl_t s)
    144  1.4      matt {
    145  1.4      matt 	return (ipl_cookie_t){._spl = s};
    146  1.4      matt }
    147  1.1  jonathan 
    148  1.4      matt static inline int
    149  1.4      matt splraiseipl(ipl_cookie_t icookie)
    150  1.4      matt {
    151  1.4      matt 	return splraise(icookie._spl);
    152  1.4      matt }
    153  1.1  jonathan 
    154  1.4      matt #endif /* _KERNEL */
    155  1.4      matt #endif /* _MIPS_INTR_H_ */
    156