Home | History | Annotate | Line # | Download | only in ofw
ofw_irqhandler.c revision 1.13.10.1
      1  1.13.10.1     yamt /*	$NetBSD: ofw_irqhandler.c,v 1.13.10.1 2009/05/04 08:10:43 yamt Exp $	*/
      2        1.1  thorpej 
      3        1.1  thorpej /*
      4        1.1  thorpej  * Copyright (c) 1994-1998 Mark Brinicombe.
      5        1.1  thorpej  * Copyright (c) 1994 Brini.
      6        1.1  thorpej  * All rights reserved.
      7        1.1  thorpej  *
      8        1.1  thorpej  * This code is derived from software written for Brini by Mark Brinicombe
      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 Mark Brinicombe
     21        1.1  thorpej  *	for the NetBSD Project.
     22        1.1  thorpej  * 4. The name of the company nor the name of the author may be used to
     23        1.1  thorpej  *    endorse or promote products derived from this software without specific
     24        1.1  thorpej  *    prior written permission.
     25        1.1  thorpej  *
     26        1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     27        1.1  thorpej  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     28        1.1  thorpej  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     29        1.1  thorpej  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     30        1.1  thorpej  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     31        1.1  thorpej  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     32        1.1  thorpej  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     33        1.1  thorpej  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     34        1.1  thorpej  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     35        1.1  thorpej  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     36        1.1  thorpej  *
     37        1.1  thorpej  *	from: irqhandler.c
     38        1.1  thorpej  *
     39        1.1  thorpej  * IRQ/FIQ initialisation, claim, release and handler routines
     40        1.1  thorpej  *
     41        1.1  thorpej  * Created      : 30/09/94
     42        1.1  thorpej  */
     43        1.3    lukem 
     44        1.3    lukem #include <sys/cdefs.h>
     45  1.13.10.1     yamt __KERNEL_RCSID(0, "$NetBSD: ofw_irqhandler.c,v 1.13.10.1 2009/05/04 08:10:43 yamt Exp $");
     46        1.1  thorpej 
     47        1.1  thorpej #include <sys/param.h>
     48        1.1  thorpej #include <sys/systm.h>
     49        1.1  thorpej #include <sys/syslog.h>
     50        1.1  thorpej #include <sys/malloc.h>
     51        1.1  thorpej 
     52        1.1  thorpej #include <uvm/uvm_extern.h>
     53        1.1  thorpej 
     54        1.1  thorpej #include <machine/intr.h>
     55       1.10     matt #include <machine/irqhandler.h>
     56        1.1  thorpej #include <machine/cpu.h>
     57        1.1  thorpej 
     58        1.1  thorpej irqhandler_t *irqhandlers[NIRQS];
     59        1.1  thorpej 
     60        1.1  thorpej u_int current_mask;
     61        1.1  thorpej u_int actual_mask;
     62        1.1  thorpej u_int disabled_mask;
     63        1.1  thorpej u_int irqmasks[IPL_LEVELS];
     64        1.1  thorpej extern u_int intrcnt[];
     65        1.1  thorpej 
     66        1.1  thorpej extern char *_intrnames;
     67        1.1  thorpej 
     68        1.1  thorpej /* Prototypes */
     69        1.1  thorpej 
     70  1.13.10.1     yamt int podule_irqhandler(void);
     71  1.13.10.1     yamt extern void set_spl_masks(void);
     72        1.1  thorpej 
     73        1.1  thorpej /*
     74        1.1  thorpej  * void irq_init(void)
     75        1.1  thorpej  *
     76        1.1  thorpej  * Initialise the IRQ/FIQ sub system
     77        1.1  thorpej  */
     78        1.1  thorpej 
     79        1.1  thorpej void
     80  1.13.10.1     yamt irq_init(void)
     81        1.1  thorpej {
     82        1.1  thorpej 	int loop;
     83        1.1  thorpej 
     84        1.1  thorpej 	/* Clear all the IRQ handlers and the irq block masks */
     85        1.1  thorpej 	for (loop = 0; loop < NIRQS; ++loop) {
     86        1.1  thorpej 		irqhandlers[loop] = NULL;
     87        1.1  thorpej 	}
     88        1.1  thorpej 
     89        1.1  thorpej 	/*
     90        1.1  thorpej 	 * Setup the irqmasks for the different Interrupt Priority Levels
     91        1.1  thorpej 	 * We will start with no bits set and these will be updated as handlers
     92        1.1  thorpej 	 * are installed at different IPL's.
     93        1.1  thorpej 	 */
     94        1.1  thorpej 	for (loop = 0; loop < IPL_LEVELS; ++loop)
     95        1.1  thorpej 		irqmasks[loop] = 0;
     96        1.1  thorpej 
     97        1.1  thorpej 	current_mask = 0x00000000;
     98        1.1  thorpej 	disabled_mask = 0x00000000;
     99        1.1  thorpej 	actual_mask = 0x00000000;
    100        1.1  thorpej 
    101        1.1  thorpej 	set_spl_masks();
    102        1.1  thorpej 
    103        1.1  thorpej 	/* Enable IRQ's and FIQ's */
    104        1.1  thorpej 	enable_interrupts(I32_bit | F32_bit);
    105        1.1  thorpej }
    106        1.1  thorpej 
    107        1.1  thorpej 
    108        1.1  thorpej /*
    109        1.1  thorpej  * int irq_claim(int irq, irqhandler_t *handler)
    110        1.1  thorpej  *
    111        1.1  thorpej  * Enable an IRQ and install a handler for it.
    112        1.1  thorpej  */
    113        1.1  thorpej 
    114        1.1  thorpej int
    115  1.13.10.1     yamt irq_claim(int irq, irqhandler_t *handler, const char *group, const char *name)
    116        1.1  thorpej {
    117        1.1  thorpej 	int level;
    118        1.1  thorpej 
    119        1.1  thorpej #ifdef DIAGNOSTIC
    120        1.1  thorpej 	/* Sanity check */
    121        1.1  thorpej 	if (handler == NULL)
    122        1.2   provos 		panic("NULL interrupt handler");
    123        1.1  thorpej 	if (handler->ih_func == NULL)
    124        1.2   provos 		panic("Interrupt handler does not have a function");
    125        1.1  thorpej #endif	/* DIAGNOSTIC */
    126        1.1  thorpej 
    127        1.1  thorpej 	/*
    128        1.1  thorpej 	 * IRQ_INSTRUCT indicates that we should get the irq number
    129        1.1  thorpej 	 * from the irq structure
    130        1.1  thorpej 	 */
    131        1.1  thorpej 	if (irq == IRQ_INSTRUCT)
    132        1.1  thorpej 		irq = handler->ih_num;
    133        1.1  thorpej 
    134        1.1  thorpej 	/* Make sure the irq number is valid */
    135        1.1  thorpej 	if (irq < 0 || irq >= NIRQS)
    136        1.1  thorpej 		return(-1);
    137        1.1  thorpej 
    138        1.1  thorpej 	/* Make sure the level is valid */
    139        1.1  thorpej 	if (handler->ih_level < 0 || handler->ih_level >= IPL_LEVELS)
    140        1.1  thorpej     	        return(-1);
    141        1.1  thorpej 
    142       1.10     matt 	evcnt_attach_dynamic(&handler->ih_ev, EVCNT_TYPE_INTR, NULL,
    143       1.10     matt 	    group, name);
    144       1.10     matt 
    145        1.1  thorpej 	/* Attach handler at top of chain */
    146        1.1  thorpej 	handler->ih_next = irqhandlers[irq];
    147        1.1  thorpej 	irqhandlers[irq] = handler;
    148        1.1  thorpej 
    149        1.1  thorpej 	/*
    150        1.1  thorpej 	 * Reset the flags for this handler.
    151        1.1  thorpej 	 * As the handler is now in the chain mark it as active.
    152        1.1  thorpej 	 */
    153        1.1  thorpej 	handler->ih_flags = 0 | IRQ_FLAG_ACTIVE;
    154        1.1  thorpej 
    155        1.1  thorpej 	/*
    156        1.1  thorpej 	 * Record the interrupt number for accounting.
    157        1.1  thorpej 	 * Done here as the accounting number may not be the same as the
    158        1.1  thorpej 	 * IRQ number though for the moment they are
    159        1.1  thorpej 	 */
    160        1.1  thorpej 	handler->ih_num = irq;
    161        1.1  thorpej 
    162        1.1  thorpej 	/*
    163        1.1  thorpej 	 * Update the irq masks.
    164        1.1  thorpej 	 * Find the lowest interrupt priority on the irq chain.
    165        1.1  thorpej 	 * Interrupt is allowable at priorities lower than this.
    166        1.1  thorpej 	 * If ih_level is out of range then don't bother to update
    167        1.1  thorpej 	 * the masks.
    168        1.1  thorpej 	 */
    169        1.1  thorpej 	if (handler->ih_level >= 0 && handler->ih_level < IPL_LEVELS) {
    170        1.1  thorpej 		irqhandler_t *ptr;
    171        1.1  thorpej 
    172        1.1  thorpej 		/*
    173        1.1  thorpej 		 * Find the lowest interrupt priority on the irq chain.
    174        1.1  thorpej 		 * Interrupt is allowable at priorities lower than this.
    175        1.1  thorpej 		 */
    176        1.1  thorpej 		ptr = irqhandlers[irq];
    177        1.1  thorpej 		if (ptr) {
    178        1.1  thorpej 			level = ptr->ih_level - 1;
    179        1.1  thorpej 			while (ptr) {
    180        1.1  thorpej 				if (ptr->ih_level - 1 < level)
    181        1.1  thorpej 					level = ptr->ih_level - 1;
    182        1.1  thorpej 				ptr = ptr->ih_next;
    183        1.1  thorpej 			}
    184        1.1  thorpej 			while (level >= 0) {
    185        1.1  thorpej 				irqmasks[level] |= (1 << irq);
    186        1.1  thorpej 				--level;
    187        1.1  thorpej 			}
    188        1.1  thorpej 		}
    189        1.1  thorpej 
    190        1.1  thorpej #include "sl.h"
    191        1.1  thorpej #include "ppp.h"
    192        1.1  thorpej #if NSL > 0 || NPPP > 0
    193        1.1  thorpej 		/* In the presence of SLIP or PPP, splimp > spltty. */
    194        1.1  thorpej 		irqmasks[IPL_NET] &= irqmasks[IPL_TTY];
    195        1.1  thorpej #endif
    196        1.1  thorpej 	}
    197        1.1  thorpej 
    198        1.1  thorpej 	enable_irq(irq);
    199        1.1  thorpej 	set_spl_masks();
    200        1.1  thorpej 
    201        1.1  thorpej 	return(0);
    202        1.1  thorpej }
    203        1.1  thorpej 
    204        1.1  thorpej 
    205        1.1  thorpej /*
    206        1.1  thorpej  * int irq_release(int irq, irqhandler_t *handler)
    207        1.1  thorpej  *
    208        1.1  thorpej  * Disable an IRQ and remove a handler for it.
    209        1.1  thorpej  */
    210        1.1  thorpej 
    211        1.1  thorpej int
    212  1.13.10.1     yamt irq_release(int irq, irqhandler_t *handler)
    213        1.1  thorpej {
    214        1.1  thorpej 	int level;
    215        1.1  thorpej 	irqhandler_t *irqhand;
    216        1.1  thorpej 	irqhandler_t **prehand;
    217        1.1  thorpej 
    218        1.1  thorpej 	/*
    219        1.1  thorpej 	 * IRQ_INSTRUCT indicates that we should get the irq number
    220        1.1  thorpej 	 * from the irq structure
    221        1.1  thorpej 	 */
    222        1.1  thorpej 	if (irq == IRQ_INSTRUCT)
    223        1.1  thorpej 		irq = handler->ih_num;
    224        1.1  thorpej 
    225        1.1  thorpej 	/* Make sure the irq number is valid */
    226        1.1  thorpej 	if (irq < 0 || irq >= NIRQS)
    227        1.1  thorpej 		return(-1);
    228        1.1  thorpej 
    229        1.1  thorpej 	/* Locate the handler */
    230        1.1  thorpej 	irqhand = irqhandlers[irq];
    231        1.1  thorpej 	prehand = &irqhandlers[irq];
    232        1.1  thorpej 
    233        1.1  thorpej 	while (irqhand && handler != irqhand) {
    234        1.1  thorpej 		prehand = &irqhand;
    235        1.1  thorpej 		irqhand = irqhand->ih_next;
    236        1.1  thorpej 	}
    237        1.1  thorpej 
    238        1.1  thorpej 	/* Remove the handler if located */
    239        1.1  thorpej 	if (irqhand)
    240        1.1  thorpej 		*prehand = irqhand->ih_next;
    241        1.1  thorpej 	else
    242        1.1  thorpej 		return(-1);
    243        1.1  thorpej 
    244        1.1  thorpej 	/* Now the handler has been removed from the chain mark is as inactive */
    245        1.1  thorpej 	irqhand->ih_flags &= ~IRQ_FLAG_ACTIVE;
    246        1.1  thorpej 
    247        1.1  thorpej 	/* Make sure the head of the handler list is active */
    248        1.1  thorpej 	if (irqhandlers[irq])
    249        1.1  thorpej 		irqhandlers[irq]->ih_flags |= IRQ_FLAG_ACTIVE;
    250        1.1  thorpej 
    251        1.1  thorpej 	/*
    252        1.1  thorpej 	 * Update the irq masks.
    253        1.1  thorpej 	 * If ih_level is out of range then don't bother to update
    254        1.1  thorpej 	 * the masks.
    255        1.1  thorpej 	 */
    256        1.1  thorpej 	if (handler->ih_level >= 0 && handler->ih_level < IPL_LEVELS) {
    257        1.1  thorpej 		irqhandler_t *ptr;
    258        1.1  thorpej 
    259        1.1  thorpej 		/* Clean the bit from all the masks */
    260        1.1  thorpej 		for (level = 0; level < IPL_LEVELS; ++level)
    261        1.1  thorpej 			irqmasks[level] &= ~(1 << irq);
    262        1.1  thorpej 
    263        1.1  thorpej 		/*
    264        1.1  thorpej 		 * Find the lowest interrupt priority on the irq chain.
    265        1.1  thorpej 		 * Interrupt is allowable at priorities lower than this.
    266        1.1  thorpej 		 */
    267        1.1  thorpej 		ptr = irqhandlers[irq];
    268        1.1  thorpej 		if (ptr) {
    269        1.1  thorpej 			level = ptr->ih_level - 1;
    270        1.1  thorpej 			while (ptr) {
    271        1.1  thorpej 				if (ptr->ih_level - 1 < level)
    272        1.1  thorpej 					level = ptr->ih_level - 1;
    273        1.1  thorpej 				ptr = ptr->ih_next;
    274        1.1  thorpej 			}
    275        1.1  thorpej 			while (level >= 0) {
    276        1.1  thorpej 				irqmasks[level] |= (1 << irq);
    277        1.1  thorpej 				--level;
    278        1.1  thorpej 			}
    279        1.1  thorpej 		}
    280        1.1  thorpej 	}
    281        1.1  thorpej 
    282        1.1  thorpej 	/*
    283        1.1  thorpej 	 * Disable the appropriate mask bit if there are no handlers left for
    284        1.1  thorpej 	 * this IRQ.
    285        1.1  thorpej 	 */
    286        1.1  thorpej 	if (irqhandlers[irq] == NULL)
    287        1.1  thorpej 		disable_irq(irq);
    288        1.1  thorpej 
    289        1.1  thorpej 	set_spl_masks();
    290        1.1  thorpej 
    291        1.1  thorpej 	return(0);
    292        1.1  thorpej }
    293        1.1  thorpej 
    294        1.1  thorpej 
    295        1.1  thorpej void *
    296  1.13.10.1     yamt intr_claim(int irq, int level, int (*ih_func)(void *), void *ih_arg, const char *group, const char *name)
    297        1.1  thorpej {
    298        1.1  thorpej 	irqhandler_t *ih;
    299        1.1  thorpej 
    300       1.10     matt 	ih = malloc(sizeof(*ih), M_DEVBUF, M_NOWAIT|M_ZERO);
    301        1.1  thorpej 	if (!ih)
    302        1.2   provos 		panic("intr_claim(): Cannot malloc handler memory");
    303        1.1  thorpej 
    304        1.1  thorpej 	ih->ih_level = level;
    305        1.1  thorpej 	ih->ih_func = ih_func;
    306        1.1  thorpej 	ih->ih_arg = ih_arg;
    307        1.1  thorpej 	ih->ih_flags = 0;
    308        1.1  thorpej 
    309       1.10     matt 	if (irq_claim(irq, ih, group, name) != 0)
    310        1.1  thorpej 		return(NULL);
    311        1.1  thorpej 	return(ih);
    312        1.1  thorpej }
    313        1.1  thorpej 
    314        1.1  thorpej 
    315        1.1  thorpej int
    316  1.13.10.1     yamt intr_release(void *arg)
    317        1.1  thorpej {
    318        1.1  thorpej 	irqhandler_t *ih = (irqhandler_t *)arg;
    319        1.1  thorpej 
    320        1.1  thorpej 	if (irq_release(ih->ih_num, ih) == 0) {
    321        1.1  thorpej 		free(ih, M_DEVBUF);
    322        1.1  thorpej 		return(0);
    323        1.1  thorpej 	}
    324        1.1  thorpej 	return(1);
    325        1.1  thorpej }
    326        1.1  thorpej 
    327        1.1  thorpej 
    328        1.1  thorpej /*
    329        1.1  thorpej  * void disable_irq(int irq)
    330        1.1  thorpej  *
    331        1.1  thorpej  * Disables a specific irq. The irq is removed from the master irq mask
    332        1.1  thorpej  */
    333        1.1  thorpej 
    334        1.1  thorpej void
    335  1.13.10.1     yamt disable_irq(int irq)
    336        1.1  thorpej {
    337        1.1  thorpej 	register int oldirqstate;
    338        1.1  thorpej 
    339        1.1  thorpej 	oldirqstate = disable_interrupts(I32_bit);
    340        1.1  thorpej 	current_mask &= ~(1 << irq);
    341        1.1  thorpej 	irq_setmasks();
    342        1.1  thorpej 	restore_interrupts(oldirqstate);
    343        1.1  thorpej }
    344        1.1  thorpej 
    345        1.1  thorpej 
    346        1.1  thorpej /*
    347        1.1  thorpej  * void enable_irq(int irq)
    348        1.1  thorpej  *
    349        1.1  thorpej  * Enables a specific irq. The irq is added to the master irq mask
    350        1.1  thorpej  * This routine should be used with caution. A handler should already
    351        1.1  thorpej  * be installed.
    352        1.1  thorpej  */
    353        1.1  thorpej 
    354        1.1  thorpej void
    355  1.13.10.1     yamt enable_irq(int irq)
    356        1.1  thorpej {
    357        1.1  thorpej 	register u_int oldirqstate;
    358        1.1  thorpej 
    359        1.1  thorpej 	oldirqstate = disable_interrupts(I32_bit);
    360        1.1  thorpej 	current_mask |= (1 << irq);
    361        1.1  thorpej 	irq_setmasks();
    362        1.1  thorpej 	restore_interrupts(oldirqstate);
    363        1.1  thorpej }
    364        1.1  thorpej 
    365        1.1  thorpej 
    366        1.1  thorpej /*
    367        1.1  thorpej  * void stray_irqhandler(u_int mask)
    368        1.1  thorpej  *
    369        1.1  thorpej  * Handler for stray interrupts. This gets called if a handler cannot be
    370        1.1  thorpej  * found for an interrupt.
    371        1.1  thorpej  */
    372        1.1  thorpej 
    373        1.4  thorpej void	stray_irqhandler(u_int);	/* called from assembly */
    374        1.4  thorpej 
    375        1.1  thorpej void
    376  1.13.10.1     yamt stray_irqhandler(u_int mask)
    377        1.1  thorpej {
    378        1.1  thorpej 	static u_int stray_irqs = 0;
    379        1.1  thorpej 
    380        1.1  thorpej 	if (++stray_irqs <= 8)
    381        1.1  thorpej 		log(LOG_ERR, "Stray interrupt %08x%s\n", mask,
    382        1.1  thorpej 		    stray_irqs >= 8 ? ": stopped logging" : "");
    383        1.1  thorpej }
    384