1 #ifndef __ASM_SH64_IRQ_H
2 #define __ASM_SH64_IRQ_H
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file "COPYING" in the main directory of this archive
9 * include/asm-sh64/irq.h
11 * Copyright (C) 2000, 2001 Paolo Alberelli
17 * Encoded IRQs are not considered worth to be supported.
18 * Main reason is that there's no per-encoded-interrupt
19 * enable/disable mechanism (as there was in SH3/4).
20 * An all enabled/all disabled is worth only if there's
21 * a cascaded IC to disable/enable/ack on. Until such
22 * IC is available there's no such support.
24 * Presumably Encoded IRQs may use extra IRQs beyond 64,
25 * below. Some logic must be added to cope with IRQ_IRL?
26 * in an exclusive way.
28 * Priorities are set at Platform level, when IRQ_IRL0-3
29 * are set to 0 Encoding is allowed. Otherwise it's not
33 /* Independent IRQs */
73 #define NR_INTC_IRQS 64
75 #ifdef CONFIG_SH_CAYMAN
76 #define NR_EXT_IRQS 32
77 #define START_EXT_IRQS 64
79 /* PCI bus 2 uses encoded external interrupts on the Cayman board */
80 #define IRQ_P2INTA (START_EXT_IRQS + (3*8) + 0)
81 #define IRQ_P2INTB (START_EXT_IRQS + (3*8) + 1)
82 #define IRQ_P2INTC (START_EXT_IRQS + (3*8) + 2)
83 #define IRQ_P2INTD (START_EXT_IRQS + (3*8) + 3)
85 #define I8042_KBD_IRQ (START_EXT_IRQS + 2)
86 #define I8042_AUX_IRQ (START_EXT_IRQS + 6)
88 #define IRQ_CFCARD (START_EXT_IRQS + 7)
89 #define IRQ_PCMCIA (0)
95 #define NR_IRQS (NR_INTC_IRQS+NR_EXT_IRQS)
98 /* Default IRQs, fixed */
99 #define TIMER_IRQ IRQ_TUNI0
100 #define RTC_IRQ IRQ_CUI
102 /* Default Priorities, Platform may choose differently */
103 #define NO_PRIORITY 0 /* Disabled */
104 #define TIMER_PRIORITY 2
105 #define RTC_PRIORITY TIMER_PRIORITY
106 #define SCIF_PRIORITY 3
107 #define INTD_PRIORITY 3
108 #define IRL3_PRIORITY 4
109 #define INTC_PRIORITY 6
110 #define IRL2_PRIORITY 7
111 #define INTB_PRIORITY 9
112 #define IRL1_PRIORITY 10
113 #define INTA_PRIORITY 12
114 #define IRL0_PRIORITY 13
115 #define TOP_PRIORITY 15
117 extern int intc_evt_to_irq[(0xE20/0x20)+1];
118 int intc_irq_describe(char* p, int irq);
120 #define irq_canonicalize(irq) (irq)
122 #ifdef CONFIG_SH_CAYMAN
123 int cayman_irq_demux(int evt);
124 int cayman_irq_describe(char* p, int irq);
125 #define irq_demux(x) cayman_irq_demux(x)
126 #define irq_describe(p, x) cayman_irq_describe(p, x)
128 #define irq_demux(x) (intc_evt_to_irq[x])
129 #define irq_describe(p, x) intc_irq_describe(p, x)
133 * Function for "on chip support modules".
137 * SH-5 supports Priority based interrupts only.
138 * Interrupt priorities are defined at platform level.
140 #define set_ipr_data(a, b, c, d)
141 #define make_ipr_irq(a)
142 #define make_imask_irq(a)
144 #endif /* __ASM_SH64_IRQ_H */