blob: 08aaa4a7f65fe0e868b1a8cbfa8dd80d73209cec [file] [log] [blame]
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01001/*
2 * linux/arch/arm/mach-nomadik/timer.c
3 *
4 * Copyright (C) 2008 STMicroelectronics
Alessandro Rubinib102c012010-03-05 12:38:51 +01005 * Copyright (C) 2010 Alessandro Rubini
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2, as
9 * published by the Free Software Foundation.
10 */
11#include <linux/init.h>
12#include <linux/interrupt.h>
13#include <linux/irq.h>
14#include <linux/io.h>
15#include <linux/clockchips.h>
Linus Walleijba327b12010-05-26 07:38:54 +010016#include <linux/clk.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010017#include <linux/jiffies.h>
Linus Walleijba327b12010-05-26 07:38:54 +010018#include <linux/err.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010019#include <asm/mach/time.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010020
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +010021#include <plat/mtu.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010022
Alessandro Rubinib102c012010-03-05 12:38:51 +010023void __iomem *mtu_base; /* ssigned by machine code */
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +010024
Linus Walleij2a847512010-05-07 10:03:02 +010025/*
26 * Kernel assumes that sched_clock can be called early
27 * but the MTU may not yet be initialized.
28 */
29static cycle_t nmdk_read_timer_dummy(struct clocksource *cs)
30{
31 return 0;
32}
33
Alessandro Rubinib102c012010-03-05 12:38:51 +010034/* clocksource: MTU decrements, so we negate the value being read. */
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010035static cycle_t nmdk_read_timer(struct clocksource *cs)
36{
Alessandro Rubinib102c012010-03-05 12:38:51 +010037 return -readl(mtu_base + MTU_VAL(0));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010038}
39
40static struct clocksource nmdk_clksrc = {
41 .name = "mtu_0",
Alessandro Rubinib102c012010-03-05 12:38:51 +010042 .rating = 200,
Linus Walleij2a847512010-05-07 10:03:02 +010043 .read = nmdk_read_timer_dummy,
Alessandro Rubinib102c012010-03-05 12:38:51 +010044 .mask = CLOCKSOURCE_MASK(32),
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010045 .shift = 20,
46 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
47};
48
Linus Walleij2a847512010-05-07 10:03:02 +010049/*
50 * Override the global weak sched_clock symbol with this
51 * local implementation which uses the clocksource to get some
52 * better resolution when scheduling the kernel. We accept that
53 * this wraps around for now, since it is just a relative time
54 * stamp. (Inspired by OMAP implementation.)
55 */
56unsigned long long notrace sched_clock(void)
57{
58 return clocksource_cyc2ns(nmdk_clksrc.read(
59 &nmdk_clksrc),
60 nmdk_clksrc.mult,
61 nmdk_clksrc.shift);
62}
63
Alessandro Rubinib102c012010-03-05 12:38:51 +010064/* Clockevent device: use one-shot mode */
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010065static void nmdk_clkevt_mode(enum clock_event_mode mode,
66 struct clock_event_device *dev)
67{
Alessandro Rubinib102c012010-03-05 12:38:51 +010068 u32 cr;
69
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010070 switch (mode) {
71 case CLOCK_EVT_MODE_PERIODIC:
Alessandro Rubinib102c012010-03-05 12:38:51 +010072 pr_err("%s: periodic mode not supported\n", __func__);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010073 break;
74 case CLOCK_EVT_MODE_ONESHOT:
Alessandro Rubinib102c012010-03-05 12:38:51 +010075 /* Load highest value, enable device, enable interrupts */
76 cr = readl(mtu_base + MTU_CR(1));
77 writel(0, mtu_base + MTU_LR(1));
78 writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(1));
79 writel(0x2, mtu_base + MTU_IMSC);
80 break;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010081 case CLOCK_EVT_MODE_SHUTDOWN:
82 case CLOCK_EVT_MODE_UNUSED:
Alessandro Rubinib102c012010-03-05 12:38:51 +010083 /* disable irq */
84 writel(0, mtu_base + MTU_IMSC);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010085 break;
86 case CLOCK_EVT_MODE_RESUME:
87 break;
88 }
89}
90
Alessandro Rubinib102c012010-03-05 12:38:51 +010091static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev)
92{
93 /* writing the value has immediate effect */
94 writel(evt, mtu_base + MTU_LR(1));
95 return 0;
96}
97
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010098static struct clock_event_device nmdk_clkevt = {
Alessandro Rubinib102c012010-03-05 12:38:51 +010099 .name = "mtu_1",
100 .features = CLOCK_EVT_FEAT_ONESHOT,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100101 .shift = 32,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100102 .rating = 200,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100103 .set_mode = nmdk_clkevt_mode,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100104 .set_next_event = nmdk_clkevt_next,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100105};
106
107/*
Alessandro Rubinib102c012010-03-05 12:38:51 +0100108 * IRQ Handler for timer 1 of the MTU block.
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100109 */
110static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id)
111{
Alessandro Rubinib102c012010-03-05 12:38:51 +0100112 struct clock_event_device *evdev = dev_id;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100113
Alessandro Rubinib102c012010-03-05 12:38:51 +0100114 writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */
115 evdev->event_handler(evdev);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100116 return IRQ_HANDLED;
117}
118
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100119static struct irqaction nmdk_timer_irq = {
120 .name = "Nomadik Timer Tick",
121 .flags = IRQF_DISABLED | IRQF_TIMER,
122 .handler = nmdk_timer_interrupt,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100123 .dev_id = &nmdk_clkevt,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100124};
125
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +0100126void __init nmdk_timer_init(void)
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100127{
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100128 unsigned long rate;
Linus Walleijba327b12010-05-26 07:38:54 +0100129 struct clk *clk0;
130 struct clk *clk1;
131 u32 cr;
132
133 clk0 = clk_get_sys("mtu0", NULL);
134 BUG_ON(IS_ERR(clk0));
135
136 clk1 = clk_get_sys("mtu1", NULL);
137 BUG_ON(IS_ERR(clk1));
138
139 clk_enable(clk0);
140 clk_enable(clk1);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100141
Alessandro Rubinib102c012010-03-05 12:38:51 +0100142 /*
143 * Tick rate is 2.4MHz for Nomadik and 110MHz for ux500:
144 * use a divide-by-16 counter if it's more than 16MHz
145 */
Linus Walleijba327b12010-05-26 07:38:54 +0100146 cr = MTU_CRn_32BITS;;
147 rate = clk_get_rate(clk0);
Alessandro Rubinib102c012010-03-05 12:38:51 +0100148 if (rate > 16 << 20) {
149 rate /= 16;
150 cr |= MTU_CRn_PRESCALE_16;
151 } else {
152 cr |= MTU_CRn_PRESCALE_1;
153 }
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100154
Alessandro Rubinib102c012010-03-05 12:38:51 +0100155 /* Timer 0 is the free running clocksource */
156 writel(cr, mtu_base + MTU_CR(0));
157 writel(0, mtu_base + MTU_LR(0));
158 writel(0, mtu_base + MTU_BGLR(0));
159 writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(0));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100160
161 nmdk_clksrc.mult = clocksource_hz2mult(rate, nmdk_clksrc.shift);
Linus Walleij2a847512010-05-07 10:03:02 +0100162 /* Now the scheduling clock is ready */
163 nmdk_clksrc.read = nmdk_read_timer;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100164
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +0100165 if (clocksource_register(&nmdk_clksrc))
Alessandro Rubinib102c012010-03-05 12:38:51 +0100166 pr_err("timer: failed to initialize clock source %s\n",
167 nmdk_clksrc.name);
168
169 /* Timer 1 is used for events, fix according to rate */
Linus Walleijba327b12010-05-26 07:38:54 +0100170 cr = MTU_CRn_32BITS;
171 rate = clk_get_rate(clk1);
172 if (rate > 16 << 20) {
173 rate /= 16;
174 cr |= MTU_CRn_PRESCALE_16;
175 } else {
176 cr |= MTU_CRn_PRESCALE_1;
177 }
Alessandro Rubinib102c012010-03-05 12:38:51 +0100178 writel(cr | MTU_CRn_ONESHOT, mtu_base + MTU_CR(1)); /* off, currently */
179 nmdk_clkevt.mult = div_sc(rate, NSEC_PER_SEC, nmdk_clkevt.shift);
180 nmdk_clkevt.max_delta_ns =
181 clockevent_delta2ns(0xffffffff, &nmdk_clkevt);
182 nmdk_clkevt.min_delta_ns =
183 clockevent_delta2ns(0x00000002, &nmdk_clkevt);
184 nmdk_clkevt.cpumask = cpumask_of(0);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100185
186 /* Register irq and clockevents */
187 setup_irq(IRQ_MTU0, &nmdk_timer_irq);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100188 clockevents_register_device(&nmdk_clkevt);
189}