diff options
author | John Crispin <blogic@openwrt.org> | 2012-08-16 07:39:56 -0400 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2012-08-22 18:08:17 -0400 |
commit | f8cd170dabeca90c976e6487ba7a8a7752aae571 (patch) | |
tree | c16d190e86db159ba04c9eec8e3cc4acb3b85a01 /arch/mips/lantiq | |
parent | 70ec9054e7a65c878298666083f7d5b70ccf9032 (diff) |
MIPS: lantiq: adds support for nmi and ejtag bootrom vectors
Register nmi and ejtag bootrom vectors for FALC-ON SoC.
Signed-off-by: Thomas Langer <thomas.langer@lantiq.com>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/4238/
Diffstat (limited to 'arch/mips/lantiq')
-rw-r--r-- | arch/mips/lantiq/falcon/prom.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/mips/lantiq/falcon/prom.c b/arch/mips/lantiq/falcon/prom.c index c1d278f05a3a..aa9497947859 100644 --- a/arch/mips/lantiq/falcon/prom.c +++ b/arch/mips/lantiq/falcon/prom.c | |||
@@ -8,6 +8,8 @@ | |||
8 | */ | 8 | */ |
9 | 9 | ||
10 | #include <linux/kernel.h> | 10 | #include <linux/kernel.h> |
11 | #include <asm/cacheflush.h> | ||
12 | #include <asm/traps.h> | ||
11 | #include <asm/io.h> | 13 | #include <asm/io.h> |
12 | 14 | ||
13 | #include <lantiq_soc.h> | 15 | #include <lantiq_soc.h> |
@@ -84,4 +86,7 @@ void __init ltq_soc_detect(struct ltq_soc_info *i) | |||
84 | unreachable(); | 86 | unreachable(); |
85 | break; | 87 | break; |
86 | } | 88 | } |
89 | |||
90 | board_nmi_handler_setup = ltq_soc_nmi_setup; | ||
91 | board_ejtag_handler_setup = ltq_soc_ejtag_setup; | ||
87 | } | 92 | } |