2005-04-16 15:20:36 -07:00
/*
* linux / arch / arm / mach - footbridge / isa - timer . c
*
* Copyright ( C ) 1998 Russell King .
* Copyright ( C ) 1998 Phil Blundell
*/
2011-01-28 21:00:39 +00:00
# include <linux/clockchips.h>
# include <linux/clocksource.h>
2005-04-16 15:20:36 -07:00
# include <linux/init.h>
# include <linux/interrupt.h>
2006-07-01 22:32:17 +01:00
# include <linux/irq.h>
2008-09-06 12:10:45 +01:00
# include <linux/io.h>
2011-01-28 21:00:39 +00:00
# include <linux/timex.h>
2005-04-16 15:20:36 -07:00
# include <asm/irq.h>
# include <asm/mach/time.h>
# include "common.h"
2011-01-28 21:00:39 +00:00
# define PIT_MODE 0x43
# define PIT_CH0 0x40
# define PIT_LATCH ((PIT_TICK_RATE + HZ / 2) / HZ)
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
static cycle_t pit_read ( struct clocksource * cs )
2005-04-16 15:20:36 -07:00
{
2011-01-28 21:00:39 +00:00
unsigned long flags ;
static int old_count ;
static u32 old_jifs ;
2005-04-16 15:20:36 -07:00
int count ;
2011-01-28 21:00:39 +00:00
u32 jifs ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
raw_local_irq_save ( flags ) ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
jifs = jiffies ;
outb_p ( 0x00 , PIT_MODE ) ; /* latch the count */
count = inb_p ( PIT_CH0 ) ; /* read the latched count */
count | = inb_p ( PIT_CH0 ) < < 8 ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
if ( count > old_count & & jifs = = old_jifs )
count = old_count ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
old_count = count ;
old_jifs = jifs ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
raw_local_irq_restore ( flags ) ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
count = ( PIT_LATCH - 1 ) - count ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
return ( cycle_t ) ( jifs * PIT_LATCH ) + count ;
}
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
static struct clocksource pit_cs = {
. name = " pit " ,
. rating = 110 ,
. read = pit_read ,
. mask = CLOCKSOURCE_MASK ( 32 ) ,
} ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
static void pit_set_mode ( enum clock_event_mode mode ,
struct clock_event_device * evt )
{
unsigned long flags ;
raw_local_irq_save ( flags ) ;
switch ( mode ) {
case CLOCK_EVT_MODE_PERIODIC :
outb_p ( 0x34 , PIT_MODE ) ;
outb_p ( PIT_LATCH & 0xff , PIT_CH0 ) ;
outb_p ( PIT_LATCH > > 8 , PIT_CH0 ) ;
break ;
case CLOCK_EVT_MODE_SHUTDOWN :
case CLOCK_EVT_MODE_UNUSED :
outb_p ( 0x30 , PIT_MODE ) ;
outb_p ( 0 , PIT_CH0 ) ;
outb_p ( 0 , PIT_CH0 ) ;
break ;
case CLOCK_EVT_MODE_ONESHOT :
case CLOCK_EVT_MODE_RESUME :
break ;
}
local_irq_restore ( flags ) ;
}
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
static int pit_set_next_event ( unsigned long delta ,
struct clock_event_device * evt )
{
return 0 ;
2005-04-16 15:20:36 -07:00
}
2011-01-28 21:00:39 +00:00
static struct clock_event_device pit_ce = {
. name = " pit " ,
. features = CLOCK_EVT_FEAT_PERIODIC ,
. set_mode = pit_set_mode ,
. set_next_event = pit_set_next_event ,
. shift = 32 ,
} ;
static irqreturn_t pit_timer_interrupt ( int irq , void * dev_id )
2005-04-16 15:20:36 -07:00
{
2011-01-28 21:00:39 +00:00
struct clock_event_device * ce = dev_id ;
ce - > event_handler ( ce ) ;
2005-04-16 15:20:36 -07:00
return IRQ_HANDLED ;
}
2011-01-28 21:00:39 +00:00
static struct irqaction pit_timer_irq = {
. name = " pit " ,
. handler = pit_timer_interrupt ,
2007-05-08 00:35:39 -07:00
. flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL ,
2011-01-28 21:00:39 +00:00
. dev_id = & pit_ce ,
2005-04-16 15:20:36 -07:00
} ;
static void __init isa_timer_init ( void )
{
2011-01-28 21:00:39 +00:00
pit_ce . cpumask = cpumask_of ( smp_processor_id ( ) ) ;
pit_ce . mult = div_sc ( PIT_TICK_RATE , NSEC_PER_SEC , pit_ce . shift ) ;
pit_ce . max_delta_ns = clockevent_delta2ns ( 0x7fff , & pit_ce ) ;
pit_ce . min_delta_ns = clockevent_delta2ns ( 0x000f , & pit_ce ) ;
clocksource_register_hz ( & pit_cs , PIT_TICK_RATE ) ;
2005-04-16 15:20:36 -07:00
2011-01-28 21:00:39 +00:00
setup_irq ( pit_ce . irq , & pit_timer_irq ) ;
clockevents_register_device ( & pit_ce ) ;
2005-04-16 15:20:36 -07:00
}
struct sys_timer isa_timer = {
. init = isa_timer_init ,
} ;