2008-02-08 04:19:31 -08:00
/* MN10300 Low level time management
*
2008-09-24 17:48:31 +01:00
* Copyright ( C ) 2007 - 2008 Red Hat , Inc . All Rights Reserved .
2008-02-08 04:19:31 -08:00
* Written by David Howells ( dhowells @ redhat . com )
* - Derived from arch / i386 / kernel / time . c
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public Licence
* as published by the Free Software Foundation ; either version
* 2 of the Licence , or ( at your option ) any later version .
*/
# include <linux/sched.h>
# include <linux/kernel.h>
# include <linux/interrupt.h>
# include <linux/time.h>
# include <linux/init.h>
# include <linux/smp.h>
# include <linux/profile.h>
2008-09-24 17:48:31 +01:00
# include <linux/cnt32_to_63.h>
2010-10-27 17:28:57 +01:00
# include <linux/clocksource.h>
# include <linux/clockchips.h>
2008-02-08 04:19:31 -08:00
# include <asm/irq.h>
# include <asm/div64.h>
# include <asm/processor.h>
# include <asm/intctl-regs.h>
# include <asm/rtc.h>
2010-10-27 17:28:55 +01:00
# include "internal.h"
2008-02-08 04:19:31 -08:00
static unsigned long mn10300_last_tsc ; /* time-stamp counter at last time
* interrupt occurred */
2008-09-24 17:48:31 +01:00
static unsigned long sched_clock_multiplier ;
2008-02-08 04:19:31 -08:00
/*
* scheduler clock - returns current time in nanosec units .
*/
unsigned long long sched_clock ( void )
{
union {
2008-09-24 17:48:31 +01:00
unsigned long long ll ;
unsigned l [ 2 ] ;
} tsc64 , result ;
2010-12-20 00:29:32 -05:00
unsigned long tmp ;
2008-09-24 17:48:31 +01:00
unsigned product [ 3 ] ; /* 96-bit intermediate value */
2010-10-27 17:28:35 +01:00
/* cnt32_to_63() is not safe with preemption */
preempt_disable ( ) ;
2010-12-20 00:29:32 -05:00
/* expand the tsc to 64-bits.
2008-09-24 17:48:31 +01:00
* - sched_clock ( ) must be called once a minute or better or the
* following will go horribly wrong - see cnt32_to_63 ( )
*/
2010-12-20 00:29:32 -05:00
tsc64 . ll = cnt32_to_63 ( get_cycles ( ) ) & 0x7fffffffffffffffULL ;
2008-02-08 04:19:31 -08:00
2010-10-27 17:28:35 +01:00
preempt_enable ( ) ;
2008-09-24 17:48:31 +01:00
/* scale the 64-bit TSC value to a nanosecond value via a 96-bit
* intermediate
*/
asm ( " mulu %2,%0,%3,%0 \n " /* LSW * mult -> 0:%3:%0 */
" mulu %2,%1,%2,%1 \n " /* MSW * mult -> %2:%1:0 */
" add %3,%1 \n "
" addc 0,%2 \n " /* result in %2:%1:%0 */
: " =r " ( product [ 0 ] ) , " =r " ( product [ 1 ] ) , " =r " ( product [ 2 ] ) , " =r " ( tmp )
: " 0 " ( tsc64 . l [ 0 ] ) , " 1 " ( tsc64 . l [ 1 ] ) , " 2 " ( sched_clock_multiplier )
2008-02-08 04:19:31 -08:00
: " cc " ) ;
2008-09-24 17:48:31 +01:00
result . l [ 0 ] = product [ 1 ] < < 16 | product [ 0 ] > > 16 ;
result . l [ 1 ] = product [ 2 ] < < 16 | product [ 1 ] > > 16 ;
2008-02-08 04:19:31 -08:00
2008-09-24 17:48:31 +01:00
return result . ll ;
}
/*
* initialise the scheduler clock
*/
static void __init mn10300_sched_clock_init ( void )
{
sched_clock_multiplier =
__muldiv64u ( NSEC_PER_SEC , 1 < < 16 , MN10300_TSCCLK ) ;
2008-02-08 04:19:31 -08:00
}
2010-10-27 17:28:55 +01:00
/**
* local_timer_interrupt - Local timer interrupt handler
*
* Handle local timer interrupts for this CPU . They may have been propagated
* to this CPU from the CPU that actually gets them by way of an IPI .
*/
irqreturn_t local_timer_interrupt ( void )
{
profile_tick ( CPU_PROFILING ) ;
update_process_times ( user_mode ( get_irq_regs ( ) ) ) ;
return IRQ_HANDLED ;
}
2008-02-08 04:19:31 -08:00
/*
* initialise the various timers used by the main part of the kernel
*/
void __init time_init ( void )
{
/* we need the prescalar running to be able to use IOCLK/8
* - IOCLK runs at 1 / 4 ( ST5 open ) or 1 / 8 ( ST5 closed ) internal CPU clock
* - IOCLK runs at Fosc rate ( crystal speed )
*/
TMPSCNT | = TMPSCNT_ENABLE ;
2010-10-27 17:28:57 +01:00
init_clocksource ( ) ;
2008-02-08 04:19:31 -08:00
printk ( KERN_INFO
" timestamp counter I/O clock running at %lu.%02lu "
" (calibrated against RTC) \n " ,
MN10300_TSCCLK / 1000000 , ( MN10300_TSCCLK / 10000 ) % 100 ) ;
2010-10-27 17:28:57 +01:00
mn10300_last_tsc = read_timestamp_counter ( ) ;
2008-02-08 04:19:31 -08:00
2010-10-27 17:28:57 +01:00
init_clockevents ( ) ;
2008-02-08 04:19:31 -08:00
# ifdef CONFIG_MN10300_WD_TIMER
/* start the watchdog timer */
watchdog_go ( ) ;
# endif
2008-09-24 17:48:31 +01:00
mn10300_sched_clock_init ( ) ;
2008-02-08 04:19:31 -08:00
}