Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 1 | /* |
Linus Walleij | a0719f5 | 2010-09-13 13:40:04 +0100 | [diff] [blame] | 2 | * linux/arch/arm/plat-nomadik/timer.c |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2008 STMicroelectronics |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 5 | * Copyright (C) 2010 Alessandro Rubini |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 6 | * Copyright (C) 2010 Linus Walleij for ST-Ericsson |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2, as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/interrupt.h> |
| 14 | #include <linux/irq.h> |
| 15 | #include <linux/io.h> |
| 16 | #include <linux/clockchips.h> |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 17 | #include <linux/clk.h> |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 18 | #include <linux/jiffies.h> |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 19 | #include <linux/err.h> |
Russell King | 5e06b64 | 2010-12-15 19:19:25 +0000 | [diff] [blame] | 20 | #include <linux/sched.h> |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 21 | #include <asm/mach/time.h> |
Russell King | ec05aa1 | 2010-12-15 21:53:02 +0000 | [diff] [blame^] | 22 | #include <asm/sched_clock.h> |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 23 | |
Srinidhi Kasagar | 59b559d | 2009-11-12 06:20:54 +0100 | [diff] [blame] | 24 | #include <plat/mtu.h> |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 25 | |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 26 | void __iomem *mtu_base; /* Assigned by machine code */ |
Srinidhi Kasagar | 59b559d | 2009-11-12 06:20:54 +0100 | [diff] [blame] | 27 | |
Linus Walleij | 2a84751 | 2010-05-07 10:03:02 +0100 | [diff] [blame] | 28 | /* |
| 29 | * Kernel assumes that sched_clock can be called early |
| 30 | * but the MTU may not yet be initialized. |
| 31 | */ |
| 32 | static cycle_t nmdk_read_timer_dummy(struct clocksource *cs) |
| 33 | { |
| 34 | return 0; |
| 35 | } |
| 36 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 37 | /* clocksource: MTU decrements, so we negate the value being read. */ |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 38 | static cycle_t nmdk_read_timer(struct clocksource *cs) |
| 39 | { |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 40 | return -readl(mtu_base + MTU_VAL(0)); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | static struct clocksource nmdk_clksrc = { |
| 44 | .name = "mtu_0", |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 45 | .rating = 200, |
Linus Walleij | 2a84751 | 2010-05-07 10:03:02 +0100 | [diff] [blame] | 46 | .read = nmdk_read_timer_dummy, |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 47 | .mask = CLOCKSOURCE_MASK(32), |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 48 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 49 | }; |
| 50 | |
Linus Walleij | 2a84751 | 2010-05-07 10:03:02 +0100 | [diff] [blame] | 51 | /* |
| 52 | * Override the global weak sched_clock symbol with this |
| 53 | * local implementation which uses the clocksource to get some |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 54 | * better resolution when scheduling the kernel. |
Linus Walleij | 2a84751 | 2010-05-07 10:03:02 +0100 | [diff] [blame] | 55 | */ |
Russell King | ec05aa1 | 2010-12-15 21:53:02 +0000 | [diff] [blame^] | 56 | static DEFINE_CLOCK_DATA(cd); |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 57 | |
Linus Walleij | 2a84751 | 2010-05-07 10:03:02 +0100 | [diff] [blame] | 58 | unsigned long long notrace sched_clock(void) |
| 59 | { |
Russell King | ec05aa1 | 2010-12-15 21:53:02 +0000 | [diff] [blame^] | 60 | u32 cyc; |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 61 | |
| 62 | if (unlikely(!mtu_base)) |
| 63 | return 0; |
| 64 | |
Russell King | ec05aa1 | 2010-12-15 21:53:02 +0000 | [diff] [blame^] | 65 | cyc = -readl(mtu_base + MTU_VAL(0)); |
| 66 | return cyc_to_sched_clock(&cd, cyc, (u32)~0); |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 67 | } |
| 68 | |
Russell King | ec05aa1 | 2010-12-15 21:53:02 +0000 | [diff] [blame^] | 69 | static void notrace nomadik_update_sched_clock(void) |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 70 | { |
Russell King | ec05aa1 | 2010-12-15 21:53:02 +0000 | [diff] [blame^] | 71 | u32 cyc = -readl(mtu_base + MTU_VAL(0)); |
| 72 | update_sched_clock(&cd, cyc, (u32)~0); |
Linus Walleij | 2a84751 | 2010-05-07 10:03:02 +0100 | [diff] [blame] | 73 | } |
| 74 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 75 | /* Clockevent device: use one-shot mode */ |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 76 | static void nmdk_clkevt_mode(enum clock_event_mode mode, |
| 77 | struct clock_event_device *dev) |
| 78 | { |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 79 | u32 cr; |
| 80 | |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 81 | switch (mode) { |
| 82 | case CLOCK_EVT_MODE_PERIODIC: |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 83 | pr_err("%s: periodic mode not supported\n", __func__); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 84 | break; |
| 85 | case CLOCK_EVT_MODE_ONESHOT: |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 86 | /* Load highest value, enable device, enable interrupts */ |
| 87 | cr = readl(mtu_base + MTU_CR(1)); |
| 88 | writel(0, mtu_base + MTU_LR(1)); |
| 89 | writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(1)); |
Linus Walleij | a0719f5 | 2010-09-13 13:40:04 +0100 | [diff] [blame] | 90 | writel(1 << 1, mtu_base + MTU_IMSC); |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 91 | break; |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 92 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 93 | case CLOCK_EVT_MODE_UNUSED: |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 94 | /* disable irq */ |
| 95 | writel(0, mtu_base + MTU_IMSC); |
Linus Walleij | 2917947 | 2010-06-01 08:26:49 +0100 | [diff] [blame] | 96 | /* disable timer */ |
| 97 | cr = readl(mtu_base + MTU_CR(1)); |
| 98 | cr &= ~MTU_CRn_ENA; |
| 99 | writel(cr, mtu_base + MTU_CR(1)); |
| 100 | /* load some high default value */ |
| 101 | writel(0xffffffff, mtu_base + MTU_LR(1)); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 102 | break; |
| 103 | case CLOCK_EVT_MODE_RESUME: |
| 104 | break; |
| 105 | } |
| 106 | } |
| 107 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 108 | static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev) |
| 109 | { |
| 110 | /* writing the value has immediate effect */ |
| 111 | writel(evt, mtu_base + MTU_LR(1)); |
| 112 | return 0; |
| 113 | } |
| 114 | |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 115 | static struct clock_event_device nmdk_clkevt = { |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 116 | .name = "mtu_1", |
| 117 | .features = CLOCK_EVT_FEAT_ONESHOT, |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 118 | .rating = 200, |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 119 | .set_mode = nmdk_clkevt_mode, |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 120 | .set_next_event = nmdk_clkevt_next, |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 121 | }; |
| 122 | |
| 123 | /* |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 124 | * IRQ Handler for timer 1 of the MTU block. |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 125 | */ |
| 126 | static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id) |
| 127 | { |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 128 | struct clock_event_device *evdev = dev_id; |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 129 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 130 | writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */ |
| 131 | evdev->event_handler(evdev); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 132 | return IRQ_HANDLED; |
| 133 | } |
| 134 | |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 135 | static struct irqaction nmdk_timer_irq = { |
| 136 | .name = "Nomadik Timer Tick", |
| 137 | .flags = IRQF_DISABLED | IRQF_TIMER, |
| 138 | .handler = nmdk_timer_interrupt, |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 139 | .dev_id = &nmdk_clkevt, |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 140 | }; |
| 141 | |
Srinidhi Kasagar | 59b559d | 2009-11-12 06:20:54 +0100 | [diff] [blame] | 142 | void __init nmdk_timer_init(void) |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 143 | { |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 144 | unsigned long rate; |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 145 | struct clk *clk0; |
Linus Walleij | a0719f5 | 2010-09-13 13:40:04 +0100 | [diff] [blame] | 146 | u32 cr = MTU_CRn_32BITS; |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 147 | |
| 148 | clk0 = clk_get_sys("mtu0", NULL); |
| 149 | BUG_ON(IS_ERR(clk0)); |
| 150 | |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 151 | clk_enable(clk0); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 152 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 153 | /* |
Linus Walleij | a0719f5 | 2010-09-13 13:40:04 +0100 | [diff] [blame] | 154 | * Tick rate is 2.4MHz for Nomadik and 2.4Mhz, 100MHz or 133 MHz |
| 155 | * for ux500. |
| 156 | * Use a divide-by-16 counter if the tick rate is more than 32MHz. |
| 157 | * At 32 MHz, the timer (with 32 bit counter) can be programmed |
| 158 | * to wake-up at a max 127s a head in time. Dividing a 2.4 MHz timer |
| 159 | * with 16 gives too low timer resolution. |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 160 | */ |
Linus Walleij | ba327b1 | 2010-05-26 07:38:54 +0100 | [diff] [blame] | 161 | rate = clk_get_rate(clk0); |
Linus Walleij | a0719f5 | 2010-09-13 13:40:04 +0100 | [diff] [blame] | 162 | if (rate > 32000000) { |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 163 | rate /= 16; |
| 164 | cr |= MTU_CRn_PRESCALE_16; |
| 165 | } else { |
| 166 | cr |= MTU_CRn_PRESCALE_1; |
| 167 | } |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 168 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 169 | /* Timer 0 is the free running clocksource */ |
| 170 | writel(cr, mtu_base + MTU_CR(0)); |
| 171 | writel(0, mtu_base + MTU_LR(0)); |
| 172 | writel(0, mtu_base + MTU_BGLR(0)); |
| 173 | writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(0)); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 174 | |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 175 | /* Now the clock source is ready */ |
Linus Walleij | 2a84751 | 2010-05-07 10:03:02 +0100 | [diff] [blame] | 176 | nmdk_clksrc.read = nmdk_read_timer; |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 177 | |
Russell King | 8492fd2 | 2010-12-13 13:20:49 +0000 | [diff] [blame] | 178 | if (clocksource_register_hz(&nmdk_clksrc, rate)) |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 179 | pr_err("timer: failed to initialize clock source %s\n", |
| 180 | nmdk_clksrc.name); |
| 181 | |
Russell King | ec05aa1 | 2010-12-15 21:53:02 +0000 | [diff] [blame^] | 182 | init_sched_clock(&cd, nomadik_update_sched_clock, 32, rate); |
Linus Walleij | 8fbb97a2 | 2010-11-19 10:16:05 +0100 | [diff] [blame] | 183 | |
Linus Walleij | 99f7689 | 2010-09-13 13:38:55 +0100 | [diff] [blame] | 184 | /* Timer 1 is used for events */ |
| 185 | |
Linus Walleij | 2917947 | 2010-06-01 08:26:49 +0100 | [diff] [blame] | 186 | clockevents_calc_mult_shift(&nmdk_clkevt, rate, MTU_MIN_RANGE); |
| 187 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 188 | writel(cr | MTU_CRn_ONESHOT, mtu_base + MTU_CR(1)); /* off, currently */ |
Linus Walleij | 2917947 | 2010-06-01 08:26:49 +0100 | [diff] [blame] | 189 | |
Alessandro Rubini | b102c01 | 2010-03-05 12:38:51 +0100 | [diff] [blame] | 190 | nmdk_clkevt.max_delta_ns = |
| 191 | clockevent_delta2ns(0xffffffff, &nmdk_clkevt); |
| 192 | nmdk_clkevt.min_delta_ns = |
| 193 | clockevent_delta2ns(0x00000002, &nmdk_clkevt); |
| 194 | nmdk_clkevt.cpumask = cpumask_of(0); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 195 | |
| 196 | /* Register irq and clockevents */ |
| 197 | setup_irq(IRQ_MTU0, &nmdk_timer_irq); |
Alessandro Rubini | 28ad94e | 2009-07-02 19:06:47 +0100 | [diff] [blame] | 198 | clockevents_register_device(&nmdk_clkevt); |
| 199 | } |