blob: ef74e157a9d5d0074e8b58d94863301603348624 [file] [log] [blame]
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01001/*
Linus Walleija0719f52010-09-13 13:40:04 +01002 * linux/arch/arm/plat-nomadik/timer.c
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01003 *
4 * Copyright (C) 2008 STMicroelectronics
Alessandro Rubinib102c012010-03-05 12:38:51 +01005 * Copyright (C) 2010 Alessandro Rubini
Linus Walleij8fbb97a22010-11-19 10:16:05 +01006 * Copyright (C) 2010 Linus Walleij for ST-Ericsson
Alessandro Rubini28ad94e2009-07-02 19:06:47 +01007 *
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 Walleijba327b12010-05-26 07:38:54 +010017#include <linux/clk.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010018#include <linux/jiffies.h>
Linus Walleijba327b12010-05-26 07:38:54 +010019#include <linux/err.h>
Russell King5e06b642010-12-15 19:19:25 +000020#include <linux/sched.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010021#include <asm/mach/time.h>
Russell Kingec05aa12010-12-15 21:53:02 +000022#include <asm/sched_clock.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010023
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +010024#include <plat/mtu.h>
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010025
Linus Walleij8fbb97a22010-11-19 10:16:05 +010026void __iomem *mtu_base; /* Assigned by machine code */
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +010027
Linus Walleij2a847512010-05-07 10:03:02 +010028/*
Linus Walleij2a847512010-05-07 10:03:02 +010029 * Override the global weak sched_clock symbol with this
30 * local implementation which uses the clocksource to get some
Linus Walleij8fbb97a22010-11-19 10:16:05 +010031 * better resolution when scheduling the kernel.
Linus Walleij2a847512010-05-07 10:03:02 +010032 */
Russell Kingec05aa12010-12-15 21:53:02 +000033static DEFINE_CLOCK_DATA(cd);
Linus Walleij8fbb97a22010-11-19 10:16:05 +010034
Linus Walleij2a847512010-05-07 10:03:02 +010035unsigned long long notrace sched_clock(void)
36{
Russell Kingec05aa12010-12-15 21:53:02 +000037 u32 cyc;
Linus Walleij8fbb97a22010-11-19 10:16:05 +010038
39 if (unlikely(!mtu_base))
40 return 0;
41
Russell Kingec05aa12010-12-15 21:53:02 +000042 cyc = -readl(mtu_base + MTU_VAL(0));
43 return cyc_to_sched_clock(&cd, cyc, (u32)~0);
Linus Walleij8fbb97a22010-11-19 10:16:05 +010044}
45
Russell Kingec05aa12010-12-15 21:53:02 +000046static void notrace nomadik_update_sched_clock(void)
Linus Walleij8fbb97a22010-11-19 10:16:05 +010047{
Russell Kingec05aa12010-12-15 21:53:02 +000048 u32 cyc = -readl(mtu_base + MTU_VAL(0));
49 update_sched_clock(&cd, cyc, (u32)~0);
Linus Walleij2a847512010-05-07 10:03:02 +010050}
51
Alessandro Rubinib102c012010-03-05 12:38:51 +010052/* Clockevent device: use one-shot mode */
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010053static void nmdk_clkevt_mode(enum clock_event_mode mode,
54 struct clock_event_device *dev)
55{
Alessandro Rubinib102c012010-03-05 12:38:51 +010056 u32 cr;
57
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010058 switch (mode) {
59 case CLOCK_EVT_MODE_PERIODIC:
Alessandro Rubinib102c012010-03-05 12:38:51 +010060 pr_err("%s: periodic mode not supported\n", __func__);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010061 break;
62 case CLOCK_EVT_MODE_ONESHOT:
Alessandro Rubinib102c012010-03-05 12:38:51 +010063 /* Load highest value, enable device, enable interrupts */
64 cr = readl(mtu_base + MTU_CR(1));
65 writel(0, mtu_base + MTU_LR(1));
66 writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(1));
Linus Walleija0719f52010-09-13 13:40:04 +010067 writel(1 << 1, mtu_base + MTU_IMSC);
Alessandro Rubinib102c012010-03-05 12:38:51 +010068 break;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010069 case CLOCK_EVT_MODE_SHUTDOWN:
70 case CLOCK_EVT_MODE_UNUSED:
Alessandro Rubinib102c012010-03-05 12:38:51 +010071 /* disable irq */
72 writel(0, mtu_base + MTU_IMSC);
Linus Walleij29179472010-06-01 08:26:49 +010073 /* disable timer */
74 cr = readl(mtu_base + MTU_CR(1));
75 cr &= ~MTU_CRn_ENA;
76 writel(cr, mtu_base + MTU_CR(1));
77 /* load some high default value */
78 writel(0xffffffff, mtu_base + MTU_LR(1));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010079 break;
80 case CLOCK_EVT_MODE_RESUME:
81 break;
82 }
83}
84
Alessandro Rubinib102c012010-03-05 12:38:51 +010085static int nmdk_clkevt_next(unsigned long evt, struct clock_event_device *ev)
86{
87 /* writing the value has immediate effect */
88 writel(evt, mtu_base + MTU_LR(1));
89 return 0;
90}
91
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010092static struct clock_event_device nmdk_clkevt = {
Alessandro Rubinib102c012010-03-05 12:38:51 +010093 .name = "mtu_1",
94 .features = CLOCK_EVT_FEAT_ONESHOT,
Alessandro Rubinib102c012010-03-05 12:38:51 +010095 .rating = 200,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010096 .set_mode = nmdk_clkevt_mode,
Alessandro Rubinib102c012010-03-05 12:38:51 +010097 .set_next_event = nmdk_clkevt_next,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +010098};
99
100/*
Alessandro Rubinib102c012010-03-05 12:38:51 +0100101 * IRQ Handler for timer 1 of the MTU block.
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100102 */
103static irqreturn_t nmdk_timer_interrupt(int irq, void *dev_id)
104{
Alessandro Rubinib102c012010-03-05 12:38:51 +0100105 struct clock_event_device *evdev = dev_id;
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100106
Alessandro Rubinib102c012010-03-05 12:38:51 +0100107 writel(1 << 1, mtu_base + MTU_ICR); /* Interrupt clear reg */
108 evdev->event_handler(evdev);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100109 return IRQ_HANDLED;
110}
111
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100112static struct irqaction nmdk_timer_irq = {
113 .name = "Nomadik Timer Tick",
114 .flags = IRQF_DISABLED | IRQF_TIMER,
115 .handler = nmdk_timer_interrupt,
Alessandro Rubinib102c012010-03-05 12:38:51 +0100116 .dev_id = &nmdk_clkevt,
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100117};
118
Srinidhi Kasagar59b559d2009-11-12 06:20:54 +0100119void __init nmdk_timer_init(void)
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100120{
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100121 unsigned long rate;
Linus Walleijba327b12010-05-26 07:38:54 +0100122 struct clk *clk0;
Linus Walleija0719f52010-09-13 13:40:04 +0100123 u32 cr = MTU_CRn_32BITS;
Linus Walleijba327b12010-05-26 07:38:54 +0100124
125 clk0 = clk_get_sys("mtu0", NULL);
126 BUG_ON(IS_ERR(clk0));
127
Linus Walleijba327b12010-05-26 07:38:54 +0100128 clk_enable(clk0);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100129
Alessandro Rubinib102c012010-03-05 12:38:51 +0100130 /*
Linus Walleija0719f52010-09-13 13:40:04 +0100131 * Tick rate is 2.4MHz for Nomadik and 2.4Mhz, 100MHz or 133 MHz
132 * for ux500.
133 * Use a divide-by-16 counter if the tick rate is more than 32MHz.
134 * At 32 MHz, the timer (with 32 bit counter) can be programmed
135 * to wake-up at a max 127s a head in time. Dividing a 2.4 MHz timer
136 * with 16 gives too low timer resolution.
Alessandro Rubinib102c012010-03-05 12:38:51 +0100137 */
Linus Walleijba327b12010-05-26 07:38:54 +0100138 rate = clk_get_rate(clk0);
Linus Walleija0719f52010-09-13 13:40:04 +0100139 if (rate > 32000000) {
Alessandro Rubinib102c012010-03-05 12:38:51 +0100140 rate /= 16;
141 cr |= MTU_CRn_PRESCALE_16;
142 } else {
143 cr |= MTU_CRn_PRESCALE_1;
144 }
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100145
Alessandro Rubinib102c012010-03-05 12:38:51 +0100146 /* Timer 0 is the free running clocksource */
147 writel(cr, mtu_base + MTU_CR(0));
148 writel(0, mtu_base + MTU_LR(0));
149 writel(0, mtu_base + MTU_BGLR(0));
150 writel(cr | MTU_CRn_ENA, mtu_base + MTU_CR(0));
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100151
Russell Kingbfe45e02011-05-08 15:33:30 +0100152 if (clocksource_mmio_init(mtu_base + MTU_VAL(0), "mtu_0",
153 rate, 200, 32, clocksource_mmio_readl_down))
Alessandro Rubinib102c012010-03-05 12:38:51 +0100154 pr_err("timer: failed to initialize clock source %s\n",
Russell Kingbfe45e02011-05-08 15:33:30 +0100155 "mtu_0");
Alessandro Rubinib102c012010-03-05 12:38:51 +0100156
Russell Kingec05aa12010-12-15 21:53:02 +0000157 init_sched_clock(&cd, nomadik_update_sched_clock, 32, rate);
Linus Walleij8fbb97a22010-11-19 10:16:05 +0100158
Linus Walleij99f76892010-09-13 13:38:55 +0100159 /* Timer 1 is used for events */
160
Linus Walleij29179472010-06-01 08:26:49 +0100161 clockevents_calc_mult_shift(&nmdk_clkevt, rate, MTU_MIN_RANGE);
162
Alessandro Rubinib102c012010-03-05 12:38:51 +0100163 writel(cr | MTU_CRn_ONESHOT, mtu_base + MTU_CR(1)); /* off, currently */
Linus Walleij29179472010-06-01 08:26:49 +0100164
Alessandro Rubinib102c012010-03-05 12:38:51 +0100165 nmdk_clkevt.max_delta_ns =
166 clockevent_delta2ns(0xffffffff, &nmdk_clkevt);
167 nmdk_clkevt.min_delta_ns =
168 clockevent_delta2ns(0x00000002, &nmdk_clkevt);
169 nmdk_clkevt.cpumask = cpumask_of(0);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100170
171 /* Register irq and clockevents */
172 setup_irq(IRQ_MTU0, &nmdk_timer_irq);
Alessandro Rubini28ad94e2009-07-02 19:06:47 +0100173 clockevents_register_device(&nmdk_clkevt);
174}