Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-netx/time.c |
| 3 | * |
| 4 | * Copyright (c) 2005 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 |
| 8 | * as published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
| 19 | |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/interrupt.h> |
Sascha Hauer | 1a815ae | 2006-12-12 09:23:45 +0100 | [diff] [blame] | 22 | #include <linux/irq.h> |
| 23 | #include <linux/clocksource.h> |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 24 | #include <linux/clockchips.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 25 | #include <linux/io.h> |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 26 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 27 | #include <mach/hardware.h> |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 28 | #include <asm/mach/time.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 29 | #include <mach/netx-regs.h> |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 30 | |
Uwe Kleine-König | 5e3e276 | 2013-11-12 20:56:02 +0100 | [diff] [blame] | 31 | #define NETX_CLOCK_FREQ 100000000 |
| 32 | #define NETX_LATCH DIV_ROUND_CLOSEST(NETX_CLOCK_FREQ, HZ) |
| 33 | |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 34 | #define TIMER_CLOCKEVENT 0 |
Uwe Kleine-König | 24e7857 | 2008-12-09 21:57:22 +0100 | [diff] [blame] | 35 | #define TIMER_CLOCKSOURCE 1 |
| 36 | |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 37 | static inline void timer_shutdown(struct clock_event_device *evt) |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 38 | { |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 39 | /* disable timer */ |
| 40 | writel(0, NETX_GPIO_COUNTER_CTRL(TIMER_CLOCKEVENT)); |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 41 | } |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 42 | |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 43 | static int netx_shutdown(struct clock_event_device *evt) |
| 44 | { |
| 45 | timer_shutdown(evt); |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 46 | |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 47 | return 0; |
| 48 | } |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 49 | |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 50 | static int netx_set_oneshot(struct clock_event_device *evt) |
| 51 | { |
| 52 | u32 tmode = NETX_GPIO_COUNTER_CTRL_IRQ_EN | NETX_GPIO_COUNTER_CTRL_RUN; |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 53 | |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 54 | timer_shutdown(evt); |
| 55 | writel(0, NETX_GPIO_COUNTER_MAX(TIMER_CLOCKEVENT)); |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 56 | writel(tmode, NETX_GPIO_COUNTER_CTRL(TIMER_CLOCKEVENT)); |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 57 | |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | static int netx_set_periodic(struct clock_event_device *evt) |
| 62 | { |
| 63 | u32 tmode = NETX_GPIO_COUNTER_CTRL_RST_EN | |
| 64 | NETX_GPIO_COUNTER_CTRL_IRQ_EN | NETX_GPIO_COUNTER_CTRL_RUN; |
| 65 | |
| 66 | timer_shutdown(evt); |
| 67 | writel(NETX_LATCH, NETX_GPIO_COUNTER_MAX(TIMER_CLOCKEVENT)); |
| 68 | writel(tmode, NETX_GPIO_COUNTER_CTRL(TIMER_CLOCKEVENT)); |
| 69 | |
| 70 | return 0; |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | static int netx_set_next_event(unsigned long evt, |
| 74 | struct clock_event_device *clk) |
| 75 | { |
| 76 | writel(0 - evt, NETX_GPIO_COUNTER_CURRENT(TIMER_CLOCKEVENT)); |
| 77 | return 0; |
| 78 | } |
| 79 | |
| 80 | static struct clock_event_device netx_clockevent = { |
| 81 | .name = "netx-timer" __stringify(TIMER_CLOCKEVENT), |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 82 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
| 83 | .set_next_event = netx_set_next_event, |
Viresh Kumar | c22437b | 2015-02-27 13:39:52 +0530 | [diff] [blame] | 84 | .set_state_shutdown = netx_shutdown, |
| 85 | .set_state_periodic = netx_set_periodic, |
| 86 | .set_state_oneshot = netx_set_oneshot, |
| 87 | .tick_resume = netx_shutdown, |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 88 | }; |
| 89 | |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 90 | /* |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 91 | * IRQ handler for the timer |
| 92 | */ |
| 93 | static irqreturn_t |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 94 | netx_timer_interrupt(int irq, void *dev_id) |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 95 | { |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 96 | struct clock_event_device *evt = &netx_clockevent; |
Sascha Hauer | 1a815ae | 2006-12-12 09:23:45 +0100 | [diff] [blame] | 97 | |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 98 | /* acknowledge interrupt */ |
| 99 | writel(COUNTER_BIT(0), NETX_GPIO_IRQ); |
| 100 | |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 101 | evt->event_handler(evt); |
| 102 | |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 103 | return IRQ_HANDLED; |
| 104 | } |
| 105 | |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 106 | static struct irqaction netx_timer_irq = { |
Uwe Kleine-König | 9853848 | 2008-12-09 21:57:21 +0100 | [diff] [blame] | 107 | .name = "NetX Timer Tick", |
Michael Opdenacker | 78f6db9 | 2014-03-04 22:04:50 +0100 | [diff] [blame] | 108 | .flags = IRQF_TIMER | IRQF_IRQPOLL, |
Uwe Kleine-König | 9853848 | 2008-12-09 21:57:21 +0100 | [diff] [blame] | 109 | .handler = netx_timer_interrupt, |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 110 | }; |
| 111 | |
| 112 | /* |
| 113 | * Set up timer interrupt |
| 114 | */ |
Stephen Warren | 6bb27d7 | 2012-11-08 12:40:59 -0700 | [diff] [blame] | 115 | void __init netx_timer_init(void) |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 116 | { |
| 117 | /* disable timer initially */ |
| 118 | writel(0, NETX_GPIO_COUNTER_CTRL(0)); |
| 119 | |
| 120 | /* Reset the timer value to zero */ |
| 121 | writel(0, NETX_GPIO_COUNTER_CURRENT(0)); |
| 122 | |
Uwe Kleine-König | 5e3e276 | 2013-11-12 20:56:02 +0100 | [diff] [blame] | 123 | writel(NETX_LATCH, NETX_GPIO_COUNTER_MAX(0)); |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 124 | |
| 125 | /* acknowledge interrupt */ |
| 126 | writel(COUNTER_BIT(0), NETX_GPIO_IRQ); |
| 127 | |
Uwe Kleine-König | 9853848 | 2008-12-09 21:57:21 +0100 | [diff] [blame] | 128 | /* Enable the interrupt in the specific timer |
| 129 | * register and start timer |
| 130 | */ |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 131 | writel(COUNTER_BIT(0), NETX_GPIO_IRQ_ENABLE); |
| 132 | writel(NETX_GPIO_COUNTER_CTRL_IRQ_EN | NETX_GPIO_COUNTER_CTRL_RUN, |
Uwe Kleine-König | 9853848 | 2008-12-09 21:57:21 +0100 | [diff] [blame] | 133 | NETX_GPIO_COUNTER_CTRL(0)); |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 134 | |
| 135 | setup_irq(NETX_IRQ_TIMER0, &netx_timer_irq); |
Sascha Hauer | 1a815ae | 2006-12-12 09:23:45 +0100 | [diff] [blame] | 136 | |
| 137 | /* Setup timer one for clocksource */ |
Uwe Kleine-König | 24e7857 | 2008-12-09 21:57:22 +0100 | [diff] [blame] | 138 | writel(0, NETX_GPIO_COUNTER_CTRL(TIMER_CLOCKSOURCE)); |
| 139 | writel(0, NETX_GPIO_COUNTER_CURRENT(TIMER_CLOCKSOURCE)); |
| 140 | writel(0xffffffff, NETX_GPIO_COUNTER_MAX(TIMER_CLOCKSOURCE)); |
Sascha Hauer | 1a815ae | 2006-12-12 09:23:45 +0100 | [diff] [blame] | 141 | |
Uwe Kleine-König | 9853848 | 2008-12-09 21:57:21 +0100 | [diff] [blame] | 142 | writel(NETX_GPIO_COUNTER_CTRL_RUN, |
Uwe Kleine-König | 24e7857 | 2008-12-09 21:57:22 +0100 | [diff] [blame] | 143 | NETX_GPIO_COUNTER_CTRL(TIMER_CLOCKSOURCE)); |
Sascha Hauer | 1a815ae | 2006-12-12 09:23:45 +0100 | [diff] [blame] | 144 | |
Russell King | 234b6ced | 2011-05-08 14:09:47 +0100 | [diff] [blame] | 145 | clocksource_mmio_init(NETX_GPIO_COUNTER_CURRENT(TIMER_CLOCKSOURCE), |
Uwe Kleine-König | 5e3e276 | 2013-11-12 20:56:02 +0100 | [diff] [blame] | 146 | "netx_timer", NETX_CLOCK_FREQ, 200, 32, clocksource_mmio_readl_up); |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 147 | |
Uwe Kleine-König | 2fcfe6b | 2008-12-09 21:57:24 +0100 | [diff] [blame] | 148 | /* with max_delta_ns >= delta2ns(0x800) the system currently runs fine. |
| 149 | * Adding some safety ... */ |
Russell King | 2927926 | 2009-01-08 12:02:27 +0000 | [diff] [blame] | 150 | netx_clockevent.cpumask = cpumask_of(0); |
Uwe Kleine-König | 5e3e276 | 2013-11-12 20:56:02 +0100 | [diff] [blame] | 151 | clockevents_config_and_register(&netx_clockevent, NETX_CLOCK_FREQ, |
Shawn Guo | 838a2ae | 2013-01-12 11:50:05 +0000 | [diff] [blame] | 152 | 0xa00, 0xfffffffe); |
Sascha Hauer | bb6d8c8 | 2006-06-19 15:27:53 +0100 | [diff] [blame] | 153 | } |