2019-05-27 06:55:01 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2006-09-18 22:18:16 +00:00
|
|
|
/*
|
|
|
|
* arch/arm/plat-iop/time.c
|
|
|
|
*
|
|
|
|
* Timer code for IOP32x and IOP33x based systems
|
|
|
|
*
|
|
|
|
* Author: Deepak Saxena <dsaxena@mvista.com>
|
|
|
|
*
|
|
|
|
* Copyright 2002-2003 MontaVista Software Inc.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/timex.h>
|
2008-09-06 11:10:45 +00:00
|
|
|
#include <linux/io.h>
|
2009-10-29 18:46:54 +00:00
|
|
|
#include <linux/clocksource.h>
|
2009-10-29 18:46:54 +00:00
|
|
|
#include <linux/clockchips.h>
|
2011-07-31 20:17:29 +00:00
|
|
|
#include <linux/export.h>
|
2013-06-02 06:39:40 +00:00
|
|
|
#include <linux/sched_clock.h>
|
2006-09-18 22:18:16 +00:00
|
|
|
#include <asm/irq.h>
|
2016-12-24 19:46:01 +00:00
|
|
|
#include <linux/uaccess.h>
|
2006-09-18 22:18:16 +00:00
|
|
|
#include <asm/mach/irq.h>
|
|
|
|
#include <asm/mach/time.h>
|
2019-08-09 16:33:21 +00:00
|
|
|
|
|
|
|
#include "hardware.h"
|
|
|
|
#include "irqs.h"
|
2006-09-18 22:18:16 +00:00
|
|
|
|
2010-06-02 08:08:55 +00:00
|
|
|
/*
|
|
|
|
* Minimum clocksource/clockevent timer range in seconds
|
|
|
|
*/
|
|
|
|
#define IOP_MIN_RANGE 4
|
|
|
|
|
2009-10-29 18:46:54 +00:00
|
|
|
/*
|
|
|
|
* IOP clocksource (free-running timer 1).
|
|
|
|
*/
|
2016-12-21 19:32:01 +00:00
|
|
|
static u64 notrace iop_clocksource_read(struct clocksource *unused)
|
2009-10-29 18:46:54 +00:00
|
|
|
{
|
|
|
|
return 0xffffffffu - read_tcr1();
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct clocksource iop_clocksource = {
|
|
|
|
.name = "iop_timer1",
|
|
|
|
.rating = 300,
|
|
|
|
.read = iop_clocksource_read,
|
|
|
|
.mask = CLOCKSOURCE_MASK(32),
|
|
|
|
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
|
|
|
};
|
|
|
|
|
2009-10-29 18:46:56 +00:00
|
|
|
/*
|
|
|
|
* IOP sched_clock() implementation via its clocksource.
|
|
|
|
*/
|
2013-11-15 23:26:22 +00:00
|
|
|
static u64 notrace iop_read_sched_clock(void)
|
2009-10-29 18:46:56 +00:00
|
|
|
{
|
2011-12-15 11:19:23 +00:00
|
|
|
return 0xffffffffu - read_tcr1();
|
2009-10-29 18:46:56 +00:00
|
|
|
}
|
|
|
|
|
2009-10-29 18:46:54 +00:00
|
|
|
/*
|
|
|
|
* IOP clockevents (interrupting timer 0).
|
|
|
|
*/
|
|
|
|
static int iop_set_next_event(unsigned long delta,
|
|
|
|
struct clock_event_device *unused)
|
|
|
|
{
|
|
|
|
u32 tmr = IOP_TMR_PRIVILEGED | IOP_TMR_RATIO_1_1;
|
|
|
|
|
|
|
|
BUG_ON(delta == 0);
|
|
|
|
write_tmr0(tmr & ~(IOP_TMR_EN | IOP_TMR_RELOAD));
|
|
|
|
write_tcr0(delta);
|
|
|
|
write_tmr0((tmr & ~IOP_TMR_RELOAD) | IOP_TMR_EN);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-09-18 22:18:16 +00:00
|
|
|
static unsigned long ticks_per_jiffy;
|
2009-10-29 18:46:54 +00:00
|
|
|
|
2015-02-27 08:09:52 +00:00
|
|
|
static int iop_set_periodic(struct clock_event_device *evt)
|
2009-10-29 18:46:54 +00:00
|
|
|
{
|
|
|
|
u32 tmr = read_tmr0();
|
|
|
|
|
2015-02-27 08:09:52 +00:00
|
|
|
write_tmr0(tmr & ~IOP_TMR_EN);
|
|
|
|
write_tcr0(ticks_per_jiffy - 1);
|
|
|
|
write_trr0(ticks_per_jiffy - 1);
|
|
|
|
tmr |= (IOP_TMR_RELOAD | IOP_TMR_EN);
|
2009-10-29 18:46:54 +00:00
|
|
|
|
|
|
|
write_tmr0(tmr);
|
2015-02-27 08:09:52 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iop_set_oneshot(struct clock_event_device *evt)
|
|
|
|
{
|
|
|
|
u32 tmr = read_tmr0();
|
|
|
|
|
|
|
|
/* ->set_next_event sets period and enables timer */
|
|
|
|
tmr &= ~(IOP_TMR_RELOAD | IOP_TMR_EN);
|
|
|
|
write_tmr0(tmr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iop_shutdown(struct clock_event_device *evt)
|
|
|
|
{
|
|
|
|
u32 tmr = read_tmr0();
|
|
|
|
|
|
|
|
tmr &= ~IOP_TMR_EN;
|
|
|
|
write_tmr0(tmr);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int iop_resume(struct clock_event_device *evt)
|
|
|
|
{
|
|
|
|
u32 tmr = read_tmr0();
|
|
|
|
|
|
|
|
tmr |= IOP_TMR_EN;
|
|
|
|
write_tmr0(tmr);
|
|
|
|
return 0;
|
2009-10-29 18:46:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct clock_event_device iop_clockevent = {
|
2015-02-27 08:09:52 +00:00
|
|
|
.name = "iop_timer0",
|
|
|
|
.features = CLOCK_EVT_FEAT_PERIODIC |
|
|
|
|
CLOCK_EVT_FEAT_ONESHOT,
|
|
|
|
.rating = 300,
|
|
|
|
.set_next_event = iop_set_next_event,
|
|
|
|
.set_state_shutdown = iop_shutdown,
|
|
|
|
.set_state_periodic = iop_set_periodic,
|
|
|
|
.tick_resume = iop_resume,
|
|
|
|
.set_state_oneshot = iop_set_oneshot,
|
2009-10-29 18:46:54 +00:00
|
|
|
};
|
|
|
|
|
2006-09-18 22:18:16 +00:00
|
|
|
static irqreturn_t
|
2007-02-13 16:13:34 +00:00
|
|
|
iop_timer_interrupt(int irq, void *dev_id)
|
2006-09-18 22:18:16 +00:00
|
|
|
{
|
2009-10-29 18:46:54 +00:00
|
|
|
struct clock_event_device *evt = dev_id;
|
2006-09-18 22:18:16 +00:00
|
|
|
|
2009-10-29 18:46:54 +00:00
|
|
|
write_tisr(1);
|
|
|
|
evt->event_handler(evt);
|
2006-09-18 22:18:16 +00:00
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2007-02-13 16:13:34 +00:00
|
|
|
static struct irqaction iop_timer_irq = {
|
|
|
|
.name = "IOP Timer Tick",
|
|
|
|
.handler = iop_timer_interrupt,
|
2014-03-04 21:04:50 +00:00
|
|
|
.flags = IRQF_TIMER | IRQF_IRQPOLL,
|
2009-10-29 18:46:54 +00:00
|
|
|
.dev_id = &iop_clockevent,
|
2006-09-18 22:18:16 +00:00
|
|
|
};
|
|
|
|
|
2007-07-20 01:07:26 +00:00
|
|
|
static unsigned long iop_tick_rate;
|
|
|
|
unsigned long get_iop_tick_rate(void)
|
|
|
|
{
|
|
|
|
return iop_tick_rate;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(get_iop_tick_rate);
|
|
|
|
|
2007-02-13 16:13:34 +00:00
|
|
|
void __init iop_init_time(unsigned long tick_rate)
|
2006-09-18 22:18:16 +00:00
|
|
|
{
|
|
|
|
u32 timer_ctl;
|
|
|
|
|
2013-11-15 23:26:22 +00:00
|
|
|
sched_clock_register(iop_read_sched_clock, 32, tick_rate);
|
2010-12-15 21:52:10 +00:00
|
|
|
|
2009-08-02 08:46:45 +00:00
|
|
|
ticks_per_jiffy = DIV_ROUND_CLOSEST(tick_rate, HZ);
|
2007-07-20 01:07:26 +00:00
|
|
|
iop_tick_rate = tick_rate;
|
2006-09-18 22:18:16 +00:00
|
|
|
|
2007-02-13 16:13:34 +00:00
|
|
|
timer_ctl = IOP_TMR_EN | IOP_TMR_PRIVILEGED |
|
|
|
|
IOP_TMR_RELOAD | IOP_TMR_RATIO_1_1;
|
2006-09-18 22:18:16 +00:00
|
|
|
|
|
|
|
/*
|
2009-10-29 18:46:54 +00:00
|
|
|
* Set up interrupting clockevent timer 0.
|
2006-09-18 22:18:16 +00:00
|
|
|
*/
|
2009-10-29 18:46:54 +00:00
|
|
|
write_tmr0(timer_ctl & ~IOP_TMR_EN);
|
2010-12-19 15:43:34 +00:00
|
|
|
write_tisr(1);
|
2019-08-09 16:33:21 +00:00
|
|
|
setup_irq(IRQ_IOP32X_TIMER0, &iop_timer_irq);
|
2009-10-29 18:46:54 +00:00
|
|
|
iop_clockevent.cpumask = cpumask_of(0);
|
2013-01-12 11:50:05 +00:00
|
|
|
clockevents_config_and_register(&iop_clockevent, tick_rate,
|
|
|
|
0xf, 0xfffffffe);
|
2009-10-29 18:46:54 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up free-running clocksource timer 1.
|
|
|
|
*/
|
2007-02-13 16:13:34 +00:00
|
|
|
write_trr1(0xffffffff);
|
2009-10-29 18:46:54 +00:00
|
|
|
write_tcr1(0xffffffff);
|
2007-02-13 16:13:34 +00:00
|
|
|
write_tmr1(timer_ctl);
|
2010-12-13 13:20:23 +00:00
|
|
|
clocksource_register_hz(&iop_clocksource, tick_rate);
|
2006-09-18 22:18:16 +00:00
|
|
|
}
|