Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) ST-Ericsson SA 2011 |
| 3 | * |
| 4 | * License Terms: GNU General Public License v2 |
| 5 | * Author: Mattias Wallin <mattias.wallin@stericsson.com> for ST-Ericsson |
| 6 | */ |
| 7 | #include <linux/io.h> |
Linus Walleij | b1e3be06 | 2011-10-03 09:30:20 +0200 | [diff] [blame] | 8 | #include <linux/errno.h> |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 9 | #include <linux/clksrc-dbx500-prcmu.h> |
Rob Herring | da4a686 | 2013-02-06 21:17:47 -0600 | [diff] [blame] | 10 | #include <linux/clocksource.h> |
Lee Jones | 71de5c4 | 2012-03-16 09:53:24 +0000 | [diff] [blame] | 11 | #include <linux/of.h> |
Lee Jones | c51423f | 2012-04-24 10:04:46 +0100 | [diff] [blame] | 12 | #include <linux/of_address.h> |
Linus Walleij | 694e33a | 2012-10-18 14:01:25 +0200 | [diff] [blame] | 13 | #include <linux/platform_data/clocksource-nomadik-mtu.h> |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 14 | |
Marc Zyngier | 08efd6c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 15 | #include <asm/smp_twd.h> |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 16 | |
Arnd Bergmann | e657bcf | 2013-03-21 22:51:12 +0100 | [diff] [blame] | 17 | #include "setup.h" |
Arnd Bergmann | eba5274 | 2013-03-21 22:51:08 +0100 | [diff] [blame] | 18 | #include "irqs.h" |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 19 | |
Linus Walleij | 174e779 | 2013-03-19 15:41:55 +0100 | [diff] [blame] | 20 | #include "db8500-regs.h" |
Linus Walleij | 7a4f260 | 2012-09-19 19:31:19 +0200 | [diff] [blame] | 21 | #include "id.h" |
| 22 | |
Marc Zyngier | 08efd6c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 23 | #ifdef CONFIG_HAVE_ARM_TWD |
Marc Zyngier | 08efd6c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 24 | static DEFINE_TWD_LOCAL_TIMER(u8500_twd_local_timer, |
| 25 | U8500_TWD_BASE, IRQ_LOCALTIMER); |
| 26 | |
| 27 | static void __init ux500_twd_init(void) |
| 28 | { |
| 29 | struct twd_local_timer *twd_local_timer; |
| 30 | int err; |
| 31 | |
Linus Walleij | 29746f4 | 2012-04-13 13:16:31 +0200 | [diff] [blame] | 32 | /* Use this to switch local timer base if changed in new ASICs */ |
| 33 | twd_local_timer = &u8500_twd_local_timer; |
Marc Zyngier | 08efd6c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 34 | |
Lee Jones | 71de5c4 | 2012-03-16 09:53:24 +0000 | [diff] [blame] | 35 | if (of_have_populated_dt()) |
Rob Herring | da4a686 | 2013-02-06 21:17:47 -0600 | [diff] [blame] | 36 | clocksource_of_init(); |
Lee Jones | 71de5c4 | 2012-03-16 09:53:24 +0000 | [diff] [blame] | 37 | else { |
| 38 | err = twd_local_timer_register(twd_local_timer); |
| 39 | if (err) |
| 40 | pr_err("twd_local_timer_register failed %d\n", err); |
| 41 | } |
Marc Zyngier | 08efd6c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 42 | } |
| 43 | #else |
| 44 | #define ux500_twd_init() do { } while(0) |
| 45 | #endif |
| 46 | |
Lee Jones | c51423f | 2012-04-24 10:04:46 +0100 | [diff] [blame] | 47 | const static struct of_device_id prcmu_timer_of_match[] __initconst = { |
| 48 | { .compatible = "stericsson,db8500-prcmu-timer-4", }, |
| 49 | { }, |
| 50 | }; |
| 51 | |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 52 | void __init ux500_timer_init(void) |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 53 | { |
Linus Walleij | b957662 | 2012-01-11 09:46:59 +0100 | [diff] [blame] | 54 | void __iomem *mtu_timer_base; |
Linus Walleij | b1e3be06 | 2011-10-03 09:30:20 +0200 | [diff] [blame] | 55 | void __iomem *prcmu_timer_base; |
Lee Jones | c51423f | 2012-04-24 10:04:46 +0100 | [diff] [blame] | 56 | void __iomem *tmp_base; |
| 57 | struct device_node *np; |
Linus Walleij | b1e3be06 | 2011-10-03 09:30:20 +0200 | [diff] [blame] | 58 | |
Loic PALLARDY | 79964bc | 2012-09-03 15:10:23 +0200 | [diff] [blame] | 59 | if (cpu_is_u8500_family() || cpu_is_ux540_family()) { |
Linus Walleij | b957662 | 2012-01-11 09:46:59 +0100 | [diff] [blame] | 60 | mtu_timer_base = __io_address(U8500_MTU0_BASE); |
Linus Walleij | b1e3be06 | 2011-10-03 09:30:20 +0200 | [diff] [blame] | 61 | prcmu_timer_base = __io_address(U8500_PRCMU_TIMER_4_BASE); |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 62 | } else { |
| 63 | ux500_unknown_soc(); |
| 64 | } |
| 65 | |
Lee Jones | c51423f | 2012-04-24 10:04:46 +0100 | [diff] [blame] | 66 | /* TODO: Once MTU has been DT:ed place code above into else. */ |
| 67 | if (of_have_populated_dt()) { |
Lee Jones | c57920e | 2012-06-15 09:27:54 +0100 | [diff] [blame] | 68 | #ifdef CONFIG_OF |
Lee Jones | c51423f | 2012-04-24 10:04:46 +0100 | [diff] [blame] | 69 | np = of_find_matching_node(NULL, prcmu_timer_of_match); |
| 70 | if (!np) |
Lee Jones | c57920e | 2012-06-15 09:27:54 +0100 | [diff] [blame] | 71 | #endif |
Lee Jones | c51423f | 2012-04-24 10:04:46 +0100 | [diff] [blame] | 72 | goto dt_fail; |
| 73 | |
| 74 | tmp_base = of_iomap(np, 0); |
| 75 | if (!tmp_base) |
| 76 | goto dt_fail; |
| 77 | |
| 78 | prcmu_timer_base = tmp_base; |
| 79 | } |
| 80 | |
| 81 | dt_fail: |
| 82 | /* Doing it the old fashioned way. */ |
| 83 | |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 84 | /* |
| 85 | * Here we register the timerblocks active in the system. |
| 86 | * Localtimers (twd) is started when both cpu is up and running. |
| 87 | * MTU register a clocksource, clockevent and sched_clock. |
| 88 | * Since the MTU is located in the VAPE power domain |
| 89 | * it will be cleared in sleep which makes it unsuitable. |
| 90 | * We however need it as a timer tick (clockevent) |
| 91 | * during boot to calibrate delay until twd is started. |
| 92 | * RTC-RTT have problems as timer tick during boot since it is |
| 93 | * depending on delay which is not yet calibrated. RTC-RTT is in the |
| 94 | * always-on powerdomain and is used as clockevent instead of twd when |
| 95 | * sleeping. |
Linus Walleij | 29746f4 | 2012-04-13 13:16:31 +0200 | [diff] [blame] | 96 | * The PRCMU timer 4 register a clocksource and |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 97 | * sched_clock with higher rating then MTU since is always-on. |
| 98 | * |
| 99 | */ |
| 100 | |
Linus Walleij | 0813069 | 2012-10-18 11:06:02 +0200 | [diff] [blame] | 101 | nmdk_timer_init(mtu_timer_base, IRQ_MTU0); |
Linus Walleij | b1e3be06 | 2011-10-03 09:30:20 +0200 | [diff] [blame] | 102 | clksrc_dbx500_prcmu_init(prcmu_timer_base); |
Marc Zyngier | 08efd6c | 2012-01-10 19:44:19 +0000 | [diff] [blame] | 103 | ux500_twd_init(); |
Jonas Aaberg | 5f5663a | 2011-09-14 09:10:54 +0200 | [diff] [blame] | 104 | } |