Colin Cross | 2d5cd9a | 2010-01-28 16:41:42 -0800 | [diff] [blame] | 1 | /* |
| 2 | * arch/arch/mach-tegra/timer.c |
| 3 | * |
| 4 | * Copyright (C) 2010 Google, Inc. |
| 5 | * |
| 6 | * Author: |
| 7 | * Colin Cross <ccross@google.com> |
| 8 | * |
| 9 | * This software is licensed under the terms of the GNU General Public |
| 10 | * License version 2, as published by the Free Software Foundation, and |
| 11 | * may be copied, distributed, and modified under those terms. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | * |
| 18 | */ |
| 19 | |
| 20 | #include <linux/init.h> |
Russell King | 5e06b64 | 2010-12-15 19:19:25 +0000 | [diff] [blame] | 21 | #include <linux/sched.h> |
Colin Cross | 2d5cd9a | 2010-01-28 16:41:42 -0800 | [diff] [blame] | 22 | #include <linux/time.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/irq.h> |
| 25 | #include <linux/clockchips.h> |
| 26 | #include <linux/clocksource.h> |
| 27 | #include <linux/clk.h> |
| 28 | #include <linux/io.h> |
| 29 | #include <linux/cnt32_to_63.h> |
| 30 | |
| 31 | #include <asm/mach/time.h> |
Colin Cross | 2d5cd9a | 2010-01-28 16:41:42 -0800 | [diff] [blame] | 32 | #include <asm/localtimer.h> |
| 33 | |
| 34 | #include <mach/iomap.h> |
| 35 | #include <mach/irqs.h> |
| 36 | |
| 37 | #include "board.h" |
| 38 | #include "clock.h" |
| 39 | |
| 40 | #define TIMERUS_CNTR_1US 0x10 |
| 41 | #define TIMERUS_USEC_CFG 0x14 |
| 42 | #define TIMERUS_CNTR_FREEZE 0x4c |
| 43 | |
| 44 | #define TIMER1_BASE 0x0 |
| 45 | #define TIMER2_BASE 0x8 |
| 46 | #define TIMER3_BASE 0x50 |
| 47 | #define TIMER4_BASE 0x58 |
| 48 | |
| 49 | #define TIMER_PTV 0x0 |
| 50 | #define TIMER_PCR 0x4 |
| 51 | |
| 52 | struct tegra_timer; |
| 53 | |
| 54 | static void __iomem *timer_reg_base = IO_ADDRESS(TEGRA_TMR1_BASE); |
| 55 | |
| 56 | #define timer_writel(value, reg) \ |
| 57 | __raw_writel(value, (u32)timer_reg_base + (reg)) |
| 58 | #define timer_readl(reg) \ |
| 59 | __raw_readl((u32)timer_reg_base + (reg)) |
| 60 | |
| 61 | static int tegra_timer_set_next_event(unsigned long cycles, |
| 62 | struct clock_event_device *evt) |
| 63 | { |
| 64 | u32 reg; |
| 65 | |
| 66 | reg = 0x80000000 | ((cycles > 1) ? (cycles-1) : 0); |
| 67 | timer_writel(reg, TIMER3_BASE + TIMER_PTV); |
| 68 | |
| 69 | return 0; |
| 70 | } |
| 71 | |
| 72 | static void tegra_timer_set_mode(enum clock_event_mode mode, |
| 73 | struct clock_event_device *evt) |
| 74 | { |
| 75 | u32 reg; |
| 76 | |
| 77 | timer_writel(0, TIMER3_BASE + TIMER_PTV); |
| 78 | |
| 79 | switch (mode) { |
| 80 | case CLOCK_EVT_MODE_PERIODIC: |
| 81 | reg = 0xC0000000 | ((1000000/HZ)-1); |
| 82 | timer_writel(reg, TIMER3_BASE + TIMER_PTV); |
| 83 | break; |
| 84 | case CLOCK_EVT_MODE_ONESHOT: |
| 85 | break; |
| 86 | case CLOCK_EVT_MODE_UNUSED: |
| 87 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 88 | case CLOCK_EVT_MODE_RESUME: |
| 89 | break; |
| 90 | } |
| 91 | } |
| 92 | |
| 93 | static cycle_t tegra_clocksource_read(struct clocksource *cs) |
| 94 | { |
Colin Cross | 684e94c | 2010-11-17 16:20:15 -0800 | [diff] [blame] | 95 | return timer_readl(TIMERUS_CNTR_1US); |
Colin Cross | 2d5cd9a | 2010-01-28 16:41:42 -0800 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static struct clock_event_device tegra_clockevent = { |
| 99 | .name = "timer0", |
| 100 | .rating = 300, |
| 101 | .features = CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_PERIODIC, |
| 102 | .set_next_event = tegra_timer_set_next_event, |
| 103 | .set_mode = tegra_timer_set_mode, |
| 104 | }; |
| 105 | |
| 106 | static struct clocksource tegra_clocksource = { |
| 107 | .name = "timer_us", |
| 108 | .rating = 300, |
| 109 | .read = tegra_clocksource_read, |
Colin Cross | 684e94c | 2010-11-17 16:20:15 -0800 | [diff] [blame] | 110 | .mask = CLOCKSOURCE_MASK(32), |
Colin Cross | 2d5cd9a | 2010-01-28 16:41:42 -0800 | [diff] [blame] | 111 | .flags = CLOCK_SOURCE_IS_CONTINUOUS, |
| 112 | }; |
| 113 | |
Russell King | 5e06b64 | 2010-12-15 19:19:25 +0000 | [diff] [blame] | 114 | unsigned long long notrace sched_clock(void) |
Colin Cross | 2d5cd9a | 2010-01-28 16:41:42 -0800 | [diff] [blame] | 115 | { |
Colin Cross | 684e94c | 2010-11-17 16:20:15 -0800 | [diff] [blame] | 116 | return cnt32_to_63(timer_readl(TIMERUS_CNTR_1US)) * 1000; |
Colin Cross | 2d5cd9a | 2010-01-28 16:41:42 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | static irqreturn_t tegra_timer_interrupt(int irq, void *dev_id) |
| 120 | { |
| 121 | struct clock_event_device *evt = (struct clock_event_device *)dev_id; |
| 122 | timer_writel(1<<30, TIMER3_BASE + TIMER_PCR); |
| 123 | evt->event_handler(evt); |
| 124 | return IRQ_HANDLED; |
| 125 | } |
| 126 | |
| 127 | static struct irqaction tegra_timer_irq = { |
| 128 | .name = "timer0", |
| 129 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_TRIGGER_HIGH, |
| 130 | .handler = tegra_timer_interrupt, |
| 131 | .dev_id = &tegra_clockevent, |
| 132 | .irq = INT_TMR3, |
| 133 | }; |
| 134 | |
| 135 | static void __init tegra_init_timer(void) |
| 136 | { |
| 137 | unsigned long rate = clk_measure_input_freq(); |
| 138 | int ret; |
| 139 | |
| 140 | #ifdef CONFIG_HAVE_ARM_TWD |
| 141 | twd_base = IO_ADDRESS(TEGRA_ARM_PERIF_BASE + 0x600); |
| 142 | #endif |
| 143 | |
| 144 | switch (rate) { |
| 145 | case 12000000: |
| 146 | timer_writel(0x000b, TIMERUS_USEC_CFG); |
| 147 | break; |
| 148 | case 13000000: |
| 149 | timer_writel(0x000c, TIMERUS_USEC_CFG); |
| 150 | break; |
| 151 | case 19200000: |
| 152 | timer_writel(0x045f, TIMERUS_USEC_CFG); |
| 153 | break; |
| 154 | case 26000000: |
| 155 | timer_writel(0x0019, TIMERUS_USEC_CFG); |
| 156 | break; |
| 157 | default: |
| 158 | WARN(1, "Unknown clock rate"); |
| 159 | } |
| 160 | |
| 161 | if (clocksource_register_hz(&tegra_clocksource, 1000000)) { |
| 162 | printk(KERN_ERR "Failed to register clocksource\n"); |
| 163 | BUG(); |
| 164 | } |
| 165 | |
| 166 | ret = setup_irq(tegra_timer_irq.irq, &tegra_timer_irq); |
| 167 | if (ret) { |
| 168 | printk(KERN_ERR "Failed to register timer IRQ: %d\n", ret); |
| 169 | BUG(); |
| 170 | } |
| 171 | |
| 172 | clockevents_calc_mult_shift(&tegra_clockevent, 1000000, 5); |
| 173 | tegra_clockevent.max_delta_ns = |
| 174 | clockevent_delta2ns(0x1fffffff, &tegra_clockevent); |
| 175 | tegra_clockevent.min_delta_ns = |
| 176 | clockevent_delta2ns(0x1, &tegra_clockevent); |
| 177 | tegra_clockevent.cpumask = cpu_all_mask; |
| 178 | tegra_clockevent.irq = tegra_timer_irq.irq; |
| 179 | clockevents_register_device(&tegra_clockevent); |
| 180 | |
| 181 | return; |
| 182 | } |
| 183 | |
| 184 | struct sys_timer tegra_timer = { |
| 185 | .init = tegra_init_timer, |
| 186 | }; |