diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /include/asm-frv/cpu-irqs.h |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'include/asm-frv/cpu-irqs.h')
-rw-r--r-- | include/asm-frv/cpu-irqs.h | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/include/asm-frv/cpu-irqs.h b/include/asm-frv/cpu-irqs.h new file mode 100644 index 000000000000..5cd691e1f8c4 --- /dev/null +++ b/include/asm-frv/cpu-irqs.h | |||
@@ -0,0 +1,87 @@ | |||
1 | /* cpu-irqs.h: on-CPU peripheral irqs | ||
2 | * | ||
3 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. | ||
4 | * Written by David Howells (dhowells@redhat.com) | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License | ||
8 | * as published by the Free Software Foundation; either version | ||
9 | * 2 of the License, or (at your option) any later version. | ||
10 | */ | ||
11 | |||
12 | #ifndef _ASM_CPU_IRQS_H | ||
13 | #define _ASM_CPU_IRQS_H | ||
14 | |||
15 | #ifndef __ASSEMBLY__ | ||
16 | |||
17 | #include <asm/irq-routing.h> | ||
18 | |||
19 | #define IRQ_BASE_CPU (NR_IRQ_ACTIONS_PER_GROUP * 0) | ||
20 | |||
21 | /* IRQ IDs presented to drivers */ | ||
22 | enum { | ||
23 | IRQ_CPU__UNUSED = IRQ_BASE_CPU, | ||
24 | IRQ_CPU_UART0, | ||
25 | IRQ_CPU_UART1, | ||
26 | IRQ_CPU_TIMER0, | ||
27 | IRQ_CPU_TIMER1, | ||
28 | IRQ_CPU_TIMER2, | ||
29 | IRQ_CPU_DMA0, | ||
30 | IRQ_CPU_DMA1, | ||
31 | IRQ_CPU_DMA2, | ||
32 | IRQ_CPU_DMA3, | ||
33 | IRQ_CPU_DMA4, | ||
34 | IRQ_CPU_DMA5, | ||
35 | IRQ_CPU_DMA6, | ||
36 | IRQ_CPU_DMA7, | ||
37 | IRQ_CPU_EXTERNAL0, | ||
38 | IRQ_CPU_EXTERNAL1, | ||
39 | IRQ_CPU_EXTERNAL2, | ||
40 | IRQ_CPU_EXTERNAL3, | ||
41 | IRQ_CPU_EXTERNAL4, | ||
42 | IRQ_CPU_EXTERNAL5, | ||
43 | IRQ_CPU_EXTERNAL6, | ||
44 | IRQ_CPU_EXTERNAL7, | ||
45 | }; | ||
46 | |||
47 | /* IRQ to level mappings */ | ||
48 | #define IRQ_GDBSTUB_LEVEL 15 | ||
49 | #define IRQ_UART_LEVEL 13 | ||
50 | |||
51 | #ifdef CONFIG_GDBSTUB_UART0 | ||
52 | #define IRQ_UART0_LEVEL IRQ_GDBSTUB_LEVEL | ||
53 | #else | ||
54 | #define IRQ_UART0_LEVEL IRQ_UART_LEVEL | ||
55 | #endif | ||
56 | |||
57 | #ifdef CONFIG_GDBSTUB_UART1 | ||
58 | #define IRQ_UART1_LEVEL IRQ_GDBSTUB_LEVEL | ||
59 | #else | ||
60 | #define IRQ_UART1_LEVEL IRQ_UART_LEVEL | ||
61 | #endif | ||
62 | |||
63 | #define IRQ_DMA0_LEVEL 14 | ||
64 | #define IRQ_DMA1_LEVEL 14 | ||
65 | #define IRQ_DMA2_LEVEL 14 | ||
66 | #define IRQ_DMA3_LEVEL 14 | ||
67 | #define IRQ_DMA4_LEVEL 14 | ||
68 | #define IRQ_DMA5_LEVEL 14 | ||
69 | #define IRQ_DMA6_LEVEL 14 | ||
70 | #define IRQ_DMA7_LEVEL 14 | ||
71 | |||
72 | #define IRQ_TIMER0_LEVEL 12 | ||
73 | #define IRQ_TIMER1_LEVEL 11 | ||
74 | #define IRQ_TIMER2_LEVEL 10 | ||
75 | |||
76 | #define IRQ_XIRQ0_LEVEL 1 | ||
77 | #define IRQ_XIRQ1_LEVEL 2 | ||
78 | #define IRQ_XIRQ2_LEVEL 3 | ||
79 | #define IRQ_XIRQ3_LEVEL 4 | ||
80 | #define IRQ_XIRQ4_LEVEL 5 | ||
81 | #define IRQ_XIRQ5_LEVEL 6 | ||
82 | #define IRQ_XIRQ6_LEVEL 7 | ||
83 | #define IRQ_XIRQ7_LEVEL 8 | ||
84 | |||
85 | #endif /* !__ASSEMBLY__ */ | ||
86 | |||
87 | #endif /* _ASM_CPU_IRQS_H */ | ||