blob: ea3ca86c52836ba1ec9fe780da9c1629db91723f [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 .flags = CLOCK_SOURCE_IS_CONTINUOUS,
46};
47
Linus Walleij2a847512010-05-07 10:03:02 +010048/*
49 * Override the global weak sched_clock symbol with this
50 * local implementation which uses the clocksource to get some
51 * better resolution when scheduling the kernel. We accept that
52 * this wraps around for now, since it is just a relative time
53 * stamp. (Inspired by OMAP implementation.)
54 */
55unsigned long long notrace sched_clock(void)
56{
57 return clocksource_cyc2ns(nmdk_clksrc.read(
58 &nmdk_clksrc),
59 nmdk_clksrc.mult,
60 nmdk_clksrc.shift);
61}
62
Alessandro Rubinib102c012010-03-05 12:38:51 +010063/* Clockevent device: use one-shot mode */
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010064static void nmdk_clkevt_mode(enum clock_event_mode mode,
65 struct clock_event_device *dev)
66{
Alessandro Rubinib102c012010-03-05 12:38:51 +010067 u32 cr;
68
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010069 switch (mode) {
70 case CLOCK_EVT_MODE_PERIODIC:
Alessandro Rubinib102c012010-03-05 12:38:51 +010071 pr_err("%s: periodic mode not supported\n", __func__);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010072 break;
73 case CLOCK_EVT_MODE_ONESHOT:
Alessandro Rubinib102c012010-03-05 12:38:51 +010074 /* Load highest value, enable device, enable interrupts */
75 cr = readl(mtu_base + MTU_CR(1));
76 writel(0, mtu_base + MTU_LR(1));
77 writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(1));
78 writel(0x2, mtu_base + MTU_IMSC);
79 break;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010080 case CLOCK_EVT_MODE_SHUTDOWN:
81 case CLOCK_EVT_MODE_UNUSED:
Alessandro Rubinib102c012010-03-05 12:38:51 +010082 /* disable irq */
83 writel(0, mtu_base + MTU_IMSC);
Linus Walleij29179472010-06-01 08:26:49 +010084 /* disable timer */
85 cr = readl(mtu_base + MTU_CR(1));
86 cr &= ~MTU_CRn_ENA;
87 writel(cr, mtu_base + MTU_CR(1));
88 /* load some high default value */
89 writel(0xffffffff, mtu_base + MTU_LR(1));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010090 break;
91 case CLOCK_EVT_MODE_RESUME:
92 break;
93 }
94}
95
Alessandro Rubinib102c012010-03-05 12:38:51 +010096static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev)
97{
98 /* writing the value has immediate effect */
99 writel(evt, mtu_base + MTU_LR(1));
100 return 0;
101}
102
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100103static struct clock_event_device nmdk_clkevt = {
Alessandro Rubinib102c012010-03-05 12:38:51 +0100104 .name = "mtu_1",
105 .features = CLOCK_EVT_FEAT_ONESHOT,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100106 .rating = 200,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100107 .set_mode = nmdk_clkevt_mode,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100108 .set_next_event = nmdk_clkevt_next,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100109};
110
111/*
Alessandro Rubinib102c012010-03-05 12:38:51 +0100112 * IRQ Handler for timer 1 of the MTU block.
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100113 */
114static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id)
115{
Alessandro Rubinib102c012010-03-05 12:38:51 +0100116 struct clock_event_device *evdev = dev_id;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100117
Alessandro Rubinib102c012010-03-05 12:38:51 +0100118 writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */
119 evdev->event_handler(evdev);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100120 return IRQ_HANDLED;
121}
122
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100123static struct irqaction nmdk_timer_irq = {
124 .name = "Nomadik Timer Tick",
125 .flags = IRQF_DISABLED | IRQF_TIMER,
126 .handler = nmdk_timer_interrupt,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100127 .dev_id = &nmdk_clkevt,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100128};
129
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +0100130void __init nmdk_timer_init(void)
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100131{
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100132 unsigned long rate;
Linus Walleijba327b12010-05-26 07:38:54 +0100133 struct clk *clk0;
134 struct clk *clk1;
135 u32 cr;
136
137 clk0 = clk_get_sys("mtu0", NULL);
138 BUG_ON(IS_ERR(clk0));
139
140 clk1 = clk_get_sys("mtu1", NULL);
141 BUG_ON(IS_ERR(clk1));
142
143 clk_enable(clk0);
144 clk_enable(clk1);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100145
Alessandro Rubinib102c012010-03-05 12:38:51 +0100146 /*
147 * Tick rate is 2.4MHz for Nomadik and 110MHz for ux500:
148 * use a divide-by-16 counter if it's more than 16MHz
149 */
Linus Walleijba327b12010-05-26 07:38:54 +0100150 cr = MTU_CRn_32BITS;;
151 rate = clk_get_rate(clk0);
Alessandro Rubinib102c012010-03-05 12:38:51 +0100152 if (rate > 16 << 20) {
153 rate /= 16;
154 cr |= MTU_CRn_PRESCALE_16;
155 } else {
156 cr |= MTU_CRn_PRESCALE_1;
157 }
Linus Walleij29179472010-06-01 08:26:49 +0100158 clocksource_calc_mult_shift(&nmdk_clksrc, rate, MTU_MIN_RANGE);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100159
Alessandro Rubinib102c012010-03-05 12:38:51 +0100160 /* Timer 0 is the free running clocksource */
161 writel(cr, mtu_base + MTU_CR(0));
162 writel(0, mtu_base + MTU_LR(0));
163 writel(0, mtu_base + MTU_BGLR(0));
164 writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(0));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100165
Linus Walleij2a847512010-05-07 10:03:02 +0100166 /* Now the scheduling clock is ready */
167 nmdk_clksrc.read = nmdk_read_timer;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100168
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +0100169 if (clocksource_register(&nmdk_clksrc))
Alessandro Rubinib102c012010-03-05 12:38:51 +0100170 pr_err("timer: failed to initialize clock source %s\n",
171 nmdk_clksrc.name);
172
173 /* Timer 1 is used for events, fix according to rate */
Linus Walleijba327b12010-05-26 07:38:54 +0100174 cr = MTU_CRn_32BITS;
175 rate = clk_get_rate(clk1);
176 if (rate > 16 << 20) {
177 rate /= 16;
178 cr |= MTU_CRn_PRESCALE_16;
179 } else {
180 cr |= MTU_CRn_PRESCALE_1;
181 }
Linus Walleij29179472010-06-01 08:26:49 +0100182 clockevents_calc_mult_shift(&nmdk_clkevt, rate, MTU_MIN_RANGE);
183
Alessandro Rubinib102c012010-03-05 12:38:51 +0100184 writel(cr | MTU_CRn_ONESHOT, mtu_base + MTU_CR(1)); /* off, currently */
Linus Walleij29179472010-06-01 08:26:49 +0100185
Alessandro Rubinib102c012010-03-05 12:38:51 +0100186 nmdk_clkevt.max_delta_ns =
187 clockevent_delta2ns(0xffffffff, &nmdk_clkevt);
188 nmdk_clkevt.min_delta_ns =
189 clockevent_delta2ns(0x00000002, &nmdk_clkevt);
190 nmdk_clkevt.cpumask = cpumask_of(0);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100191
192 /* Register irq and clockevents */
193 setup_irq(IRQ_MTU0, &nmdk_timer_irq);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100194 clockevents_register_device(&nmdk_clkevt);
195}