2004-05-14 11:46:45 +00:00
|
|
|
/* $NetBSD: intr.h,v 1.7 2003/06/16 20:01:00 thorpej Exp $ */
|
|
|
|
|
2005-01-05 21:58:49 +00:00
|
|
|
/*-
|
2004-05-14 11:46:45 +00:00
|
|
|
* Copyright (c) 1997 Mark Brinicombe.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Mark Brinicombe
|
|
|
|
* for the NetBSD Project.
|
|
|
|
* 4. The name of the company nor the name of the author may be used to
|
|
|
|
* endorse or promote products derived from this software without specific
|
|
|
|
* prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* $FreeBSD$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _MACHINE_INTR_H_
|
|
|
|
#define _MACHINE_INTR_H_
|
|
|
|
|
2008-12-13 01:21:37 +00:00
|
|
|
/* XXX move to std.* files? */
|
2007-06-16 15:03:33 +00:00
|
|
|
#ifdef CPU_XSCALE_81342
|
|
|
|
#define NIRQ 128
|
2008-06-06 05:08:09 +00:00
|
|
|
#elif defined(CPU_XSCALE_PXA2X0)
|
|
|
|
#include <arm/xscale/pxa/pxareg.h>
|
|
|
|
#define NIRQ IRQ_GPIO_MAX
|
2008-10-13 20:07:13 +00:00
|
|
|
#elif defined(SOC_MV_DISCOVERY)
|
|
|
|
#define NIRQ 96
|
2008-12-13 01:21:37 +00:00
|
|
|
#elif defined(CPU_ARM9) || defined(SOC_MV_KIRKWOOD) || \
|
|
|
|
defined(CPU_XSCALE_IXP435)
|
2005-02-13 18:26:31 +00:00
|
|
|
#define NIRQ 64
|
2012-08-15 03:03:03 +00:00
|
|
|
#elif defined(CPU_CORTEXA)
|
|
|
|
#define NIRQ 128
|
2012-08-25 20:13:19 +00:00
|
|
|
#elif defined(CPU_ARM11)
|
|
|
|
#define NIRQ 128
|
2012-09-14 09:55:19 +00:00
|
|
|
#elif defined(SOC_MV_ARMADAXP)
|
|
|
|
#define NIRQ 148
|
2005-02-13 18:26:31 +00:00
|
|
|
#else
|
2004-09-23 22:09:57 +00:00
|
|
|
#define NIRQ 32
|
2005-02-13 18:26:31 +00:00
|
|
|
#endif
|
2004-05-14 11:46:45 +00:00
|
|
|
|
|
|
|
#include <machine/psl.h>
|
|
|
|
|
2009-06-09 18:18:41 +00:00
|
|
|
int arm_get_next_irq(int);
|
2005-06-09 12:26:20 +00:00
|
|
|
void arm_mask_irq(uintptr_t);
|
|
|
|
void arm_unmask_irq(uintptr_t);
|
2012-06-13 05:02:51 +00:00
|
|
|
void arm_setup_irqhandler(const char *, int (*)(void*), void (*)(void*),
|
|
|
|
void *, int, int, void **);
|
2008-09-11 12:36:13 +00:00
|
|
|
int arm_remove_irqhandler(int, void *);
|
2008-04-20 23:29:06 +00:00
|
|
|
extern void (*arm_post_filter)(void *);
|
2012-08-15 03:03:03 +00:00
|
|
|
|
|
|
|
void gic_init_secondary(void);
|
|
|
|
|
2004-05-14 11:46:45 +00:00
|
|
|
#endif /* _MACHINE_INTR_H */
|