Source
static int __init pxa_timer_common_init(int irq, unsigned long clock_tick_rate)
/*
* arch/arm/mach-pxa/time.c
*
* PXA clocksource, clockevents, and OST interrupt handlers.
* Copyright (c) 2007 by Bill Gatliff <bgat@billgatliff.com>.
*
* Derived from Nicolas Pitre's PXA timer handler Copyright (c) 2001
* by MontaVista Software, Inc. (Nico, your code rocks!)
*
* 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.
*/
/* OS Timer 0 Match Register */
/* OS Timer 1 Match Register */
/* OS Timer 2 Match Register */
/* OS Timer 3 Match Register */
/* OS Timer Counter Register */
/* OS Timer Status Register */
/* OS Timer Watchdog Enable Register */
/* OS Timer Interrupt Enable Register */
/* Match status channel 3 */
/* Match status channel 2 */
/* Match status channel 1 */
/* Match status channel 0 */
/* Interrupt enable channel 0 */
/*
* This is PXA's sched_clock implementation. This has a resolution
* of at least 308 ns and a maximum value of 208 days.
*
* The return value is guaranteed to be monotonic in that range as
* long as there is always less than 582 seconds between successive
* calls to sched_clock() which should always be the case in practice.
*/
static void __iomem *timer_base;
static u64 notrace pxa_read_sched_clock(void)
{
return timer_readl(OSCR);
}