aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/kernel/arch_timer.c
diff options
context:
space:
mode:
authorMarc Zyngier <marc.zyngier@arm.com>2012-04-27 08:18:42 -0400
committerMarc Zyngier <marc.zyngier@arm.com>2012-04-27 08:39:25 -0400
commitfb8a99f9f6bdc908cbbd2284cee80c709d9f7c03 (patch)
treec99ea6cd79714e25e016c7270e5191b0e9dfcd6f /arch/arm/kernel/arch_timer.c
parent120f3d6c2309cde8b93310267ed11a9b5aa2aad4 (diff)
ARM: architected timers: remove support for non DT platforms
All mainline platforms using the ARM architected timers are DT only. As such, remove the ad-hoc support that is not longer needed anymore. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'arch/arm/kernel/arch_timer.c')
-rw-r--r--arch/arm/kernel/arch_timer.c19
1 files changed, 2 insertions, 17 deletions
diff --git a/arch/arm/kernel/arch_timer.c b/arch/arm/kernel/arch_timer.c
index 154f0a1756b1..dd58035621f7 100644
--- a/arch/arm/kernel/arch_timer.c
+++ b/arch/arm/kernel/arch_timer.c
@@ -248,7 +248,7 @@ static struct local_timer_ops arch_timer_ops __cpuinitdata = {
248 248
249static struct clock_event_device arch_timer_global_evt; 249static struct clock_event_device arch_timer_global_evt;
250 250
251static int __init arch_timer_common_register(void) 251static int __init arch_timer_register(void)
252{ 252{
253 int err; 253 int err;
254 254
@@ -309,20 +309,6 @@ out_free:
309 return err; 309 return err;
310} 310}
311 311
312int __init arch_timer_register(struct arch_timer *at)
313{
314 if (at->res[0].start <= 0 || !(at->res[0].flags & IORESOURCE_IRQ))
315 return -EINVAL;
316
317 arch_timer_ppi = at->res[0].start;
318
319 if (at->res[1].start > 0 || (at->res[1].flags & IORESOURCE_IRQ))
320 arch_timer_ppi2 = at->res[1].start;
321
322 return arch_timer_common_register();
323}
324
325#ifdef CONFIG_OF
326static const struct of_device_id arch_timer_of_match[] __initconst = { 312static const struct of_device_id arch_timer_of_match[] __initconst = {
327 { .compatible = "arm,armv7-timer", }, 313 { .compatible = "arm,armv7-timer", },
328 {}, 314 {},
@@ -348,9 +334,8 @@ int __init arch_timer_of_register(void)
348 pr_info("arch_timer: found %s irqs %d %d\n", 334 pr_info("arch_timer: found %s irqs %d %d\n",
349 np->name, arch_timer_ppi, arch_timer_ppi2); 335 np->name, arch_timer_ppi, arch_timer_ppi2);
350 336
351 return arch_timer_common_register(); 337 return arch_timer_register();
352} 338}
353#endif
354 339
355int __init arch_timer_sched_clock_init(void) 340int __init arch_timer_sched_clock_init(void)
356{ 341{