blob: 16464f2f8eccf203a2464e9b1dd0bffcf0d70d52 [file] [log] [blame]
Chris Zankel9a8fd552005-06-23 22:01:26 -07001/*
2 * include/asm-xtensa/irq.h
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
9 */
10
11#ifndef _XTENSA_IRQ_H
12#define _XTENSA_IRQ_H
13
Daniel Glöckner1beee212009-05-05 15:03:21 +000014#include <linux/init.h>
Chris Zankel367b8112008-11-06 06:40:46 -080015#include <platform/hardware.h>
16#include <variant/core.h>
Chris Zankel9a8fd552005-06-23 22:01:26 -070017
Johannes Weiner4c0d2142009-03-04 16:21:31 +010018#ifdef CONFIG_VARIANT_IRQ_SWITCH
19#include <variant/irq.h>
20#else
21static inline void variant_irq_enable(unsigned int irq) { }
22static inline void variant_irq_disable(unsigned int irq) { }
23#endif
24
Daniel Glöckner1beee212009-05-05 15:03:21 +000025#ifndef VARIANT_NR_IRQS
26# define VARIANT_NR_IRQS 0
27#endif
Chris Zankel9a8fd552005-06-23 22:01:26 -070028#ifndef PLATFORM_NR_IRQS
29# define PLATFORM_NR_IRQS 0
30#endif
31#define XTENSA_NR_IRQS XCHAL_NUM_INTERRUPTS
Daniel Glöckner1beee212009-05-05 15:03:21 +000032#define NR_IRQS (XTENSA_NR_IRQS + VARIANT_NR_IRQS + PLATFORM_NR_IRQS)
33
34#if VARIANT_NR_IRQS == 0
35static inline void variant_init_irq(void) { }
36#else
37void variant_init_irq(void) __init;
38#endif
Chris Zankel9a8fd552005-06-23 22:01:26 -070039
40static __inline__ int irq_canonicalize(int irq)
41{
42 return (irq);
43}
44
45struct irqaction;
Max Filippovcbd1de22013-12-01 12:59:49 +040046struct irq_domain;
47
48int xtensa_irq_domain_xlate(const u32 *intspec, unsigned int intsize,
49 unsigned long int_irq, unsigned long ext_irq,
50 unsigned long *out_hwirq, unsigned int *out_type);
51int xtensa_irq_map(struct irq_domain *d, unsigned int irq, irq_hw_number_t hw);
52unsigned xtensa_map_ext_irq(unsigned ext_irq);
Chris Zankel9a8fd552005-06-23 22:01:26 -070053
54#endif /* _XTENSA_IRQ_H */