Release 4.11 drivers/clocksource/timer-atmel-pit.c
/*
* at91sam926x_time.c - Periodic Interval Timer (PIT) for at91sam926x
*
* Copyright (C) 2005-2006 M. Amine SAYA, ATMEL Rousset, France
* Revision 2005 M. Nicolas Diremdjian, ATMEL Rousset, France
* Converted to ClockSource/ClockEvents by David Brownell.
*
* 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.
*/
#define pr_fmt(fmt) "AT91: PIT: " fmt
#include <linux/clk.h>
#include <linux/clockchips.h>
#include <linux/interrupt.h>
#include <linux/irq.h>
#include <linux/kernel.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_irq.h>
#include <linux/slab.h>
#define AT91_PIT_MR 0x00
/* Mode Register */
#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 */
#define AT91_PIT_SR 0x04
/* Status Register */
#define AT91_PIT_PITS BIT(0)
/* Timer Status */
#define AT91_PIT_PIVR 0x08
/* Periodic Interval Value Register */
#define AT91_PIT_PIIR 0x0c
/* Periodic Interval Image Register */
#define AT91_PIT_PICNT GENMASK(31, 20)
/* Interval Counter */
#define AT91_PIT_CPIV GENMASK(19, 0)
/* Inverval Value */
#define PIT_CPIV(x) ((x) & AT91_PIT_CPIV)
#define PIT_PICNT(x) (((x) & AT91_PIT_PICNT) >> 20)
struct pit_data {
struct clock_event_device clkevt;
struct clocksource clksrc;
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)
{
return container_of(clksrc, struct pit_data, clksrc);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Maxime Ripard | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
static inline struct pit_data *clkevt_to_pit_data(struct clock_event_device *clkevt)
{
return container_of(clkevt, struct pit_data, clkevt);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Maxime Ripard | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
static inline unsigned int pit_read(void __iomem *base, unsigned int reg_offset)
{
return readl_relaxed(base + reg_offset);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jean-Christophe Plagniol-Villard | 18 | 72.00% | 1 | 33.33% |
Maxime Ripard | 6 | 24.00% | 1 | 33.33% |
Ben Dooks | 1 | 4.00% | 1 | 33.33% |
Total | 25 | 100.00% | 3 | 100.00% |
static inline void pit_write(void __iomem *base, unsigned int reg_offset, unsigned long value)
{
writel_relaxed(value, base + reg_offset);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jean-Christophe Plagniol-Villard | 22 | 75.86% | 1 | 33.33% |
Maxime Ripard | 6 | 20.69% | 1 | 33.33% |
Ben Dooks | 1 | 3.45% | 1 | 33.33% |
Total | 29 | 100.00% | 3 | 100.00% |
/*
* Clocksource: just a monotonic counter of MCK/16 cycles.
* We don't care whether or not PIT irqs are enabled.
*/
static u64 read_pit_clk(struct clocksource *cs)
{
struct pit_data *data = clksrc_to_pit_data(cs);
unsigned long flags;
u32 elapsed;
u32 t;
raw_local_irq_save(flags);
elapsed = data->cnt;
t = pit_read(data->base, AT91_PIT_PIIR);
raw_local_irq_restore(flags);
elapsed += PIT_PICNT(t) * data->cycle;
elapsed += PIT_CPIV(t);
return elapsed;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Victor | 53 | 67.09% | 2 | 33.33% |
Maxime Ripard | 20 | 25.32% | 1 | 16.67% |
Magnus Damm | 4 | 5.06% | 1 | 16.67% |
Thomas Gleixner | 1 | 1.27% | 1 | 16.67% |
Jean-Christophe Plagniol-Villard | 1 | 1.27% | 1 | 16.67% |
Total | 79 | 100.00% | 6 | 100.00% |
static int pit_clkevt_shutdown(struct clock_event_device *dev)
{
struct pit_data *data = clkevt_to_pit_data(dev);
/* disable irq, leaving the clocksource active */
pit_write(data->base, AT91_PIT_MR, (data->cycle - 1) | AT91_PIT_PITEN);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Viresh Kumar | 44 | 100.00% | 1 | 100.00% |
Total | 44 | 100.00% | 1 | 100.00% |
/*
* Clockevent device: interrupts every 1/HZ (== pit_cycles * MCK/16)
*/
static int pit_clkevt_set_periodic(struct clock_event_device *dev)
{
struct pit_data *data = clkevt_to_pit_data(dev);
/* update clocksource counter */
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);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Victor | 31 | 46.97% | 3 | 42.86% |
Maxime Ripard | 27 | 40.91% | 1 | 14.29% |
Viresh Kumar | 5 | 7.58% | 1 | 14.29% |
Jean-Christophe Plagniol-Villard | 2 | 3.03% | 1 | 14.29% |
Uwe Kleine-König | 1 | 1.52% | 1 | 14.29% |
Total | 66 | 100.00% | 7 | 100.00% |
static void at91sam926x_pit_suspend(struct clock_event_device *cedev)
{
struct pit_data *data = clkevt_to_pit_data(cedev);
/* Disable timer */
pit_write(data->base, AT91_PIT_MR, 0);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stephen Warren | 19 | 57.58% | 1 | 50.00% |
Maxime Ripard | 14 | 42.42% | 1 | 50.00% |
Total | 33 | 100.00% | 2 | 100.00% |
static void at91sam926x_pit_reset(struct pit_data *data)
{
/* Disable timer and irqs */
pit_write(data->base, AT91_PIT_MR, 0);
/* Clear any pending interrupts, wait for PIT to stop counting */
while (PIT_CPIV(pit_read(data->base, AT91_PIT_PIVR)) != 0)
cpu_relax();
/* Start PIT but don't enable IRQ */
pit_write(data->base, AT91_PIT_MR,
(data->cycle - 1) | AT91_PIT_PITEN);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Stephen Warren | 44 | 69.84% | 1 | 50.00% |
Maxime Ripard | 19 | 30.16% | 1 | 50.00% |
Total | 63 | 100.00% | 2 | 100.00% |
static void at91sam926x_pit_resume(struct clock_event_device *cedev)
{
struct pit_data *data = clkevt_to_pit_data(cedev);
at91sam926x_pit_reset(data);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Maxime Ripard | 13 | 50.00% | 1 | 50.00% |
Stephen Warren | 13 | 50.00% | 1 | 50.00% |
Total | 26 | 100.00% | 2 | 100.00% |
/*
* IRQ handler for the timer.
*/
static irqreturn_t at91sam926x_pit_interrupt(int irq, void *dev_id)
{
struct pit_data *data = dev_id;
/* The PIT interrupt may be disabled, and is shared */
if (clockevent_state_periodic(&data->clkevt) &&
(pit_read(data->base, AT91_PIT_SR) & AT91_PIT_PITS)) {
/* Get number of ticks performed before irq, and ack it */
data->cnt += data->cycle * PIT_PICNT(pit_read(data->base,
AT91_PIT_PIVR));
data->clkevt.event_handler(&data->clkevt);
return IRQ_HANDLED;
}
return IRQ_NONE;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Victor | 47 | 55.29% | 2 | 33.33% |
Maxime Ripard | 24 | 28.24% | 1 | 16.67% |
Alexandre Belloni | 8 | 9.41% | 1 | 16.67% |
Viresh Kumar | 4 | 4.71% | 1 | 16.67% |
Jean-Christophe Plagniol-Villard | 2 | 2.35% | 1 | 16.67% |
Total | 85 | 100.00% | 6 | 100.00% |
/*
* Set up both clocksource and clockevent support.
*/
static int __init at91sam926x_pit_dt_init(struct device_node *node)
{
unsigned long pit_rate;
unsigned bits;
int ret;
struct pit_data *data;
data = kzalloc(sizeof(*data), GFP_KERNEL);
if (!data)
return -ENOMEM;
data->base = of_iomap(node, 0);
if (!data->base) {
pr_err("Could not map PIT address\n");
return -ENXIO;
}
data->mck = of_clk_get(node, 0);
if (IS_ERR(data->mck)) {
pr_err("Unable to get mck clk\n");
return PTR_ERR(data->mck);
}
ret = clk_prepare_enable(data->mck);
if (ret) {
pr_err("Unable to enable mck\n");
return ret;
}
/* Get the interrupts property */
data->irq = irq_of_parse_and_map(node, 0);
if (!data->irq) {
pr_err("Unable to get IRQ from DT\n");
return -EINVAL;
}
/*
* Use our actual MCK to figure out how many MCK/16 ticks per
* 1/HZ period (instead of a compile-time constant LATCH).
*/
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);
/* Initialize and enable the timer */
at91sam926x_pit_reset(data);
/*
* Register clocksource. The high order bits of PIV are unused,
* so this isn't a 32-bit counter unless we get clockevent irqs.
*/
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;
ret = clocksource_register_hz(&data->clksrc, pit_rate);
if (ret) {
pr_err("Failed to register clocksource");
return ret;
}
/* Set up irq handler */
ret = request_irq(data->irq, at91sam926x_pit_interrupt,
IRQF_SHARED | IRQF_TIMER | IRQF_IRQPOLL,
"at91_tick", data);
if (ret) {
pr_err("Unable to setup IRQ\n");
return ret;
}
/* Set up and register clockevents */
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_state_shutdown = pit_clkevt_shutdown;
data->clkevt.set_state_periodic = pit_clkevt_set_periodic;
data->clkevt.resume = at91sam926x_pit_resume;
data->clkevt.suspend = at91sam926x_pit_suspend;
clockevents_register_device(&data->clkevt);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Alexandre Belloni | 147 | 33.56% | 1 | 6.67% |
Maxime Ripard | 141 | 32.19% | 5 | 33.33% |
Andrew Victor | 86 | 19.63% | 2 | 13.33% |
Daniel Lezcano | 28 | 6.39% | 2 | 13.33% |
Nicolas Ferre | 10 | 2.28% | 1 | 6.67% |
Viresh Kumar | 10 | 2.28% | 1 | 6.67% |
Rusty Russell | 8 | 1.83% | 1 | 6.67% |
Boris Brezillon | 5 | 1.14% | 1 | 6.67% |
Russell King | 3 | 0.68% | 1 | 6.67% |
Total | 438 | 100.00% | 15 | 100.00% |
CLOCKSOURCE_OF_DECLARE(at91sam926x_pit, "atmel,at91sam9260-pit",
at91sam926x_pit_dt_init);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Maxime Ripard | 369 | 34.07% | 6 | 22.22% |
Andrew Victor | 250 | 23.08% | 3 | 11.11% |
Alexandre Belloni | 155 | 14.31% | 2 | 7.41% |
Jean-Christophe Plagniol-Villard | 102 | 9.42% | 3 | 11.11% |
Stephen Warren | 76 | 7.02% | 1 | 3.70% |
Viresh Kumar | 63 | 5.82% | 1 | 3.70% |
Daniel Lezcano | 29 | 2.68% | 3 | 11.11% |
Nicolas Ferre | 10 | 0.92% | 1 | 3.70% |
Boris Brezillon | 10 | 0.92% | 1 | 3.70% |
Rusty Russell | 8 | 0.74% | 1 | 3.70% |
Magnus Damm | 4 | 0.37% | 1 | 3.70% |
Russell King | 3 | 0.28% | 1 | 3.70% |
Ben Dooks | 2 | 0.18% | 1 | 3.70% |
Uwe Kleine-König | 1 | 0.09% | 1 | 3.70% |
Thomas Gleixner | 1 | 0.09% | 1 | 3.70% |
Total | 1083 | 100.00% | 27 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.