blob: dd4b164d18317de367c3dcb3f86decae3711aef0 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Walleij361c81f2015-06-15 13:15:26 +02002#include <linux/kernel.h>
3#include <linux/init.h>
Linus Walleij000bc172015-06-15 14:34:03 +02004#include <linux/clocksource.h>
5#include <linux/clockchips.h>
6#include <linux/sched_clock.h>
Linus Walleij361c81f2015-06-15 13:15:26 +02007#include <linux/interrupt.h>
8#include <linux/irq.h>
9#include <linux/io.h>
10#include <asm/mach/time.h>
11#include "soc.h"
12
13/*************************************************************************
14 * Timer handling for EP93xx
15 *************************************************************************
16 * The ep93xx has four internal timers. Timers 1, 2 (both 16 bit) and
17 * 3 (32 bit) count down at 508 kHz, are self-reloading, and can generate
18 * an interrupt on underflow. Timer 4 (40 bit) counts down at 983.04 kHz,
19 * is free-running, and can't generate interrupts.
20 *
21 * The 508 kHz timers are ideal for use for the timer interrupt, as the
Linus Walleij8ed39122015-06-16 09:00:44 +020022 * most common values of HZ divide 508 kHz nicely. We pick the 32 bit
23 * timer (timer 3) to get as long sleep intervals as possible when using
24 * CONFIG_NO_HZ.
Linus Walleij361c81f2015-06-15 13:15:26 +020025 *
26 * The higher clock rate of timer 4 makes it a better choice than the
Linus Walleij8ed39122015-06-16 09:00:44 +020027 * other timers for use as clock source and for sched_clock(), providing
28 * a stable 40 bit time base.
29 *************************************************************************
Linus Walleij361c81f2015-06-15 13:15:26 +020030 */
31#define EP93XX_TIMER_REG(x) (EP93XX_TIMER_BASE + (x))
32#define EP93XX_TIMER1_LOAD EP93XX_TIMER_REG(0x00)
33#define EP93XX_TIMER1_VALUE EP93XX_TIMER_REG(0x04)
34#define EP93XX_TIMER1_CONTROL EP93XX_TIMER_REG(0x08)
35#define EP93XX_TIMER123_CONTROL_ENABLE (1 << 7)
36#define EP93XX_TIMER123_CONTROL_MODE (1 << 6)
37#define EP93XX_TIMER123_CONTROL_CLKSEL (1 << 3)
38#define EP93XX_TIMER1_CLEAR EP93XX_TIMER_REG(0x0c)
39#define EP93XX_TIMER2_LOAD EP93XX_TIMER_REG(0x20)
40#define EP93XX_TIMER2_VALUE EP93XX_TIMER_REG(0x24)
41#define EP93XX_TIMER2_CONTROL EP93XX_TIMER_REG(0x28)
42#define EP93XX_TIMER2_CLEAR EP93XX_TIMER_REG(0x2c)
43#define EP93XX_TIMER4_VALUE_LOW EP93XX_TIMER_REG(0x60)
44#define EP93XX_TIMER4_VALUE_HIGH EP93XX_TIMER_REG(0x64)
45#define EP93XX_TIMER4_VALUE_HIGH_ENABLE (1 << 8)
46#define EP93XX_TIMER3_LOAD EP93XX_TIMER_REG(0x80)
47#define EP93XX_TIMER3_VALUE EP93XX_TIMER_REG(0x84)
48#define EP93XX_TIMER3_CONTROL EP93XX_TIMER_REG(0x88)
49#define EP93XX_TIMER3_CLEAR EP93XX_TIMER_REG(0x8c)
50
Linus Walleij000bc172015-06-15 14:34:03 +020051#define EP93XX_TIMER123_RATE 508469
52#define EP93XX_TIMER4_RATE 983040
Linus Walleij361c81f2015-06-15 13:15:26 +020053
Linus Walleij000bc172015-06-15 14:34:03 +020054static u64 notrace ep93xx_read_sched_clock(void)
55{
56 u64 ret;
Linus Walleij361c81f2015-06-15 13:15:26 +020057
Linus Walleijd118d972015-06-15 14:38:16 +020058 ret = readl(EP93XX_TIMER4_VALUE_LOW);
59 ret |= ((u64) (readl(EP93XX_TIMER4_VALUE_HIGH) & 0xff) << 32);
Linus Walleij000bc172015-06-15 14:34:03 +020060 return ret;
61}
62
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010063u64 ep93xx_clocksource_read(struct clocksource *c)
Linus Walleij000bc172015-06-15 14:34:03 +020064{
65 u64 ret;
66
Linus Walleijd118d972015-06-15 14:38:16 +020067 ret = readl(EP93XX_TIMER4_VALUE_LOW);
68 ret |= ((u64) (readl(EP93XX_TIMER4_VALUE_HIGH) & 0xff) << 32);
Thomas Gleixnera5a1d1c2016-12-21 20:32:01 +010069 return (u64) ret;
Linus Walleij000bc172015-06-15 14:34:03 +020070}
71
72static int ep93xx_clkevt_set_next_event(unsigned long next,
73 struct clock_event_device *evt)
74{
75 /* Default mode: periodic, off, 508 kHz */
76 u32 tmode = EP93XX_TIMER123_CONTROL_MODE |
77 EP93XX_TIMER123_CONTROL_CLKSEL;
78
79 /* Clear timer */
Linus Walleijd5878e62015-06-15 14:42:25 +020080 writel(tmode, EP93XX_TIMER3_CONTROL);
Linus Walleij000bc172015-06-15 14:34:03 +020081
82 /* Set next event */
Linus Walleijd5878e62015-06-15 14:42:25 +020083 writel(next, EP93XX_TIMER3_LOAD);
Linus Walleijd118d972015-06-15 14:38:16 +020084 writel(tmode | EP93XX_TIMER123_CONTROL_ENABLE,
Linus Walleijd5878e62015-06-15 14:42:25 +020085 EP93XX_TIMER3_CONTROL);
Linus Walleij000bc172015-06-15 14:34:03 +020086 return 0;
87}
88
89
Viresh Kumara54868b2015-08-06 14:41:13 +053090static int ep93xx_clkevt_shutdown(struct clock_event_device *evt)
Linus Walleij000bc172015-06-15 14:34:03 +020091{
92 /* Disable timer */
Linus Walleijd5878e62015-06-15 14:42:25 +020093 writel(0, EP93XX_TIMER3_CONTROL);
Viresh Kumara54868b2015-08-06 14:41:13 +053094
95 return 0;
Linus Walleij000bc172015-06-15 14:34:03 +020096}
97
98static struct clock_event_device ep93xx_clockevent = {
Viresh Kumara54868b2015-08-06 14:41:13 +053099 .name = "timer1",
100 .features = CLOCK_EVT_FEAT_ONESHOT,
101 .set_state_shutdown = ep93xx_clkevt_shutdown,
102 .set_state_oneshot = ep93xx_clkevt_shutdown,
103 .tick_resume = ep93xx_clkevt_shutdown,
104 .set_next_event = ep93xx_clkevt_set_next_event,
105 .rating = 300,
Linus Walleij000bc172015-06-15 14:34:03 +0200106};
Linus Walleij361c81f2015-06-15 13:15:26 +0200107
108static irqreturn_t ep93xx_timer_interrupt(int irq, void *dev_id)
109{
Linus Walleij000bc172015-06-15 14:34:03 +0200110 struct clock_event_device *evt = dev_id;
111
Linus Walleij361c81f2015-06-15 13:15:26 +0200112 /* Writing any value clears the timer interrupt */
Linus Walleijd5878e62015-06-15 14:42:25 +0200113 writel(1, EP93XX_TIMER3_CLEAR);
Linus Walleij361c81f2015-06-15 13:15:26 +0200114
Linus Walleij000bc172015-06-15 14:34:03 +0200115 evt->event_handler(evt);
Linus Walleij361c81f2015-06-15 13:15:26 +0200116
117 return IRQ_HANDLED;
118}
119
Linus Walleij361c81f2015-06-15 13:15:26 +0200120void __init ep93xx_timer_init(void)
121{
afzal mohammed2164f342020-03-27 18:11:43 +0530122 int irq = IRQ_EP93XX_TIMER3;
123 unsigned long flags = IRQF_TIMER | IRQF_IRQPOLL;
124
Linus Walleij000bc172015-06-15 14:34:03 +0200125 /* Enable and register clocksource and sched_clock on timer 4 */
Linus Walleijd118d972015-06-15 14:38:16 +0200126 writel(EP93XX_TIMER4_VALUE_HIGH_ENABLE,
127 EP93XX_TIMER4_VALUE_HIGH);
Linus Walleij000bc172015-06-15 14:34:03 +0200128 clocksource_mmio_init(NULL, "timer4",
129 EP93XX_TIMER4_RATE, 200, 40,
130 ep93xx_clocksource_read);
131 sched_clock_register(ep93xx_read_sched_clock, 40,
132 EP93XX_TIMER4_RATE);
Linus Walleij361c81f2015-06-15 13:15:26 +0200133
Linus Walleijd5878e62015-06-15 14:42:25 +0200134 /* Set up clockevent on timer 3 */
afzal mohammed2164f342020-03-27 18:11:43 +0530135 if (request_irq(irq, ep93xx_timer_interrupt, flags, "ep93xx timer",
136 &ep93xx_clockevent))
137 pr_err("Failed to request irq %d (ep93xx timer)\n", irq);
Linus Walleij000bc172015-06-15 14:34:03 +0200138 clockevents_config_and_register(&ep93xx_clockevent,
139 EP93XX_TIMER123_RATE,
140 1,
Linus Walleijd5878e62015-06-15 14:42:25 +0200141 0xffffffffU);
Linus Walleij361c81f2015-06-15 13:15:26 +0200142}