Home | History | Annotate | Line # | Download | only in footbridge
footbridge_intr.h revision 1.13
      1 /* 	$NetBSD: footbridge_intr.h,v 1.13 2008/04/27 18:58:44 matt Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
      5  * All rights reserved.
      6  *
      7  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8  *
      9  * Redistribution and use in source and binary forms, with or without
     10  * modification, are permitted provided that the following conditions
     11  * are met:
     12  * 1. Redistributions of source code must retain the above copyright
     13  *    notice, this list of conditions and the following disclaimer.
     14  * 2. Redistributions in binary form must reproduce the above copyright
     15  *    notice, this list of conditions and the following disclaimer in the
     16  *    documentation and/or other materials provided with the distribution.
     17  * 3. All advertising materials mentioning features or use of this software
     18  *    must display the following acknowledgement:
     19  *	This product includes software developed for the NetBSD Project by
     20  *	Wasabi Systems, Inc.
     21  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22  *    or promote products derived from this software without specific prior
     23  *    written permission.
     24  *
     25  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35  * POSSIBILITY OF SUCH DAMAGE.
     36  */
     37 
     38 #ifndef _FOOTBRIDGE_INTR_H_
     39 #define _FOOTBRIDGE_INTR_H_
     40 
     41 #include <arm/armreg.h>
     42 
     43 #define IPL_NONE	0	/* nothing */
     44 #define IPL_SOFTCLOCK	1	/* clock soft interrupts */
     45 #define IPL_SOFTBIO	2	/* block i/o */
     46 #define IPL_SOFTNET	3	/* network software interrupts */
     47 #define IPL_SOFTSERIAL	4	/* serial software interrupts */
     48 #define IPL_VM		5	/* memory allocation */
     49 #define IPL_SCHED	6	/* clock */
     50 #define IPL_HIGH	7	/* everything */
     51 
     52 #define NIPL		8
     53 
     54 #define	IST_UNUSABLE	-1	/* interrupt cannot be used */
     55 #define	IST_NONE	0	/* none (dummy) */
     56 #define	IST_PULSE	1	/* pulsed */
     57 #define	IST_EDGE	2	/* edge-triggered */
     58 #define	IST_LEVEL	3	/* level-triggered */
     59 
     60 #define	__NEWINTR	/* enables new hooks in cpu_fork()/cpu_switch() */
     61 
     62 #define	ARM_IRQ_HANDLER	_C_LABEL(footbridge_intr_dispatch)
     63 
     64 #ifndef _LOCORE
     65 #include <arm/cpufunc.h>
     66 
     67 #include <arm/footbridge/dc21285mem.h>
     68 #include <arm/footbridge/dc21285reg.h>
     69 
     70 #define INT_SWMASK							\
     71 	((1U << IRQ_SOFTINT) | (1U << IRQ_RESERVED0) |			\
     72 	 (1U << IRQ_RESERVED1) | (1U << IRQ_RESERVED2))
     73 #define ICU_INT_HWMASK	(0xffffffff & ~(INT_SWMASK |  (1U << IRQ_RESERVED3)))
     74 
     75 /* only call this with interrupts off */
     76 static inline void __attribute__((__unused__))
     77 footbridge_set_intrmask(void)
     78 {
     79 	extern volatile uint32_t intr_enabled;
     80 	volatile uint32_t * const dc21285_armcsr_vbase =
     81 	    (volatile uint32_t *)(DC21285_ARMCSR_VBASE);
     82 
     83 	/* fetch once so we write the same number to both registers */
     84 	uint32_t tmp = intr_enabled & ICU_INT_HWMASK;
     85 
     86 	dc21285_armcsr_vbase[IRQ_ENABLE_SET>>2] = tmp;
     87 	dc21285_armcsr_vbase[IRQ_ENABLE_CLEAR>>2] = ~tmp;
     88 }
     89 
     90 static inline void __attribute__((__unused__))
     91 footbridge_splx(int ipl)
     92 {
     93 	extern int footbridge_imask[];
     94 	extern volatile uint32_t intr_enabled;
     95 	extern volatile int footbridge_ipending;
     96 	int oldirqstate, hwpend;
     97 
     98 	/* Don't let the compiler re-order this code with preceding code */
     99 	__insn_barrier();
    100 
    101 	set_curcpl(ipl);
    102 
    103 	hwpend = footbridge_ipending & ICU_INT_HWMASK & ~footbridge_imask[ipl];
    104 	if (hwpend != 0) {
    105 		oldirqstate = disable_interrupts(I32_bit);
    106 		intr_enabled |= hwpend;
    107 		footbridge_set_intrmask();
    108 		restore_interrupts(oldirqstate);
    109 	}
    110 
    111 #ifdef __HAVE_FAST_SOFTINTS
    112 	cpu_dosoftints();
    113 #endif
    114 }
    115 
    116 static inline int __attribute__((__unused__))
    117 footbridge_splraise(int ipl)
    118 {
    119 	int	old;
    120 
    121 	old = curcpl();
    122 	set_curcpl(ipl);
    123 
    124 	/* Don't let the compiler re-order this code with subsequent code */
    125 	__insn_barrier();
    126 
    127 	return (old);
    128 }
    129 
    130 static inline int __attribute__((__unused__))
    131 footbridge_spllower(int ipl)
    132 {
    133 	int old = curcpl();
    134 
    135 	footbridge_splx(ipl);
    136 	return(old);
    137 }
    138 
    139 /* should only be defined in footbridge_intr.c */
    140 #if !defined(ARM_SPL_NOINLINE)
    141 
    142 #define splx(newspl)		footbridge_splx(newspl)
    143 #define	_spllower(ipl)		footbridge_spllower(ipl)
    144 #define	_splraise(ipl)		footbridge_splraise(ipl)
    145 void	_setsoftintr(int);
    146 
    147 #else
    148 
    149 int	_splraise(int);
    150 int	_spllower(int);
    151 void	splx(int);
    152 void	_setsoftintr(int);
    153 
    154 #endif /* ! ARM_SPL_NOINLINE */
    155 
    156 #include <sys/evcnt.h>
    157 #include <sys/queue.h>
    158 #include <machine/irqhandler.h>
    159 
    160 #define	splsoft()	_splraise(IPL_SOFT)
    161 
    162 #define	spl0()		(void)_spllower(IPL_NONE)
    163 #define	spllowersoftclock() (void)_spllower(IPL_SOFTCLOCK)
    164 
    165 typedef uint8_t ipl_t;
    166 typedef struct {
    167 	ipl_t _ipl;
    168 } ipl_cookie_t;
    169 
    170 static inline ipl_cookie_t
    171 makeiplcookie(ipl_t ipl)
    172 {
    173 
    174 	return (ipl_cookie_t){._ipl = ipl};
    175 }
    176 
    177 static inline int
    178 splraiseipl(ipl_cookie_t icookie)
    179 {
    180 
    181 	return _splraise(icookie._ipl);
    182 }
    183 
    184 #include <sys/spl.h>
    185 
    186 /* footbridge has 32 interrupt lines */
    187 #define	NIRQ		32
    188 
    189 struct intrhand {
    190 	TAILQ_ENTRY(intrhand) ih_list;	/* link on intrq list */
    191 	int (*ih_func)(void *);		/* handler */
    192 	void *ih_arg;			/* arg for handler */
    193 	int ih_ipl;			/* IPL_* */
    194 	int ih_irq;			/* IRQ number */
    195 };
    196 
    197 #define	IRQNAMESIZE	sizeof("footbridge irq 31")
    198 
    199 struct intrq {
    200 	TAILQ_HEAD(, intrhand) iq_list;	/* handler list */
    201 	struct evcnt iq_ev;		/* event counter */
    202 	int iq_mask;			/* IRQs to mask while handling */
    203 	int iq_levels;			/* IPL_*'s this IRQ has */
    204 	int iq_ist;			/* share type */
    205 	int iq_ipl;			/* max ipl */
    206 	char iq_name[IRQNAMESIZE];	/* interrupt name */
    207 };
    208 
    209 #endif /* _LOCORE */
    210 
    211 #endif	/* _FOOTBRIDGE_INTR_H */
    212