diff options
Diffstat (limited to 'arch/arm/mach-pxa')
-rw-r--r-- | arch/arm/mach-pxa/generic.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/generic.c b/arch/arm/mach-pxa/generic.c index 42254175fcf4..6f38e1af45af 100644 --- a/arch/arm/mach-pxa/generic.c +++ b/arch/arm/mach-pxa/generic.c | |||
@@ -25,11 +25,13 @@ | |||
25 | #include <asm/mach/map.h> | 25 | #include <asm/mach/map.h> |
26 | #include <asm/mach-types.h> | 26 | #include <asm/mach-types.h> |
27 | 27 | ||
28 | #include <mach/irqs.h> | ||
28 | #include <mach/reset.h> | 29 | #include <mach/reset.h> |
29 | #include <mach/smemc.h> | 30 | #include <mach/smemc.h> |
30 | #include <mach/pxa3xx-regs.h> | 31 | #include <mach/pxa3xx-regs.h> |
31 | 32 | ||
32 | #include "generic.h" | 33 | #include "generic.h" |
34 | #include <clocksource/pxa.h> | ||
33 | 35 | ||
34 | void clear_reset_status(unsigned int mask) | 36 | void clear_reset_status(unsigned int mask) |
35 | { | 37 | { |
@@ -57,6 +59,15 @@ unsigned long get_clock_tick_rate(void) | |||
57 | EXPORT_SYMBOL(get_clock_tick_rate); | 59 | EXPORT_SYMBOL(get_clock_tick_rate); |
58 | 60 | ||
59 | /* | 61 | /* |
62 | * For non device-tree builds, keep legacy timer init | ||
63 | */ | ||
64 | void pxa_timer_init(void) | ||
65 | { | ||
66 | pxa_timer_nodt_init(IRQ_OST0, io_p2v(0x40a00000), | ||
67 | get_clock_tick_rate()); | ||
68 | } | ||
69 | |||
70 | /* | ||
60 | * Get the clock frequency as reflected by CCCR and the turbo flag. | 71 | * Get the clock frequency as reflected by CCCR and the turbo flag. |
61 | * We assume these values have been applied via a fcs. | 72 | * We assume these values have been applied via a fcs. |
62 | * If info is not 0 we also display the current settings. | 73 | * If info is not 0 we also display the current settings. |