summaryrefslogtreecommitdiff
path: root/target/linux/ramips/patches-2.6.36/001-mips-add-cp0-compare-irq-function.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2010-12-05 20:14:38 +0000
committerGabor Juhos <juhosg@openwrt.org>2010-12-05 20:14:38 +0000
commit0449d92dd77cd6af3927898e7cc4c0d7c78eed60 (patch)
tree39a9a0138d0874c459d9d3d38bdacbbe1e9173df /target/linux/ramips/patches-2.6.36/001-mips-add-cp0-compare-irq-function.patch
parent01a5cb48c89fc91e85f6a3dd3a675d406f3b732c (diff)
downloadmtk-20170518-0449d92dd77cd6af3927898e7cc4c0d7c78eed60.zip
mtk-20170518-0449d92dd77cd6af3927898e7cc4c0d7c78eed60.tar.gz
mtk-20170518-0449d92dd77cd6af3927898e7cc4c0d7c78eed60.tar.bz2
ramips: add support for 2.6.36
SVN-Revision: 24270
Diffstat (limited to 'target/linux/ramips/patches-2.6.36/001-mips-add-cp0-compare-irq-function.patch')
-rw-r--r--target/linux/ramips/patches-2.6.36/001-mips-add-cp0-compare-irq-function.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/ramips/patches-2.6.36/001-mips-add-cp0-compare-irq-function.patch b/target/linux/ramips/patches-2.6.36/001-mips-add-cp0-compare-irq-function.patch
new file mode 100644
index 0000000..3c09a78
--- /dev/null
+++ b/target/linux/ramips/patches-2.6.36/001-mips-add-cp0-compare-irq-function.patch
@@ -0,0 +1,29 @@
+--- a/arch/mips/kernel/traps.c
++++ b/arch/mips/kernel/traps.c
+@@ -53,6 +53,7 @@
+ #include <asm/stacktrace.h>
+ #include <asm/irq.h>
+ #include <asm/uasm.h>
++#include <asm/time.h>
+
+ extern void check_wait(void);
+ extern asmlinkage void r4k_wait(void);
+@@ -1539,6 +1540,8 @@ void __cpuinit per_cpu_trap_init(void)
+ if (cpu_has_mips_r2) {
+ cp0_compare_irq_shift = CAUSEB_TI - CAUSEB_IP;
+ cp0_compare_irq = (read_c0_intctl() >> INTCTLB_IPTI) & 7;
++ if (get_c0_compare_irq)
++ cp0_compare_irq = get_c0_compare_irq();
+ cp0_perfcount_irq = (read_c0_intctl() >> INTCTLB_IPPCI) & 7;
+ if (cp0_perfcount_irq == cp0_compare_irq)
+ cp0_perfcount_irq = -1;
+--- a/arch/mips/include/asm/time.h
++++ b/arch/mips/include/asm/time.h
+@@ -52,6 +52,7 @@ extern int (*perf_irq)(void);
+ */
+ #ifdef CONFIG_CEVT_R4K_LIB
+ extern unsigned int __weak get_c0_compare_int(void);
++extern unsigned int __weak get_c0_compare_irq(void);
+ extern int r4k_clockevent_init(void);
+ #endif
+