diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:09 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-10-11 18:46:09 -0400 |
commit | 7bcf7717b6a047c272410d0cd00213185fe6b99d (patch) | |
tree | 81c5d6bbc2130815713e22bb5408ea80b6e1c499 /include | |
parent | 91a2fcc88634663e9e13dcdfad0e4a860e64aeee (diff) |
[MIPS] Implement clockevents for R4000-style cp0 count/compare interrupt
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-mips/mach-ip27/irq.h | 2 | ||||
-rw-r--r-- | include/asm-mips/qemu.h | 2 | ||||
-rw-r--r-- | include/asm-mips/time.h | 10 |
3 files changed, 8 insertions, 6 deletions
diff --git a/include/asm-mips/mach-ip27/irq.h b/include/asm-mips/mach-ip27/irq.h index 25f0c3f39adf..cf4384bfa846 100644 --- a/include/asm-mips/mach-ip27/irq.h +++ b/include/asm-mips/mach-ip27/irq.h | |||
@@ -17,4 +17,6 @@ | |||
17 | */ | 17 | */ |
18 | #define NR_IRQS 256 | 18 | #define NR_IRQS 256 |
19 | 19 | ||
20 | #include_next <irq.h> | ||
21 | |||
20 | #endif /* __ASM_MACH_IP27_IRQ_H */ | 22 | #endif /* __ASM_MACH_IP27_IRQ_H */ |
diff --git a/include/asm-mips/qemu.h b/include/asm-mips/qemu.h index 531caf44560c..487ced4a40de 100644 --- a/include/asm-mips/qemu.h +++ b/include/asm-mips/qemu.h | |||
@@ -12,7 +12,7 @@ | |||
12 | * Interrupt numbers | 12 | * Interrupt numbers |
13 | */ | 13 | */ |
14 | #define Q_PIC_IRQ_BASE 0 | 14 | #define Q_PIC_IRQ_BASE 0 |
15 | #define Q_COUNT_COMPARE_IRQ 16 | 15 | #define Q_COUNT_COMPARE_IRQ 23 |
16 | 16 | ||
17 | /* | 17 | /* |
18 | * Qemu clock rate. Unlike on real MIPS this has no relation to the | 18 | * Qemu clock rate. Unlike on real MIPS this has no relation to the |
diff --git a/include/asm-mips/time.h b/include/asm-mips/time.h index 3516b32c9efb..35555bd5c52d 100644 --- a/include/asm-mips/time.h +++ b/include/asm-mips/time.h | |||
@@ -49,11 +49,6 @@ extern void (*mips_timer_ack)(void); | |||
49 | extern struct clocksource clocksource_mips; | 49 | extern struct clocksource clocksource_mips; |
50 | 50 | ||
51 | /* | 51 | /* |
52 | * The low-level timer interrupt routine. | ||
53 | */ | ||
54 | extern void ll_timer_interrupt(int irq, void *dev_id); | ||
55 | |||
56 | /* | ||
57 | * profiling and process accouting is done separately in local_timer_interrupt | 52 | * profiling and process accouting is done separately in local_timer_interrupt |
58 | */ | 53 | */ |
59 | extern void local_timer_interrupt(int irq, void *dev_id); | 54 | extern void local_timer_interrupt(int irq, void *dev_id); |
@@ -78,4 +73,9 @@ extern unsigned int mips_hpt_frequency; | |||
78 | */ | 73 | */ |
79 | extern int (*perf_irq)(void); | 74 | extern int (*perf_irq)(void); |
80 | 75 | ||
76 | /* | ||
77 | * Initialize the calling CPU's compare interrupt as clockevent device | ||
78 | */ | ||
79 | extern void mips_clockevent_init(void); | ||
80 | |||
81 | #endif /* _ASM_TIME_H */ | 81 | #endif /* _ASM_TIME_H */ |