2006-12-01 08:04:47 +00:00
|
|
|
/*
|
2008-04-16 19:43:49 +00:00
|
|
|
* at91sam926x_time.c - Periodic Interval Timer (PIT) for at91sam926x
|
2006-12-01 08:04:47 +00:00
|
|
|
*
|
|
|
|
* Copyright (C) 2005-2006 M. Amine SAYA, ATMEL Rousset, France
|
|
|
|
* Revision 2005 M. Nicolas Diremdjian, ATMEL Rousset, France
|
2008-04-16 19:43:49 +00:00
|
|
|
* Converted to ClockSource/ClockEvents by David Brownell.
|
2006-12-01 08:04:47 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
2014-07-01 09:33:14 +00:00
|
|
|
|
2014-07-01 09:33:21 +00:00
|
|
|
#define pr_fmt(fmt) "AT91: PIT: " fmt
|
|
|
|
|
2014-07-01 09:33:14 +00:00
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/clockchips.h>
|
2006-12-01 08:04:47 +00:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/irq.h>
|
|
|
|
#include <linux/kernel.h>
|
2012-02-27 10:19:34 +00:00
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/of_address.h>
|
|
|
|
#include <linux/of_irq.h>
|
2014-07-01 09:33:23 +00:00
|
|
|
#include <linux/slab.h>
|
2006-12-01 08:04:47 +00:00
|
|
|
|
2012-10-30 00:09:09 +00:00
|
|
|
#define AT91_PIT_MR 0x00 /* Mode Register */
|
2014-07-01 09:33:14 +00:00
|
|
|
#define AT91_PIT_PITIEN BIT(25) /* Timer Interrupt Enable */
|
|
|
|
#define AT91_PIT_PITEN BIT(24) /* Timer Enabled */
|
|
|
|
#define AT91_PIT_PIV GENMASK(19, 0) /* Periodic Interval Value */
|
2012-10-30 00:09:09 +00:00
|
|
|
|
|
|
|
#define AT91_PIT_SR 0x04 /* Status Register */
|
2014-07-01 09:33:14 +00:00
|
|
|
#define AT91_PIT_PITS BIT(0) /* Timer Status */
|
2012-10-30 00:09:09 +00:00
|
|
|
|
|
|
|
#define AT91_PIT_PIVR 0x08 /* Periodic Interval Value Register */
|
|
|
|
#define AT91_PIT_PIIR 0x0c /* Periodic Interval Image Register */
|
2014-07-01 09:33:14 +00:00
|
|
|
#define AT91_PIT_PICNT GENMASK(31, 20) /* Interval Counter */
|
|
|
|
#define AT91_PIT_CPIV GENMASK(19, 0) /* Inverval Value */
|
2006-12-01 08:04:47 +00:00
|
|
|
|
|
|
|
#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
|
|
|
|
#define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
|
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data {
|
|
|
|
struct clock_event_device clkevt;
|
|
|
|
struct clocksource clksrc;
|
2008-04-16 19:43:49 +00:00
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
void __iomem *base;
|
|
|
|
u32 cycle;
|
|
|
|
u32 cnt;
|
|
|
|
unsigned int irq;
|
|
|
|
struct clk *mck;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct pit_data *clksrc_to_pit_data(struct clocksource *clksrc)
|
2011-09-18 14:29:50 +00:00
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
return container_of(clksrc, struct pit_data, clksrc);
|
2011-09-18 14:29:50 +00:00
|
|
|
}
|
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
static inline struct pit_data *clkevt_to_pit_data(struct clock_event_device *clkevt)
|
2011-09-18 14:29:50 +00:00
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
return container_of(clkevt, struct pit_data, clkevt);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned int pit_read(void __iomem *base, unsigned int reg_offset)
|
|
|
|
{
|
|
|
|
return __raw_readl(base + reg_offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void pit_write(void __iomem *base, unsigned int reg_offset, unsigned long value)
|
|
|
|
{
|
|
|
|
__raw_writel(value, base + reg_offset);
|
2011-09-18 14:29:50 +00:00
|
|
|
}
|
2008-04-16 19:43:49 +00:00
|
|
|
|
2006-12-01 08:04:47 +00:00
|
|
|
/*
|
2008-04-16 19:43:49 +00:00
|
|
|
* Clocksource: just a monotonic counter of MCK/16 cycles.
|
|
|
|
* We don't care whether or not PIT irqs are enabled.
|
2006-12-01 08:04:47 +00:00
|
|
|
*/
|
2009-04-21 19:24:00 +00:00
|
|
|
static cycle_t read_pit_clk(struct clocksource *cs)
|
2006-12-01 08:04:47 +00:00
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data *data = clksrc_to_pit_data(cs);
|
2008-04-16 19:43:49 +00:00
|
|
|
unsigned long flags;
|
|
|
|
u32 elapsed;
|
|
|
|
u32 t;
|
|
|
|
|
|
|
|
raw_local_irq_save(flags);
|
2014-07-01 09:33:23 +00:00
|
|
|
elapsed = data->cnt;
|
|
|
|
t = pit_read(data->base, AT91_PIT_PIIR);
|
2008-04-16 19:43:49 +00:00
|
|
|
raw_local_irq_restore(flags);
|
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
elapsed += PIT_PICNT(t) * data->cycle;
|
2008-04-16 19:43:49 +00:00
|
|
|
elapsed += PIT_CPIV(t);
|
|
|
|
return elapsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Clockevent device: interrupts every 1/HZ (== pit_cycles * MCK/16)
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
pit_clkevt_mode(enum clock_event_mode mode, struct clock_event_device *dev)
|
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data *data = clkevt_to_pit_data(dev);
|
|
|
|
|
2008-04-16 19:43:49 +00:00
|
|
|
switch (mode) {
|
|
|
|
case CLOCK_EVT_MODE_PERIODIC:
|
2009-09-21 07:30:09 +00:00
|
|
|
/* update clocksource counter */
|
2014-07-01 09:33:23 +00:00
|
|
|
data->cnt += data->cycle * PIT_PICNT(pit_read(data->base, AT91_PIT_PIVR));
|
|
|
|
pit_write(data->base, AT91_PIT_MR,
|
|
|
|
(data->cycle - 1) | AT91_PIT_PITEN | AT91_PIT_PITIEN);
|
2008-04-16 19:43:49 +00:00
|
|
|
break;
|
|
|
|
case CLOCK_EVT_MODE_ONESHOT:
|
|
|
|
BUG();
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case CLOCK_EVT_MODE_SHUTDOWN:
|
|
|
|
case CLOCK_EVT_MODE_UNUSED:
|
|
|
|
/* disable irq, leaving the clocksource active */
|
2014-07-01 09:33:23 +00:00
|
|
|
pit_write(data->base, AT91_PIT_MR,
|
|
|
|
(data->cycle - 1) | AT91_PIT_PITEN);
|
2008-04-16 19:43:49 +00:00
|
|
|
break;
|
|
|
|
case CLOCK_EVT_MODE_RESUME:
|
|
|
|
break;
|
|
|
|
}
|
2006-12-01 08:04:47 +00:00
|
|
|
}
|
|
|
|
|
2012-11-07 23:32:41 +00:00
|
|
|
static void at91sam926x_pit_suspend(struct clock_event_device *cedev)
|
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data *data = clkevt_to_pit_data(cedev);
|
|
|
|
|
2012-11-07 23:32:41 +00:00
|
|
|
/* Disable timer */
|
2014-07-01 09:33:23 +00:00
|
|
|
pit_write(data->base, AT91_PIT_MR, 0);
|
2012-11-07 23:32:41 +00:00
|
|
|
}
|
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
static void at91sam926x_pit_reset(struct pit_data *data)
|
2012-11-07 23:32:41 +00:00
|
|
|
{
|
|
|
|
/* Disable timer and irqs */
|
2014-07-01 09:33:23 +00:00
|
|
|
pit_write(data->base, AT91_PIT_MR, 0);
|
2012-11-07 23:32:41 +00:00
|
|
|
|
|
|
|
/* Clear any pending interrupts, wait for PIT to stop counting */
|
2014-07-01 09:33:23 +00:00
|
|
|
while (PIT_CPIV(pit_read(data->base, AT91_PIT_PIVR)) != 0)
|
2012-11-07 23:32:41 +00:00
|
|
|
cpu_relax();
|
|
|
|
|
|
|
|
/* Start PIT but don't enable IRQ */
|
2014-07-01 09:33:23 +00:00
|
|
|
pit_write(data->base, AT91_PIT_MR,
|
|
|
|
(data->cycle - 1) | AT91_PIT_PITEN);
|
2012-11-07 23:32:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void at91sam926x_pit_resume(struct clock_event_device *cedev)
|
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data *data = clkevt_to_pit_data(cedev);
|
2008-04-16 19:43:49 +00:00
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
at91sam926x_pit_reset(data);
|
|
|
|
}
|
2008-04-16 19:43:49 +00:00
|
|
|
|
2006-12-01 08:04:47 +00:00
|
|
|
/*
|
|
|
|
* IRQ handler for the timer.
|
|
|
|
*/
|
2008-04-16 19:43:49 +00:00
|
|
|
static irqreturn_t at91sam926x_pit_interrupt(int irq, void *dev_id)
|
2006-12-01 08:04:47 +00:00
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data *data = dev_id;
|
|
|
|
|
2009-09-21 07:30:09 +00:00
|
|
|
/*
|
|
|
|
* irqs should be disabled here, but as the irq is shared they are only
|
|
|
|
* guaranteed to be off if the timer irq is registered first.
|
|
|
|
*/
|
|
|
|
WARN_ON_ONCE(!irqs_disabled());
|
2006-12-01 08:04:47 +00:00
|
|
|
|
2008-04-16 19:43:49 +00:00
|
|
|
/* The PIT interrupt may be disabled, and is shared */
|
2014-07-01 09:33:23 +00:00
|
|
|
if ((data->clkevt.mode == CLOCK_EVT_MODE_PERIODIC) &&
|
|
|
|
(pit_read(data->base, AT91_PIT_SR) & AT91_PIT_PITS)) {
|
2008-04-16 19:43:49 +00:00
|
|
|
unsigned nr_ticks;
|
|
|
|
|
|
|
|
/* Get number of ticks performed before irq, and ack it */
|
2014-07-01 09:33:23 +00:00
|
|
|
nr_ticks = PIT_PICNT(pit_read(data->base, AT91_PIT_PIVR));
|
2006-12-01 08:04:47 +00:00
|
|
|
do {
|
2014-07-01 09:33:23 +00:00
|
|
|
data->cnt += data->cycle;
|
|
|
|
data->clkevt.event_handler(&data->clkevt);
|
2006-12-01 08:04:47 +00:00
|
|
|
nr_ticks--;
|
|
|
|
} while (nr_ticks);
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
2008-04-16 19:43:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return IRQ_NONE;
|
2006-12-01 08:04:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2008-04-16 19:43:49 +00:00
|
|
|
* Set up both clocksource and clockevent support.
|
2006-12-01 08:04:47 +00:00
|
|
|
*/
|
2014-07-01 09:33:23 +00:00
|
|
|
static void __init at91sam926x_pit_common_init(struct pit_data *data)
|
2006-12-01 08:04:47 +00:00
|
|
|
{
|
2008-04-16 19:43:49 +00:00
|
|
|
unsigned long pit_rate;
|
|
|
|
unsigned bits;
|
2012-02-17 10:54:29 +00:00
|
|
|
int ret;
|
2008-04-16 19:43:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Use our actual MCK to figure out how many MCK/16 ticks per
|
|
|
|
* 1/HZ period (instead of a compile-time constant LATCH).
|
|
|
|
*/
|
2014-07-01 09:33:23 +00:00
|
|
|
pit_rate = clk_get_rate(data->mck) / 16;
|
|
|
|
data->cycle = DIV_ROUND_CLOSEST(pit_rate, HZ);
|
|
|
|
WARN_ON(((data->cycle - 1) & ~AT91_PIT_PIV) != 0);
|
2006-12-01 08:04:47 +00:00
|
|
|
|
2008-04-16 19:43:49 +00:00
|
|
|
/* Initialize and enable the timer */
|
2014-07-01 09:33:23 +00:00
|
|
|
at91sam926x_pit_reset(data);
|
2008-04-16 19:43:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Register clocksource. The high order bits of PIV are unused,
|
|
|
|
* so this isn't a 32-bit counter unless we get clockevent irqs.
|
|
|
|
*/
|
2014-07-01 09:33:23 +00:00
|
|
|
bits = 12 /* PICNT */ + ilog2(data->cycle) /* PIV */;
|
|
|
|
data->clksrc.mask = CLOCKSOURCE_MASK(bits);
|
|
|
|
data->clksrc.name = "pit";
|
|
|
|
data->clksrc.rating = 175;
|
|
|
|
data->clksrc.read = read_pit_clk,
|
|
|
|
data->clksrc.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
|
|
|
clocksource_register_hz(&data->clksrc, pit_rate);
|
2008-04-16 19:43:49 +00:00
|
|
|
|
|
|
|
/* Set up irq handler */
|
2014-07-01 09:33:23 +00:00
|
|
|
ret = request_irq(data->irq, at91sam926x_pit_interrupt,
|
2014-07-01 09:33:22 +00:00
|
|
|
IRQF_SHARED | IRQF_TIMER | IRQF_IRQPOLL,
|
2014-07-01 09:33:23 +00:00
|
|
|
"at91_tick", data);
|
2012-02-17 10:54:29 +00:00
|
|
|
if (ret)
|
2014-07-01 09:33:21 +00:00
|
|
|
panic(pr_fmt("Unable to setup IRQ\n"));
|
2008-04-16 19:43:49 +00:00
|
|
|
|
|
|
|
/* Set up and register clockevents */
|
2014-07-01 09:33:23 +00:00
|
|
|
data->clkevt.name = "pit";
|
|
|
|
data->clkevt.features = CLOCK_EVT_FEAT_PERIODIC;
|
|
|
|
data->clkevt.shift = 32;
|
|
|
|
data->clkevt.mult = div_sc(pit_rate, NSEC_PER_SEC, data->clkevt.shift);
|
|
|
|
data->clkevt.rating = 100;
|
|
|
|
data->clkevt.cpumask = cpumask_of(0);
|
|
|
|
|
|
|
|
data->clkevt.set_mode = pit_clkevt_mode;
|
|
|
|
data->clkevt.resume = at91sam926x_pit_resume;
|
|
|
|
data->clkevt.suspend = at91sam926x_pit_suspend;
|
|
|
|
clockevents_register_device(&data->clkevt);
|
2006-12-01 08:04:47 +00:00
|
|
|
}
|
|
|
|
|
2014-07-01 09:33:18 +00:00
|
|
|
static void __init at91sam926x_pit_dt_init(struct device_node *node)
|
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data *data;
|
2014-07-01 09:33:18 +00:00
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
data = kzalloc(sizeof(*data), GFP_KERNEL);
|
|
|
|
if (!data)
|
|
|
|
panic(pr_fmt("Unable to allocate memory\n"));
|
|
|
|
|
|
|
|
data->base = of_iomap(node, 0);
|
|
|
|
if (!data->base)
|
2014-07-01 09:33:21 +00:00
|
|
|
panic(pr_fmt("Could not map PIT address\n"));
|
2014-07-01 09:33:18 +00:00
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
data->mck = of_clk_get(node, 0);
|
|
|
|
if (IS_ERR(data->mck))
|
2014-07-01 09:33:18 +00:00
|
|
|
/* Fallback on clkdev for !CCF-based boards */
|
2014-07-01 09:33:23 +00:00
|
|
|
data->mck = clk_get(NULL, "mck");
|
2014-07-01 09:33:18 +00:00
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
if (IS_ERR(data->mck))
|
2014-07-01 09:33:21 +00:00
|
|
|
panic(pr_fmt("Unable to get mck clk\n"));
|
2014-07-01 09:33:18 +00:00
|
|
|
|
|
|
|
/* Get the interrupts property */
|
2014-07-01 09:33:23 +00:00
|
|
|
data->irq = irq_of_parse_and_map(node, 0);
|
|
|
|
if (!data->irq)
|
2014-07-01 09:33:21 +00:00
|
|
|
panic(pr_fmt("Unable to get IRQ from DT\n"));
|
2014-07-01 09:33:18 +00:00
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
at91sam926x_pit_common_init(data);
|
2014-07-01 09:33:18 +00:00
|
|
|
}
|
|
|
|
CLOCKSOURCE_OF_DECLARE(at91sam926x_pit, "atmel,at91sam9260-pit",
|
|
|
|
at91sam926x_pit_dt_init);
|
|
|
|
|
2014-07-01 09:33:23 +00:00
|
|
|
static void __iomem *pit_base_addr;
|
|
|
|
|
2014-09-15 14:02:24 +00:00
|
|
|
void __init at91sam926x_pit_init(int irq)
|
2014-07-01 09:33:18 +00:00
|
|
|
{
|
2014-07-01 09:33:23 +00:00
|
|
|
struct pit_data *data;
|
|
|
|
|
|
|
|
data = kzalloc(sizeof(*data), GFP_KERNEL);
|
|
|
|
if (!data)
|
|
|
|
panic(pr_fmt("Unable to allocate memory\n"));
|
|
|
|
|
|
|
|
data->base = pit_base_addr;
|
|
|
|
|
|
|
|
data->mck = clk_get(NULL, "mck");
|
|
|
|
if (IS_ERR(data->mck))
|
2014-07-01 09:33:21 +00:00
|
|
|
panic(pr_fmt("Unable to get mck clk\n"));
|
2014-07-01 09:33:18 +00:00
|
|
|
|
2014-09-15 14:02:24 +00:00
|
|
|
data->irq = irq;
|
2014-07-01 09:33:23 +00:00
|
|
|
|
|
|
|
at91sam926x_pit_common_init(data);
|
2014-07-01 09:33:18 +00:00
|
|
|
}
|
|
|
|
|
2011-09-18 14:29:50 +00:00
|
|
|
void __init at91sam926x_ioremap_pit(u32 addr)
|
|
|
|
{
|
ARM: at91: PIT: Use of_have_populated_dt instead of CONFIG_OF
Until now, the machines, even when CONFIG_OF was enabled, were calling
at91sam926x_ioremap_pit to try to map the PIT address using the defined
physical address.
Obviously, with DT, it's not appropriate anymore, and some code was added to
the function to deal with this case.
Unfortunately, this code was conditionned on CONFIG_OF, which can be enabled,
even though no DT was actually used, which would result in such a case, to this
code being executed, without any reason.
Moreover, the logic that was here before to bail out of the function just check
in the DT to see if the PIT node is there, which is the case in all our DTSI.
All this can be made much more straightforward just by using
of_have_populated_dt to bail out.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
2014-07-01 09:33:17 +00:00
|
|
|
if (of_have_populated_dt())
|
2012-02-27 10:19:34 +00:00
|
|
|
return;
|
ARM: at91: PIT: Use of_have_populated_dt instead of CONFIG_OF
Until now, the machines, even when CONFIG_OF was enabled, were calling
at91sam926x_ioremap_pit to try to map the PIT address using the defined
physical address.
Obviously, with DT, it's not appropriate anymore, and some code was added to
the function to deal with this case.
Unfortunately, this code was conditionned on CONFIG_OF, which can be enabled,
even though no DT was actually used, which would result in such a case, to this
code being executed, without any reason.
Moreover, the logic that was here before to bail out of the function just check
in the DT to see if the PIT node is there, which is the case in all our DTSI.
All this can be made much more straightforward just by using
of_have_populated_dt to bail out.
Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Acked-by: Boris BREZILLON <boris.brezillon@free-electrons.com>
Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Acked-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
2014-07-01 09:33:17 +00:00
|
|
|
|
2011-09-18 14:29:50 +00:00
|
|
|
pit_base_addr = ioremap(addr, 16);
|
|
|
|
|
|
|
|
if (!pit_base_addr)
|
2014-07-01 09:33:21 +00:00
|
|
|
panic(pr_fmt("Impossible to ioremap PIT\n"));
|
2006-12-01 08:04:47 +00:00
|
|
|
}
|