/*1* arch/arm/mach-ks8695/time.c2*3* Copyright (C) 2006 Ben Dooks <[email protected]>4* Copyright (C) 2006 Simtec Electronics5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (at your option) any later version.10*11* This program is distributed in the hope that it will be useful,12* but WITHOUT ANY WARRANTY; without even the implied warranty of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA19*/2021#include <linux/init.h>22#include <linux/interrupt.h>23#include <linux/irq.h>24#include <linux/kernel.h>25#include <linux/sched.h>26#include <linux/io.h>2728#include <asm/mach/time.h>2930#include <mach/regs-timer.h>31#include <mach/regs-irq.h>3233#include "generic.h"3435/*36* Returns number of ms since last clock interrupt. Note that interrupts37* will have been disabled by do_gettimeoffset()38*/39static unsigned long ks8695_gettimeoffset (void)40{41unsigned long elapsed, tick2, intpending;4243/*44* Get the current number of ticks. Note that there is a race45* condition between us reading the timer and checking for an46* interrupt. We solve this by ensuring that the counter has not47* reloaded between our two reads.48*/49elapsed = __raw_readl(KS8695_TMR_VA + KS8695_T1TC) + __raw_readl(KS8695_TMR_VA + KS8695_T1PD);50do {51tick2 = elapsed;52intpending = __raw_readl(KS8695_IRQ_VA + KS8695_INTST) & (1 << KS8695_IRQ_TIMER1);53elapsed = __raw_readl(KS8695_TMR_VA + KS8695_T1TC) + __raw_readl(KS8695_TMR_VA + KS8695_T1PD);54} while (elapsed > tick2);5556/* Convert to number of ticks expired (not remaining) */57elapsed = (CLOCK_TICK_RATE / HZ) - elapsed;5859/* Is interrupt pending? If so, then timer has been reloaded already. */60if (intpending)61elapsed += (CLOCK_TICK_RATE / HZ);6263/* Convert ticks to usecs */64return (unsigned long)(elapsed * (tick_nsec / 1000)) / LATCH;65}6667/*68* IRQ handler for the timer.69*/70static irqreturn_t ks8695_timer_interrupt(int irq, void *dev_id)71{72timer_tick();73return IRQ_HANDLED;74}7576static struct irqaction ks8695_timer_irq = {77.name = "ks8695_tick",78.flags = IRQF_DISABLED | IRQF_TIMER,79.handler = ks8695_timer_interrupt,80};8182static void ks8695_timer_setup(void)83{84unsigned long tmout = CLOCK_TICK_RATE / HZ;85unsigned long tmcon;8687/* disable timer1 */88tmcon = __raw_readl(KS8695_TMR_VA + KS8695_TMCON);89__raw_writel(tmcon & ~TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);9091__raw_writel(tmout / 2, KS8695_TMR_VA + KS8695_T1TC);92__raw_writel(tmout / 2, KS8695_TMR_VA + KS8695_T1PD);9394/* re-enable timer1 */95__raw_writel(tmcon | TMCON_T1EN, KS8695_TMR_VA + KS8695_TMCON);96}9798static void __init ks8695_timer_init (void)99{100ks8695_timer_setup();101102/* Enable timer interrupts */103setup_irq(KS8695_IRQ_TIMER1, &ks8695_timer_irq);104}105106struct sys_timer ks8695_timer = {107.init = ks8695_timer_init,108.offset = ks8695_gettimeoffset,109.resume = ks8695_timer_setup,110};111112113